comparison Framework/Orthanc/Resources/CMake/LibPngConfiguration.cmake @ 1:2dbe613f6c93

add orthanc core
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 14 Oct 2016 15:39:01 +0200
parents
children 9220cf4a63d5
comparison
equal deleted inserted replaced
0:351ab0da0150 1:2dbe613f6c93
1 if (STATIC_BUILD OR NOT USE_SYSTEM_LIBPNG)
2 SET(LIBPNG_SOURCES_DIR ${CMAKE_BINARY_DIR}/libpng-1.5.12)
3 SET(LIBPNG_URL "http://www.montefiore.ulg.ac.be/~jodogne/Orthanc/ThirdPartyDownloads/libpng-1.5.12.tar.gz")
4 SET(LIBPNG_MD5 "8ea7f60347a306c5faf70b977fa80e28")
5
6 DownloadPackage(${LIBPNG_MD5} ${LIBPNG_URL} "${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 )
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 # The following declaration avoids "__declspec(dllexport)" in
45 # libpng to prevent publicly exposing its symbols by the DLLs
46 -DPNG_IMPEXP=
47 )
48
49 source_group(ThirdParty\\Libpng REGULAR_EXPRESSION ${LIBPNG_SOURCES_DIR}/.*)
50
51 else()
52 include(FindPNG)
53
54 if (NOT ${PNG_FOUND})
55 message(FATAL_ERROR "Unable to find libpng")
56 endif()
57
58 include_directories(${PNG_INCLUDE_DIRS})
59 link_libraries(${PNG_LIBRARIES})
60 add_definitions(${PNG_DEFINITIONS})
61 endif()