735
|
1 if (STATIC_BUILD OR NOT USE_SYSTEM_LIBPNG)
|
|
2 SET(LIBPNG_SOURCES_DIR ${CMAKE_BINARY_DIR}/libpng-1.5.12)
|
|
3 DownloadPackage(
|
|
4 "8ea7f60347a306c5faf70b977fa80e28"
|
|
5 "http://www.montefiore.ulg.ac.be/~jodogne/Orthanc/ThirdPartyDownloads/libpng-1.5.12.tar.gz"
|
|
6 "${LIBPNG_SOURCES_DIR}")
|
|
7
|
|
8 include_directories(
|
|
9 ${LIBPNG_SOURCES_DIR}
|
|
10 )
|
|
11
|
|
12 configure_file(
|
|
13 ${LIBPNG_SOURCES_DIR}/scripts/pnglibconf.h.prebuilt
|
|
14 ${LIBPNG_SOURCES_DIR}/pnglibconf.h
|
|
15 COPY_ONLY)
|
|
16
|
|
17 set(LIBPNG_SOURCES
|
|
18 #${LIBPNG_SOURCES_DIR}/example.c
|
|
19 ${LIBPNG_SOURCES_DIR}/png.c
|
|
20 ${LIBPNG_SOURCES_DIR}/pngerror.c
|
|
21 ${LIBPNG_SOURCES_DIR}/pngget.c
|
|
22 ${LIBPNG_SOURCES_DIR}/pngmem.c
|
|
23 ${LIBPNG_SOURCES_DIR}/pngpread.c
|
|
24 ${LIBPNG_SOURCES_DIR}/pngread.c
|
|
25 ${LIBPNG_SOURCES_DIR}/pngrio.c
|
|
26 ${LIBPNG_SOURCES_DIR}/pngrtran.c
|
|
27 ${LIBPNG_SOURCES_DIR}/pngrutil.c
|
|
28 ${LIBPNG_SOURCES_DIR}/pngset.c
|
|
29 #${LIBPNG_SOURCES_DIR}/pngtest.c
|
|
30 ${LIBPNG_SOURCES_DIR}/pngtrans.c
|
|
31 ${LIBPNG_SOURCES_DIR}/pngwio.c
|
|
32 ${LIBPNG_SOURCES_DIR}/pngwrite.c
|
|
33 ${LIBPNG_SOURCES_DIR}/pngwtran.c
|
|
34 ${LIBPNG_SOURCES_DIR}/pngwutil.c
|
|
35 )
|
|
36
|
|
37 #set_property(
|
|
38 # SOURCE ${LIBPNG_SOURCES}
|
|
39 # PROPERTY COMPILE_FLAGS -UHAVE_CONFIG_H)
|
|
40
|
|
41 add_definitions(
|
|
42 -DPNG_NO_CONSOLE_IO=1
|
|
43 -DPNG_NO_STDIO=1
|
|
44 )
|
|
45
|
|
46 source_group(ThirdParty\\Libpng REGULAR_EXPRESSION ${LIBPNG_SOURCES_DIR}/.*)
|
|
47
|
|
48 else()
|
|
49 include(FindPNG)
|
|
50
|
|
51 if (NOT ${PNG_FOUND})
|
|
52 message(FATAL_ERROR "Unable to find LibPNG")
|
|
53 endif()
|
|
54
|
|
55 include_directories(${PNG_INCLUDE_DIRS})
|
|
56 link_libraries(${PNG_LIBRARIES})
|
|
57 add_definitions(${PNG_DEFINITIONS})
|
|
58 endif()
|