comparison Orthanc/Resources/CMake/ZlibConfiguration.cmake @ 3:d5027f9f676a

fix build
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 01 Jun 2015 15:12:22 +0200
parents
children
comparison
equal deleted inserted replaced
2:8f22ed9d48d5 3:d5027f9f676a
1 # This is the minizip distribution to create ZIP files
2 list(APPEND THIRD_PARTY_SOURCES
3 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/ioapi.c
4 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/zip.c
5 )
6
7 if (STATIC_BUILD OR NOT USE_SYSTEM_ZLIB)
8 SET(ZLIB_SOURCES_DIR ${CMAKE_BINARY_DIR}/zlib-1.2.7)
9 DownloadPackage(
10 "60df6a37c56e7c1366cca812414f7b85"
11 "http://www.montefiore.ulg.ac.be/~jodogne/Orthanc/ThirdPartyDownloads/zlib-1.2.7.tar.gz"
12 "${ZLIB_SOURCES_DIR}")
13
14 include_directories(
15 ${ZLIB_SOURCES_DIR}
16 )
17
18 list(APPEND THIRD_PARTY_SOURCES
19 ${ZLIB_SOURCES_DIR}/adler32.c
20 ${ZLIB_SOURCES_DIR}/compress.c
21 ${ZLIB_SOURCES_DIR}/crc32.c
22 ${ZLIB_SOURCES_DIR}/deflate.c
23 ${ZLIB_SOURCES_DIR}/gzclose.c
24 ${ZLIB_SOURCES_DIR}/gzlib.c
25 ${ZLIB_SOURCES_DIR}/gzread.c
26 ${ZLIB_SOURCES_DIR}/gzwrite.c
27 ${ZLIB_SOURCES_DIR}/infback.c
28 ${ZLIB_SOURCES_DIR}/inffast.c
29 ${ZLIB_SOURCES_DIR}/inflate.c
30 ${ZLIB_SOURCES_DIR}/inftrees.c
31 ${ZLIB_SOURCES_DIR}/trees.c
32 ${ZLIB_SOURCES_DIR}/uncompr.c
33 ${ZLIB_SOURCES_DIR}/zutil.c
34 )
35
36 else()
37 include(FindZLIB)
38 include_directories(${ZLIB_INCLUDE_DIRS})
39 link_libraries(${ZLIB_LIBRARIES})
40 endif()
41
42 source_group(ThirdParty\\ZLib REGULAR_EXPRESSION ${ZLIB_SOURCES_DIR}/.*)