comparison Resources/CMake/OrthancFrameworkConfiguration.cmake @ 2514:38d666a40860

fix msvc
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Mar 2018 08:55:32 +0200
parents 97a74f0eac7a
children 48db5c1fcbf3
comparison
equal deleted inserted replaced
2513:97a74f0eac7a 2514:38d666a40860
280 ${ORTHANC_ROOT}/Core/Compression/DeflateBaseCompressor.cpp 280 ${ORTHANC_ROOT}/Core/Compression/DeflateBaseCompressor.cpp
281 ${ORTHANC_ROOT}/Core/Compression/HierarchicalZipWriter.cpp 281 ${ORTHANC_ROOT}/Core/Compression/HierarchicalZipWriter.cpp
282 ${ORTHANC_ROOT}/Core/Compression/GzipCompressor.cpp 282 ${ORTHANC_ROOT}/Core/Compression/GzipCompressor.cpp
283 ${ORTHANC_ROOT}/Core/Compression/ZipWriter.cpp 283 ${ORTHANC_ROOT}/Core/Compression/ZipWriter.cpp
284 ${ORTHANC_ROOT}/Core/Compression/ZlibCompressor.cpp 284 ${ORTHANC_ROOT}/Core/Compression/ZlibCompressor.cpp
285
286 # This is the minizip distribution to create ZIP files using zlib
287 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/ioapi.c
288 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/zip.c
289 ) 285 )
290 endif() 286 endif()
291 287
292 288
293 ## 289 ##
538 534
539 ${ORTHANC_ROOT}/Resources/ThirdParty/md5/md5.c 535 ${ORTHANC_ROOT}/Resources/ThirdParty/md5/md5.c
540 ${ORTHANC_ROOT}/Resources/ThirdParty/base64/base64.cpp 536 ${ORTHANC_ROOT}/Resources/ThirdParty/base64/base64.cpp
541 ) 537 )
542 538
539
540 if (ENABLE_ZLIB)
541 list(APPEND ORTHANC_CORE_SOURCES_DEPENDENCIES
542 # This is the minizip distribution to create ZIP files using zlib
543 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/ioapi.c
544 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/zip.c
545 )
546 endif()
547
548
543 set(ORTHANC_CORE_SOURCES 549 set(ORTHANC_CORE_SOURCES
544 ${ORTHANC_CORE_SOURCES_INTERNAL} 550 ${ORTHANC_CORE_SOURCES_INTERNAL}
545 ${ORTHANC_CORE_SOURCES_DEPENDENCIES} 551 ${ORTHANC_CORE_SOURCES_DEPENDENCIES}
546 ) 552 )
547 553