comparison Orthanc/Resources/CMake/LibPngConfiguration.cmake @ 25:15acbf5e7545

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 02 Jun 2015 11:16:30 +0200
parents
children d158e4ca5734
comparison
equal deleted inserted replaced
24:ed9acb0f938e 25:15acbf5e7545
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 list(APPEND THIRD_PARTY_SOURCES ${LIBPNG_SOURCES})
42
43 add_definitions(
44 -DPNG_NO_CONSOLE_IO=1
45 -DPNG_NO_STDIO=1
46 )
47
48 source_group(ThirdParty\\Libpng REGULAR_EXPRESSION ${LIBPNG_SOURCES_DIR}/.*)
49
50 else()
51 include(FindPNG)
52
53 if (NOT ${PNG_FOUND})
54 message(FATAL_ERROR "Unable to find LibPNG")
55 endif()
56
57 include_directories(${PNG_INCLUDE_DIRS})
58 link_libraries(${PNG_LIBRARIES})
59 add_definitions(${PNG_DEFINITIONS})
60 endif()