comparison Resources/CMake/OrthancFrameworkConfiguration.cmake @ 2390:cf0eb76c5e81

fix precompiled headers
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 30 Aug 2017 12:05:49 +0200
parents 50cde8246542
children 233d6eeef799
comparison
equal deleted inserted replaced
2389:88402bd5dbf5 2390:cf0eb76c5e81
400 400
401 ##################################################################### 401 #####################################################################
402 ## Gathering of all the source code 402 ## Gathering of all the source code
403 ##################################################################### 403 #####################################################################
404 404
405 set(ORTHANC_CORE_SOURCES 405 set(ORTHANC_CORE_SOURCES_DEPENDENCIES
406 ${ORTHANC_CORE_SOURCES_INTERNAL}
407
408 ${BOOST_SOURCES} 406 ${BOOST_SOURCES}
409 ${CIVETWEB_SOURCES} 407 ${CIVETWEB_SOURCES}
410 ${CURL_SOURCES} 408 ${CURL_SOURCES}
411 ${JSONCPP_SOURCES} 409 ${JSONCPP_SOURCES}
412 ${LIBICONV_SOURCES} 410 ${LIBICONV_SOURCES}
424 ${ORTHANC_ROOT}/Resources/ThirdParty/base64/base64.cpp 422 ${ORTHANC_ROOT}/Resources/ThirdParty/base64/base64.cpp
425 423
426 # This is the minizip distribution to create ZIP files using zlib 424 # This is the minizip distribution to create ZIP files using zlib
427 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/ioapi.c 425 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/ioapi.c
428 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/zip.c 426 ${ORTHANC_ROOT}/Resources/ThirdParty/minizip/zip.c
427 )
428
429 set(ORTHANC_CORE_SOURCES
430 ${ORTHANC_CORE_SOURCES_INTERNAL}
431 ${ORTHANC_CORE_SOURCES_DEPENDENCIES}
429 ) 432 )