comparison CMakeLists.txt @ 951:a6fda0806382 dicom-rt

move ThirdParty code
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Jun 2014 15:20:56 +0200
parents e57e08ed510f
children 98d6ba37c7dc
comparison
equal deleted inserted replaced
948:e57e08ed510f 951:a6fda0806382
182 SET(STANDALONE_BUILD ON) 182 SET(STANDALONE_BUILD ON)
183 endif() 183 endif()
184 184
185 # Prepare the third-party dependencies 185 # Prepare the third-party dependencies
186 SET(THIRD_PARTY_SOURCES 186 SET(THIRD_PARTY_SOURCES
187 ${CMAKE_SOURCE_DIR}/Resources/md5/md5.c 187 ${CMAKE_SOURCE_DIR}/Resources/ThirdParty/md5/md5.c
188 ${CMAKE_SOURCE_DIR}/Resources/base64/base64.cpp 188 ${CMAKE_SOURCE_DIR}/Resources/ThirdParty/base64/base64.cpp
189 ) 189 )
190 190
191 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleLogConfiguration.cmake) 191 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleLogConfiguration.cmake)
192 include(${CMAKE_SOURCE_DIR}/Resources/CMake/BoostConfiguration.cmake) 192 include(${CMAKE_SOURCE_DIR}/Resources/CMake/BoostConfiguration.cmake)
193 include(${CMAKE_SOURCE_DIR}/Resources/CMake/DcmtkConfiguration.cmake) 193 include(${CMAKE_SOURCE_DIR}/Resources/CMake/DcmtkConfiguration.cmake)
386 endif() 386 endif()
387 387
388 add_library(OrthancClient SHARED 388 add_library(OrthancClient SHARED
389 ${ORTHANC_ROOT}/OrthancCppClient/OrthancCppClient.cpp 389 ${ORTHANC_ROOT}/OrthancCppClient/OrthancCppClient.cpp
390 ${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/SharedLibrary.cpp 390 ${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/SharedLibrary.cpp
391 ${ORTHANC_ROOT}/Resources/md5/md5.c 391 ${ORTHANC_ROOT}/Resources/ThirdParty/md5/md5.c
392 ${ORTHANC_ROOT}/Resources/base64/base64.cpp 392 ${ORTHANC_ROOT}/Resources/ThirdParty/base64/base64.cpp
393 ${ORTHANC_CPP_CLIENT_AUX} 393 ${ORTHANC_CPP_CLIENT_AUX}
394 ${THIRD_PARTY_SOURCES} 394 ${THIRD_PARTY_SOURCES}
395 ${CURL_SOURCES} 395 ${CURL_SOURCES}
396 ${GOOGLE_LOG_SOURCES} 396 ${GOOGLE_LOG_SOURCES}
397 ) 397 )