Mercurial > hg > orthanc
annotate CMakeLists.txt @ 4028:1ac958787c01
fix for msvc2008
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 09 Jun 2020 16:34:19 +0200 |
parents | f6cb16413325 |
children | 100fbe970762 |
rev | line source |
---|---|
2691 | 1 cmake_minimum_required(VERSION 2.8) |
2 | |
3 project(Orthanc) | |
4 | |
5 | |
6 ##################################################################### | |
7 ## Generic parameters of the Orthanc framework | |
8 ##################################################################### | |
9 | |
10 include(${CMAKE_SOURCE_DIR}/Resources/CMake/OrthancFrameworkParameters.cmake) | |
11 | |
12 # Enable all the optional components of the Orthanc framework | |
13 set(ENABLE_CRYPTO_OPTIONS ON) | |
14 set(ENABLE_DCMTK ON) | |
15 set(ENABLE_DCMTK_NETWORKING ON) | |
3893 | 16 set(ENABLE_DCMTK_TRANSCODING ON) |
2691 | 17 set(ENABLE_GOOGLE_TEST ON) |
18 set(ENABLE_JPEG ON) | |
19 set(ENABLE_LOCALE ON) | |
20 set(ENABLE_LUA ON) | |
3723
cc6d4edfe8fe
fix pkcs11 compilation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3633
diff
changeset
|
21 set(ENABLE_OPENSSL_ENGINES ON) # OpenSSL engines are necessary for PKCS11 |
2691 | 22 set(ENABLE_PNG ON) |
23 set(ENABLE_PUGIXML ON) | |
24 set(ENABLE_SQLITE ON) | |
25 set(ENABLE_WEB_CLIENT ON) | |
26 set(ENABLE_WEB_SERVER ON) | |
27 set(ENABLE_ZLIB ON) | |
28 | |
29 set(HAS_EMBEDDED_RESOURCES ON) | |
30 | |
31 | |
32 ##################################################################### | |
33 ## CMake parameters tunable at the command line to configure the | |
34 ## plugins, the companion tools, and the unit tests | |
35 ##################################################################### | |
36 | |
37 # Parameters of the build | |
38 SET(BUILD_MODALITY_WORKLISTS ON CACHE BOOL "Whether to build the sample plugin to serve modality worklists") | |
39 SET(BUILD_RECOVER_COMPRESSED_FILE ON CACHE BOOL "Whether to build the companion tool to recover files compressed using Orthanc") | |
40 SET(BUILD_SERVE_FOLDERS ON CACHE BOOL "Whether to build the ServeFolders plugin") | |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
41 SET(BUILD_CONNECTIVITY_CHECKS ON CACHE BOOL "Whether to build the ConnectivityChecks plugin") |
2691 | 42 SET(ENABLE_PLUGINS ON CACHE BOOL "Enable plugins") |
43 SET(UNIT_TESTS_WITH_HTTP_CONNEXIONS ON CACHE BOOL "Allow unit tests to make HTTP requests") | |
44 | |
45 | |
46 ##################################################################### | |
47 ## Configuration of the Orthanc framework | |
48 ##################################################################### | |
49 | |
50 include(${CMAKE_SOURCE_DIR}/Resources/CMake/VisualStudioPrecompiledHeaders.cmake) | |
51 include(${CMAKE_SOURCE_DIR}/Resources/CMake/OrthancFrameworkConfiguration.cmake) | |
52 | |
53 | |
54 ##################################################################### | |
55 ## List of source files | |
56 ##################################################################### | |
57 | |
58 set(ORTHANC_SERVER_SOURCES | |
3093
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
59 OrthancServer/Database/Compatibility/DatabaseLookup.cpp |
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
60 OrthancServer/Database/Compatibility/ICreateInstance.cpp |
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
61 OrthancServer/Database/Compatibility/IGetChildrenMetadata.cpp |
3187
4bbadcd03966
refactoring retrieval of metadata from database
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
62 OrthancServer/Database/Compatibility/ILookupResourceAndParent.cpp |
3093
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
63 OrthancServer/Database/Compatibility/ILookupResources.cpp |
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
64 OrthancServer/Database/Compatibility/SetOfResources.cpp |
3094
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
65 OrthancServer/Database/ResourcesContent.cpp |
3093
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
66 OrthancServer/Database/SQLiteDatabaseWrapper.cpp |
2691 | 67 OrthancServer/DicomInstanceOrigin.cpp |
68 OrthancServer/DicomInstanceToStore.cpp | |
69 OrthancServer/ExportedResource.cpp | |
70 OrthancServer/LuaScripting.cpp | |
2933
4a38d7d4f0e0
new class: OrthancConfiguration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2893
diff
changeset
|
71 OrthancServer/OrthancConfiguration.cpp |
2691 | 72 OrthancServer/OrthancFindRequestHandler.cpp |
73 OrthancServer/OrthancHttpHandler.cpp | |
74 OrthancServer/OrthancInitialization.cpp | |
75 OrthancServer/OrthancMoveRequestHandler.cpp | |
3818
4f78da5613a1
Add C-GET SCP support
Stacy Loesch <stacy.loesch@varian.com>
parents:
3746
diff
changeset
|
76 OrthancServer/OrthancGetRequestHandler.cpp |
2691 | 77 OrthancServer/OrthancRestApi/OrthancRestAnonymizeModify.cpp |
78 OrthancServer/OrthancRestApi/OrthancRestApi.cpp | |
79 OrthancServer/OrthancRestApi/OrthancRestArchive.cpp | |
80 OrthancServer/OrthancRestApi/OrthancRestChanges.cpp | |
81 OrthancServer/OrthancRestApi/OrthancRestModalities.cpp | |
82 OrthancServer/OrthancRestApi/OrthancRestResources.cpp | |
83 OrthancServer/OrthancRestApi/OrthancRestSystem.cpp | |
84 OrthancServer/QueryRetrieveHandler.cpp | |
3029
ea653ec47f31
new class: DatabaseConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3018
diff
changeset
|
85 OrthancServer/Search/DatabaseConstraint.cpp |
2892
ce310baccda6
DicomTagConstraint and DatabaseLookup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2867
diff
changeset
|
86 OrthancServer/Search/DatabaseLookup.cpp |
ce310baccda6
DicomTagConstraint and DatabaseLookup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2867
diff
changeset
|
87 OrthancServer/Search/DicomTagConstraint.cpp |
2691 | 88 OrthancServer/Search/HierarchicalMatcher.cpp |
3058
6faf575ba9cc
refactoring: class ISqlLookupFormatter to be used in orthanc-databases
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3057
diff
changeset
|
89 OrthancServer/Search/ISqlLookupFormatter.cpp |
2691 | 90 OrthancServer/ServerContext.cpp |
91 OrthancServer/ServerEnumerations.cpp | |
92 OrthancServer/ServerIndex.cpp | |
93 OrthancServer/ServerJobs/ArchiveJob.cpp | |
3941
771dbd9eb3bd
class CleaningInstancesJob to share cleaning code by merge/split jobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3893
diff
changeset
|
94 OrthancServer/ServerJobs/CleaningInstancesJob.cpp |
2691 | 95 OrthancServer/ServerJobs/DicomModalityStoreJob.cpp |
2867 | 96 OrthancServer/ServerJobs/DicomMoveScuJob.cpp |
2691 | 97 OrthancServer/ServerJobs/LuaJobManager.cpp |
2853
52b017d22a4f
New URI: "/studies/.../merge" to merge a study
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2844
diff
changeset
|
98 OrthancServer/ServerJobs/MergeStudyJob.cpp |
2691 | 99 OrthancServer/ServerJobs/Operations/DeleteResourceOperation.cpp |
3095
beeeb6096f27
removing dependencies upon ServerContext
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3094
diff
changeset
|
100 OrthancServer/ServerJobs/Operations/DicomInstanceOperationValue.cpp |
2691 | 101 OrthancServer/ServerJobs/Operations/ModifyInstanceOperation.cpp |
102 OrthancServer/ServerJobs/Operations/StorePeerOperation.cpp | |
103 OrthancServer/ServerJobs/Operations/StoreScuOperation.cpp | |
104 OrthancServer/ServerJobs/Operations/SystemCallOperation.cpp | |
105 OrthancServer/ServerJobs/OrthancJobUnserializer.cpp | |
106 OrthancServer/ServerJobs/OrthancPeerStoreJob.cpp | |
107 OrthancServer/ServerJobs/ResourceModificationJob.cpp | |
2844
99863d6245b2
New URI: "/studies/.../split" to split a study
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2808
diff
changeset
|
108 OrthancServer/ServerJobs/SplitStudyJob.cpp |
3636 | 109 OrthancServer/ServerJobs/StorageCommitmentScpJob.cpp |
2691 | 110 OrthancServer/ServerToolbox.cpp |
111 OrthancServer/SliceOrdering.cpp | |
3736
0540b54324f1
StorageCommitmentReports
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3731
diff
changeset
|
112 OrthancServer/StorageCommitmentReports.cpp |
2691 | 113 ) |
114 | |
115 | |
116 set(ORTHANC_UNIT_TESTS_SOURCES | |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
117 UnitTestsSources/DatabaseLookupTests.cpp |
2691 | 118 UnitTestsSources/DicomMapTests.cpp |
119 UnitTestsSources/FileStorageTests.cpp | |
3987 | 120 UnitTestsSources/FrameworkTests.cpp |
2691 | 121 UnitTestsSources/FromDcmtkTests.cpp |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
122 UnitTestsSources/ImageProcessingTests.cpp |
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
123 UnitTestsSources/ImageTests.cpp |
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
124 UnitTestsSources/JpegLosslessTests.cpp |
3353
54cdad5a7228
Added a public function that will use emscripten-specific logging functions when using its SDK + scaffolding work. Build and UT OK on msvc15 x64. Not actually tested under *nix or emscripten yet
Benjamin Golinvaux <bgo@osimis.io>
parents:
3333
diff
changeset
|
125 UnitTestsSources/LoggingTests.cpp |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
126 UnitTestsSources/LuaTests.cpp |
2691 | 127 UnitTestsSources/MemoryCacheTests.cpp |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
128 UnitTestsSources/MultiThreadingTests.cpp |
2691 | 129 UnitTestsSources/RestApiTests.cpp |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
130 UnitTestsSources/SQLiteChromiumTests.cpp |
2691 | 131 UnitTestsSources/SQLiteTests.cpp |
132 UnitTestsSources/ServerIndexTests.cpp | |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
133 UnitTestsSources/StreamTests.cpp |
3326
b21d4cc8e5d1
speed up base64 decoding + added tests
Alain Mazy <alain@mazy.be>
parents:
3295
diff
changeset
|
134 UnitTestsSources/ToolboxTests.cpp |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
135 UnitTestsSources/UnitTestsMain.cpp |
2691 | 136 UnitTestsSources/VersionsTests.cpp |
137 UnitTestsSources/ZipTests.cpp | |
138 ) | |
139 | |
140 | |
141 if (ENABLE_PLUGINS) | |
3074
495c5edce708
new extension for database plugin SDK: lookupResources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3071
diff
changeset
|
142 include_directories(${CMAKE_SOURCE_DIR}/Plugins/Include) |
495c5edce708
new extension for database plugin SDK: lookupResources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3071
diff
changeset
|
143 |
2691 | 144 list(APPEND ORTHANC_SERVER_SOURCES |
145 Plugins/Engine/OrthancPluginDatabase.cpp | |
146 Plugins/Engine/OrthancPlugins.cpp | |
147 Plugins/Engine/PluginsEnumerations.cpp | |
148 Plugins/Engine/PluginsErrorDictionary.cpp | |
2808
37583cd183ed
primitives to create jobs from plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2773
diff
changeset
|
149 Plugins/Engine/PluginsJob.cpp |
2691 | 150 Plugins/Engine/PluginsManager.cpp |
151 ) | |
152 | |
153 list(APPEND ORTHANC_UNIT_TESTS_SOURCES | |
154 UnitTestsSources/PluginsTests.cpp | |
155 ) | |
156 endif() | |
157 | |
158 | |
159 if (CMAKE_COMPILER_IS_GNUCXX | |
160 AND NOT CMAKE_CROSSCOMPILING | |
3275 | 161 AND DCMTK_STATIC_VERSION STREQUAL "3.6.0") |
2691 | 162 # Add the "-pedantic" flag only on the Orthanc sources, and only if |
163 # cross-compiling DCMTK 3.6.0 | |
164 set(ORTHANC_ALL_SOURCES | |
165 ${ORTHANC_CORE_SOURCES_INTERNAL} | |
166 ${ORTHANC_DICOM_SOURCES_INTERNAL} | |
167 ${ORTHANC_SERVER_SOURCES} | |
168 ${ORTHANC_UNIT_TESTS_SOURCES} | |
169 Plugins/Samples/ServeFolders/Plugin.cpp | |
170 Plugins/Samples/ModalityWorklists/Plugin.cpp | |
171 OrthancServer/main.cpp | |
172 ) | |
173 | |
174 set_source_files_properties(${ORTHANC_ALL_SOURCES} | |
175 PROPERTIES COMPILE_FLAGS -pedantic | |
176 ) | |
177 endif() | |
178 | |
179 | |
180 ##################################################################### | |
181 ## Autogeneration of files | |
182 ##################################################################### | |
183 | |
184 set(ORTHANC_EMBEDDED_FILES | |
3094
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
185 CONFIGURATION_SAMPLE ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Configuration.json |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
186 DICOM_CONFORMANCE_STATEMENT ${CMAKE_CURRENT_SOURCE_DIR}/Resources/DicomConformanceStatement.txt |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
187 FONT_UBUNTU_MONO_BOLD_16 ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Fonts/UbuntuMonoBold-16.json |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
188 LUA_TOOLBOX ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Toolbox.lua |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
189 PREPARE_DATABASE ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/Database/PrepareDatabase.sql |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
190 UPGRADE_DATABASE_3_TO_4 ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/Database/Upgrade3To4.sql |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
191 UPGRADE_DATABASE_4_TO_5 ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/Database/Upgrade4To5.sql |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
192 |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
193 INSTALL_TRACK_ATTACHMENTS_SIZE |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
194 ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/Database/InstallTrackAttachmentsSize.sql |
2691 | 195 ) |
196 | |
197 if (STANDALONE_BUILD) | |
198 # We embed all the resources in the binaries for standalone builds | |
199 add_definitions(-DORTHANC_STANDALONE=1) | |
200 EmbedResources( | |
201 ${ORTHANC_EMBEDDED_FILES} | |
202 ORTHANC_EXPLORER ${CMAKE_CURRENT_SOURCE_DIR}/OrthancExplorer | |
203 ${DCMTK_DICTIONARIES} | |
3333
2a38e00a0638
Size of the Orthanc static binaries are reduced by compressing ICU data
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3326
diff
changeset
|
204 ${LIBICU_RESOURCES} |
2691 | 205 ) |
206 else() | |
207 add_definitions( | |
208 -DORTHANC_STANDALONE=0 | |
209 -DORTHANC_PATH=\"${CMAKE_SOURCE_DIR}\" | |
210 ) | |
211 EmbedResources( | |
212 ${ORTHANC_EMBEDDED_FILES} | |
3333
2a38e00a0638
Size of the Orthanc static binaries are reduced by compressing ICU data
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3326
diff
changeset
|
213 ${LIBICU_RESOURCES} |
2691 | 214 ) |
215 endif() | |
216 | |
217 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
218 execute_process( | |
219 COMMAND | |
220 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
221 ${ORTHANC_VERSION} Orthanc Orthanc.exe "Lightweight, RESTful DICOM server for medical imaging" | |
222 ERROR_VARIABLE Failure | |
223 OUTPUT_FILE ${AUTOGENERATED_DIR}/Orthanc.rc | |
224 ) | |
225 | |
226 if (Failure) | |
227 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
228 endif() | |
229 | |
230 list(APPEND ORTHANC_RESOURCES ${AUTOGENERATED_DIR}/Orthanc.rc) | |
231 endif() | |
232 | |
233 | |
234 | |
235 ##################################################################### | |
236 ## Configuration of the C/C++ macros | |
237 ##################################################################### | |
238 | |
239 if (ENABLE_PLUGINS) | |
240 add_definitions(-DORTHANC_ENABLE_PLUGINS=1) | |
241 else() | |
242 add_definitions(-DORTHANC_ENABLE_PLUGINS=0) | |
243 endif() | |
244 | |
245 | |
246 if (UNIT_TESTS_WITH_HTTP_CONNEXIONS) | |
247 add_definitions(-DUNIT_TESTS_WITH_HTTP_CONNEXIONS=1) | |
248 else() | |
249 add_definitions(-DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0) | |
250 endif() | |
251 | |
252 | |
253 add_definitions( | |
254 -DORTHANC_BUILD_UNIT_TESTS=1 | |
255 | |
256 # Macros for the plugins | |
257 -DHAS_ORTHANC_EXCEPTION=0 | |
258 -DMODALITY_WORKLISTS_VERSION="${ORTHANC_VERSION}" | |
259 -DSERVE_FOLDERS_VERSION="${ORTHANC_VERSION}" | |
260 ) | |
261 | |
262 | |
263 # Setup precompiled headers for Microsoft Visual Studio | |
264 | |
265 # WARNING: There must be NO MORE "add_definitions()", "include()" or | |
266 # "include_directories()" below, otherwise the generated precompiled | |
267 # headers might get broken! | |
268 | |
269 if (MSVC) | |
270 add_definitions(-DORTHANC_USE_PRECOMPILED_HEADERS=1) | |
271 | |
272 set(TMP | |
273 ${ORTHANC_CORE_SOURCES_INTERNAL} | |
274 ${ORTHANC_DICOM_SOURCES_INTERNAL} | |
275 ) | |
276 | |
277 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
278 "PrecompiledHeaders.h" "Core/PrecompiledHeaders.cpp" | |
279 TMP ORTHANC_CORE_PCH) | |
280 | |
281 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
282 "PrecompiledHeadersServer.h" "OrthancServer/PrecompiledHeadersServer.cpp" | |
283 ORTHANC_SERVER_SOURCES ORTHANC_SERVER_PCH) | |
284 | |
285 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
286 "PrecompiledHeadersUnitTests.h" "UnitTestsSources/PrecompiledHeadersUnitTests.cpp" | |
287 ORTHANC_UNIT_TESTS_SOURCES ORTHANC_UNIT_TESTS_PCH) | |
288 endif() | |
289 | |
290 | |
291 | |
292 ##################################################################### | |
293 ## Build the core of Orthanc | |
294 ##################################################################### | |
295 | |
296 # "CoreLibrary" contains all the third-party dependencies and the | |
297 # content of the "Core" folder | |
298 add_library(CoreLibrary | |
299 STATIC | |
300 ${ORTHANC_CORE_PCH} | |
301 ${ORTHANC_CORE_SOURCES} | |
302 ${ORTHANC_DICOM_SOURCES} | |
303 ${AUTOGENERATED_SOURCES} | |
3270 | 304 ) |
305 | |
306 if (LIBICU_LIBRARIES) | |
307 target_link_libraries(CoreLibrary ${LIBICU_LIBRARIES}) | |
308 endif() | |
2691 | 309 |
310 | |
311 ##################################################################### | |
312 ## Build the Orthanc server | |
313 ##################################################################### | |
314 | |
315 add_library(ServerLibrary | |
316 STATIC | |
317 ${ORTHANC_SERVER_PCH} | |
318 ${ORTHANC_SERVER_SOURCES} | |
319 ) | |
320 | |
321 # Ensure autogenerated code is built before building ServerLibrary | |
322 add_dependencies(ServerLibrary CoreLibrary) | |
323 | |
324 add_executable(Orthanc | |
325 OrthancServer/main.cpp | |
326 ${ORTHANC_RESOURCES} | |
327 ) | |
328 | |
329 target_link_libraries(Orthanc ServerLibrary CoreLibrary ${DCMTK_LIBRARIES}) | |
330 | |
331 install( | |
332 TARGETS Orthanc | |
333 RUNTIME DESTINATION sbin | |
334 ) | |
335 | |
336 | |
337 ##################################################################### | |
338 ## Build the unit tests | |
339 ##################################################################### | |
340 | |
341 add_executable(UnitTests | |
342 ${GOOGLE_TEST_SOURCES} | |
343 ${ORTHANC_UNIT_TESTS_PCH} | |
344 ${ORTHANC_UNIT_TESTS_SOURCES} | |
3326
b21d4cc8e5d1
speed up base64 decoding + added tests
Alain Mazy <alain@mazy.be>
parents:
3295
diff
changeset
|
345 ${BOOST_EXTENDED_SOURCES} |
2691 | 346 ) |
347 | |
348 target_link_libraries(UnitTests | |
349 ServerLibrary | |
350 CoreLibrary | |
351 ${DCMTK_LIBRARIES} | |
352 ${GOOGLE_TEST_LIBRARIES} | |
353 ) | |
354 | |
355 | |
356 ##################################################################### | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
357 ## Build a static library to share code between the plugins |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
358 ##################################################################### |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
359 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
360 if (ENABLE_PLUGINS AND |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
361 (BUILD_SERVE_FOLDERS OR BUILD_MODALITY_WORKLISTS)) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
362 add_library(ThirdPartyPlugins STATIC |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
363 ${BOOST_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
364 ${JSONCPP_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
365 ${LIBICONV_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
366 ${LIBICU_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
367 Plugins/Samples/Common/OrthancPluginCppWrapper.cpp |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
368 ) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
369 |
3271 | 370 if (LIBICU_LIBRARIES) |
371 target_link_libraries(ThirdPartyPlugins ${LIBICU_LIBRARIES}) | |
372 endif() | |
373 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
374 # Add the "-fPIC" option as this static library must be embedded |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
375 # inside shared libraries (important on UNIX) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
376 set_property( |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
377 TARGET ThirdPartyPlugins |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
378 PROPERTY POSITION_INDEPENDENT_CODE ON |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
379 ) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
380 endif() |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
381 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
382 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
383 ##################################################################### |
2691 | 384 ## Build the "ServeFolders" plugin |
385 ##################################################################### | |
386 | |
387 if (ENABLE_PLUGINS AND BUILD_SERVE_FOLDERS) | |
388 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
389 execute_process( | |
390 COMMAND | |
391 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
392 ${ORTHANC_VERSION} ServeFolders ServeFolders.dll "Orthanc plugin to serve additional folders" | |
393 ERROR_VARIABLE Failure | |
394 OUTPUT_FILE ${AUTOGENERATED_DIR}/ServeFolders.rc | |
395 ) | |
396 | |
397 if (Failure) | |
398 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
399 endif() | |
400 | |
401 list(APPEND SERVE_FOLDERS_RESOURCES ${AUTOGENERATED_DIR}/ServeFolders.rc) | |
402 endif() | |
403 | |
404 add_library(ServeFolders SHARED | |
405 Plugins/Samples/ServeFolders/Plugin.cpp | |
406 ${SERVE_FOLDERS_RESOURCES} | |
407 ) | |
408 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
409 target_link_libraries(ServeFolders ThirdPartyPlugins) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
410 |
2691 | 411 set_target_properties( |
412 ServeFolders PROPERTIES | |
413 VERSION ${ORTHANC_VERSION} | |
414 SOVERSION ${ORTHANC_VERSION} | |
415 ) | |
416 | |
417 install( | |
418 TARGETS ServeFolders | |
419 RUNTIME DESTINATION lib # Destination for Windows | |
420 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
421 ) | |
422 endif() | |
423 | |
424 | |
425 | |
426 ##################################################################### | |
427 ## Build the "ModalityWorklists" plugin | |
428 ##################################################################### | |
429 | |
430 if (ENABLE_PLUGINS AND BUILD_MODALITY_WORKLISTS) | |
431 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
432 execute_process( | |
433 COMMAND | |
434 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
435 ${ORTHANC_VERSION} ModalityWorklists ModalityWorklists.dll "Sample Orthanc plugin to serve modality worklists" | |
436 ERROR_VARIABLE Failure | |
437 OUTPUT_FILE ${AUTOGENERATED_DIR}/ModalityWorklists.rc | |
438 ) | |
439 | |
440 if (Failure) | |
441 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
442 endif() | |
443 | |
444 list(APPEND MODALITY_WORKLISTS_RESOURCES ${AUTOGENERATED_DIR}/ModalityWorklists.rc) | |
445 endif() | |
446 | |
447 add_library(ModalityWorklists SHARED | |
448 Plugins/Samples/ModalityWorklists/Plugin.cpp | |
449 ${MODALITY_WORKLISTS_RESOURCES} | |
450 ) | |
451 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
452 target_link_libraries(ModalityWorklists ThirdPartyPlugins) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
453 |
2691 | 454 set_target_properties( |
455 ModalityWorklists PROPERTIES | |
456 VERSION ${ORTHANC_VERSION} | |
457 SOVERSION ${ORTHANC_VERSION} | |
458 ) | |
459 | |
460 install( | |
461 TARGETS ModalityWorklists | |
462 RUNTIME DESTINATION lib # Destination for Windows | |
463 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
464 ) | |
465 endif() | |
466 | |
467 | |
468 | |
469 ##################################################################### | |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
470 ## Build the "ConnectivityChecks" plugin |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
471 ##################################################################### |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
472 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
473 if (ENABLE_PLUGINS AND BUILD_CONNECTIVITY_CHECKS) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
474 include(ExternalProject) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
475 |
3625 | 476 set(Flags) |
3627
b03854e0f796
trying to fix output folders for OS X and windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3626
diff
changeset
|
477 |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
478 if (CMAKE_TOOLCHAIN_FILE) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
479 # Take absolute path to the toolchain |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
480 get_filename_component(TMP ${CMAKE_TOOLCHAIN_FILE} REALPATH BASE ${CMAKE_SOURCE_DIR}) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
481 list(APPEND Flags -DCMAKE_TOOLCHAIN_FILE=${TMP}) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
482 endif() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
483 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
484 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
485 list(APPEND Flags |
3625 | 486 -DLSB_CC=${CMAKE_LSB_CC} |
487 -DLSB_CXX=${CMAKE_LSB_CXX} | |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
488 ) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
489 endif() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
490 |
3637
06eb59faf4da
use a shorter path for VS2008
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3636
diff
changeset
|
491 externalproject_add(ConnectivityChecks |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
492 SOURCE_DIR "${ORTHANC_ROOT}/Plugins/Samples/ConnectivityChecks" |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
493 |
3637
06eb59faf4da
use a shorter path for VS2008
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3636
diff
changeset
|
494 # We explicitly provide a build directory, in order to avoid paths |
06eb59faf4da
use a shorter path for VS2008
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3636
diff
changeset
|
495 # that are too long on our Visual Studio 2008 CIS |
06eb59faf4da
use a shorter path for VS2008
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3636
diff
changeset
|
496 BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/ConnectivityChecks-build" |
06eb59faf4da
use a shorter path for VS2008
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3636
diff
changeset
|
497 |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
498 CMAKE_ARGS |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
499 -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} |
3623 | 500 -DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_BINARY_DIR} |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
501 -DPLUGIN_VERSION=${ORTHANC_VERSION} |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
502 -DSTATIC_BUILD=${STATIC_BUILD} |
3625 | 503 -DALLOW_DOWNLOADS=${ALLOW_DOWNLOADS} |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
504 -DUSE_LEGACY_JSONCPP=${USE_LEGACY_JSONCPP} |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
505 ${Flags} |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
506 ) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
507 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
508 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
509 if (MSVC) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
510 set(Prefix "") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
511 else() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
512 set(Prefix "lib") # MinGW |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
513 endif() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
514 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
515 install(FILES |
3633
5295a49dd78a
removing not working tricks for ConnectivityChecks plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3628
diff
changeset
|
516 ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}ConnectivityChecks.dll |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
517 DESTINATION "lib") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
518 else() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
519 list(GET CMAKE_FIND_LIBRARY_PREFIXES 0 Prefix) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
520 list(GET CMAKE_FIND_LIBRARY_SUFFIXES 0 Suffix) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
521 install(FILES |
3633
5295a49dd78a
removing not working tricks for ConnectivityChecks plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3628
diff
changeset
|
522 ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}ConnectivityChecks${Suffix} |
5295a49dd78a
removing not working tricks for ConnectivityChecks plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3628
diff
changeset
|
523 ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}ConnectivityChecks${Suffix}.${ORTHANC_VERSION} |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
524 DESTINATION "share/orthanc/plugins") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
525 endif() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
526 endif() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
527 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
528 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
529 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
530 ##################################################################### |
2691 | 531 ## Build the companion tool to recover files compressed using Orthanc |
532 ##################################################################### | |
533 | |
534 if (BUILD_RECOVER_COMPRESSED_FILE) | |
535 set(RECOVER_COMPRESSED_SOURCES | |
536 Resources/Samples/Tools/RecoverCompressedFile.cpp | |
537 ) | |
538 | |
539 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
540 execute_process( | |
541 COMMAND | |
542 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
543 ${ORTHANC_VERSION} OrthancRecoverCompressedFile OrthancRecoverCompressedFile.exe | |
544 "Lightweight, RESTful DICOM server for medical imaging" | |
545 ERROR_VARIABLE Failure | |
546 OUTPUT_FILE ${AUTOGENERATED_DIR}/OrthancRecoverCompressedFile.rc | |
547 ) | |
548 | |
549 if (Failure) | |
550 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
551 endif() | |
552 | |
553 list(APPEND RECOVER_COMPRESSED_SOURCES | |
554 ${AUTOGENERATED_DIR}/OrthancRecoverCompressedFile.rc | |
555 ) | |
556 endif() | |
557 | |
558 add_executable(OrthancRecoverCompressedFile ${RECOVER_COMPRESSED_SOURCES}) | |
559 | |
560 target_link_libraries(OrthancRecoverCompressedFile CoreLibrary) | |
561 | |
562 install( | |
563 TARGETS OrthancRecoverCompressedFile | |
564 RUNTIME DESTINATION bin | |
565 ) | |
566 endif() | |
567 | |
568 | |
569 | |
570 ##################################################################### | |
571 ## Generate the documentation if Doxygen is present | |
572 ##################################################################### | |
573 | |
574 find_package(Doxygen) | |
575 if (DOXYGEN_FOUND) | |
576 configure_file( | |
577 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen | |
578 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
579 @ONLY) | |
580 | |
581 configure_file( | |
582 ${CMAKE_SOURCE_DIR}/Resources/OrthancPlugin.doxygen | |
583 ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen | |
584 @ONLY) | |
585 | |
586 add_custom_target(doc | |
587 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
588 COMMENT "Generating internal documentation with Doxygen" VERBATIM | |
589 ) | |
590 | |
591 add_custom_command(TARGET Orthanc | |
592 POST_BUILD | |
593 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen | |
594 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} | |
595 COMMENT "Generating plugin documentation with Doxygen" VERBATIM | |
596 ) | |
597 | |
598 install( | |
599 DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/OrthancPluginDocumentation/doc/ | |
600 DESTINATION share/doc/orthanc/OrthancPlugin | |
601 ) | |
602 else() | |
603 message("Doxygen not found. The documentation will not be built.") | |
604 endif() | |
605 | |
606 | |
607 | |
608 ##################################################################### | |
609 ## Install the plugin SDK | |
610 ##################################################################### | |
611 | |
612 if (ENABLE_PLUGINS) | |
613 install( | |
614 FILES | |
615 Plugins/Include/orthanc/OrthancCPlugin.h | |
616 Plugins/Include/orthanc/OrthancCDatabasePlugin.h | |
617 DESTINATION include/orthanc | |
618 ) | |
619 endif() | |
620 | |
621 | |
622 | |
623 ##################################################################### | |
624 ## Prepare the "uninstall" target | |
625 ## http://www.cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F | |
626 ##################################################################### | |
627 | |
628 configure_file( | |
629 "${CMAKE_CURRENT_SOURCE_DIR}/Resources/CMake/Uninstall.cmake.in" | |
630 "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | |
631 IMMEDIATE @ONLY) | |
632 | |
633 add_custom_target(uninstall | |
634 COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) |