comparison CMakeLists.txt @ 1014:40e5255e7dc5

integration plugins->mainline
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Jul 2014 11:13:26 +0200
parents 6968356679c0
children 564e39d6df13
comparison
equal deleted inserted replaced
991:2f76b92addd4 1014:40e5255e7dc5
115 OrthancCppClient/OrthancConnection.cpp 115 OrthancCppClient/OrthancConnection.cpp
116 OrthancCppClient/Study.cpp 116 OrthancCppClient/Study.cpp
117 OrthancCppClient/Series.cpp 117 OrthancCppClient/Series.cpp
118 OrthancCppClient/Instance.cpp 118 OrthancCppClient/Instance.cpp
119 OrthancCppClient/Patient.cpp 119 OrthancCppClient/Patient.cpp
120
121 Plugins/Engine/SharedLibrary.cpp
122 Plugins/Engine/PluginsManager.cpp
123 Plugins/Engine/PluginsHttpHandler.cpp
120 ) 124 )
121 125
122 126
123 set(ORTHANC_SERVER_SOURCES 127 set(ORTHANC_SERVER_SOURCES
124 OrthancServer/DicomProtocol/DicomFindAnswers.cpp 128 OrthancServer/DicomProtocol/DicomFindAnswers.cpp
169 UnitTestsSources/LuaTests.cpp 173 UnitTestsSources/LuaTests.cpp
170 UnitTestsSources/MultiThreadingTests.cpp 174 UnitTestsSources/MultiThreadingTests.cpp
171 UnitTestsSources/UnitTestsMain.cpp 175 UnitTestsSources/UnitTestsMain.cpp
172 UnitTestsSources/ImageProcessingTests.cpp 176 UnitTestsSources/ImageProcessingTests.cpp
173 UnitTestsSources/JpegLosslessTests.cpp 177 UnitTestsSources/JpegLosslessTests.cpp
178
179 UnitTestsSources/PluginsTests.cpp
174 ) 180 )
175 181
176 182
177 183
178 ##################################################################### 184 #####################################################################
462 configure_file( 468 configure_file(
463 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen 469 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen
464 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen 470 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen
465 @ONLY) 471 @ONLY)
466 472
473 configure_file(
474 ${CMAKE_SOURCE_DIR}/Resources/OrthancPlugin.doxygen
475 ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen
476 @ONLY)
477
467 add_custom_target(doc 478 add_custom_target(doc
468 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen 479 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen
480 COMMAND
481 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen
469 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} 482 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
470 COMMENT "Generating internal documentation with Doxygen" VERBATIM 483 COMMENT "Generating internal documentation with Doxygen" VERBATIM
471 ) 484 )
472 485
473 if (BUILD_CLIENT_LIBRARY) 486 if (BUILD_CLIENT_LIBRARY)