Mercurial > hg > orthanc
annotate CMakeLists.txt @ 4000:5f6c11a5e1f9
set default value for ORTHANC_FRAMEWORK_BUILDING_LIBRARY
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 05 Jun 2020 19:18:14 +0200 |
parents | 44e2a8e0b6ae |
children | f6cb16413325 |
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 -DORTHANC_ENABLE_LOGGING_PLUGIN=0 | |
256 | |
257 # Macros for the plugins | |
258 -DHAS_ORTHANC_EXCEPTION=0 | |
259 -DMODALITY_WORKLISTS_VERSION="${ORTHANC_VERSION}" | |
260 -DSERVE_FOLDERS_VERSION="${ORTHANC_VERSION}" | |
261 ) | |
262 | |
263 | |
264 # Setup precompiled headers for Microsoft Visual Studio | |
265 | |
266 # WARNING: There must be NO MORE "add_definitions()", "include()" or | |
267 # "include_directories()" below, otherwise the generated precompiled | |
268 # headers might get broken! | |
269 | |
270 if (MSVC) | |
271 add_definitions(-DORTHANC_USE_PRECOMPILED_HEADERS=1) | |
272 | |
273 set(TMP | |
274 ${ORTHANC_CORE_SOURCES_INTERNAL} | |
275 ${ORTHANC_DICOM_SOURCES_INTERNAL} | |
276 ) | |
277 | |
278 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
279 "PrecompiledHeaders.h" "Core/PrecompiledHeaders.cpp" | |
280 TMP ORTHANC_CORE_PCH) | |
281 | |
282 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
283 "PrecompiledHeadersServer.h" "OrthancServer/PrecompiledHeadersServer.cpp" | |
284 ORTHANC_SERVER_SOURCES ORTHANC_SERVER_PCH) | |
285 | |
286 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
287 "PrecompiledHeadersUnitTests.h" "UnitTestsSources/PrecompiledHeadersUnitTests.cpp" | |
288 ORTHANC_UNIT_TESTS_SOURCES ORTHANC_UNIT_TESTS_PCH) | |
289 endif() | |
290 | |
291 | |
292 | |
293 ##################################################################### | |
294 ## Build the core of Orthanc | |
295 ##################################################################### | |
296 | |
297 # "CoreLibrary" contains all the third-party dependencies and the | |
298 # content of the "Core" folder | |
299 add_library(CoreLibrary | |
300 STATIC | |
301 ${ORTHANC_CORE_PCH} | |
302 ${ORTHANC_CORE_SOURCES} | |
303 ${ORTHANC_DICOM_SOURCES} | |
304 ${AUTOGENERATED_SOURCES} | |
3270 | 305 ) |
306 | |
307 if (LIBICU_LIBRARIES) | |
308 target_link_libraries(CoreLibrary ${LIBICU_LIBRARIES}) | |
309 endif() | |
2691 | 310 |
311 | |
312 ##################################################################### | |
313 ## Build the Orthanc server | |
314 ##################################################################### | |
315 | |
316 add_library(ServerLibrary | |
317 STATIC | |
318 ${ORTHANC_SERVER_PCH} | |
319 ${ORTHANC_SERVER_SOURCES} | |
320 ) | |
321 | |
322 # Ensure autogenerated code is built before building ServerLibrary | |
323 add_dependencies(ServerLibrary CoreLibrary) | |
324 | |
325 add_executable(Orthanc | |
326 OrthancServer/main.cpp | |
327 ${ORTHANC_RESOURCES} | |
328 ) | |
329 | |
330 target_link_libraries(Orthanc ServerLibrary CoreLibrary ${DCMTK_LIBRARIES}) | |
331 | |
332 install( | |
333 TARGETS Orthanc | |
334 RUNTIME DESTINATION sbin | |
335 ) | |
336 | |
337 | |
338 ##################################################################### | |
339 ## Build the unit tests | |
340 ##################################################################### | |
341 | |
342 add_executable(UnitTests | |
343 ${GOOGLE_TEST_SOURCES} | |
344 ${ORTHANC_UNIT_TESTS_PCH} | |
345 ${ORTHANC_UNIT_TESTS_SOURCES} | |
3326
b21d4cc8e5d1
speed up base64 decoding + added tests
Alain Mazy <alain@mazy.be>
parents:
3295
diff
changeset
|
346 ${BOOST_EXTENDED_SOURCES} |
2691 | 347 ) |
348 | |
349 target_link_libraries(UnitTests | |
350 ServerLibrary | |
351 CoreLibrary | |
352 ${DCMTK_LIBRARIES} | |
353 ${GOOGLE_TEST_LIBRARIES} | |
354 ) | |
355 | |
356 | |
357 ##################################################################### | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
358 ## 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
|
359 ##################################################################### |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
360 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
361 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
|
362 (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
|
363 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
|
364 ${BOOST_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
365 ${JSONCPP_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
366 ${LIBICONV_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
367 ${LIBICU_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
368 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
|
369 ) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
370 |
3271 | 371 if (LIBICU_LIBRARIES) |
372 target_link_libraries(ThirdPartyPlugins ${LIBICU_LIBRARIES}) | |
373 endif() | |
374 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
375 # 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
|
376 # 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
|
377 set_property( |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
378 TARGET ThirdPartyPlugins |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
379 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
|
380 ) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
381 endif() |
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 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
384 ##################################################################### |
2691 | 385 ## Build the "ServeFolders" plugin |
386 ##################################################################### | |
387 | |
388 if (ENABLE_PLUGINS AND BUILD_SERVE_FOLDERS) | |
389 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
390 execute_process( | |
391 COMMAND | |
392 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
393 ${ORTHANC_VERSION} ServeFolders ServeFolders.dll "Orthanc plugin to serve additional folders" | |
394 ERROR_VARIABLE Failure | |
395 OUTPUT_FILE ${AUTOGENERATED_DIR}/ServeFolders.rc | |
396 ) | |
397 | |
398 if (Failure) | |
399 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
400 endif() | |
401 | |
402 list(APPEND SERVE_FOLDERS_RESOURCES ${AUTOGENERATED_DIR}/ServeFolders.rc) | |
403 endif() | |
404 | |
405 add_library(ServeFolders SHARED | |
406 Plugins/Samples/ServeFolders/Plugin.cpp | |
407 ${SERVE_FOLDERS_RESOURCES} | |
408 ) | |
409 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
410 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
|
411 |
2691 | 412 set_target_properties( |
413 ServeFolders PROPERTIES | |
414 VERSION ${ORTHANC_VERSION} | |
415 SOVERSION ${ORTHANC_VERSION} | |
416 ) | |
417 | |
418 install( | |
419 TARGETS ServeFolders | |
420 RUNTIME DESTINATION lib # Destination for Windows | |
421 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
422 ) | |
423 endif() | |
424 | |
425 | |
426 | |
427 ##################################################################### | |
428 ## Build the "ModalityWorklists" plugin | |
429 ##################################################################### | |
430 | |
431 if (ENABLE_PLUGINS AND BUILD_MODALITY_WORKLISTS) | |
432 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
433 execute_process( | |
434 COMMAND | |
435 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
436 ${ORTHANC_VERSION} ModalityWorklists ModalityWorklists.dll "Sample Orthanc plugin to serve modality worklists" | |
437 ERROR_VARIABLE Failure | |
438 OUTPUT_FILE ${AUTOGENERATED_DIR}/ModalityWorklists.rc | |
439 ) | |
440 | |
441 if (Failure) | |
442 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
443 endif() | |
444 | |
445 list(APPEND MODALITY_WORKLISTS_RESOURCES ${AUTOGENERATED_DIR}/ModalityWorklists.rc) | |
446 endif() | |
447 | |
448 add_library(ModalityWorklists SHARED | |
449 Plugins/Samples/ModalityWorklists/Plugin.cpp | |
450 ${MODALITY_WORKLISTS_RESOURCES} | |
451 ) | |
452 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
453 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
|
454 |
2691 | 455 set_target_properties( |
456 ModalityWorklists PROPERTIES | |
457 VERSION ${ORTHANC_VERSION} | |
458 SOVERSION ${ORTHANC_VERSION} | |
459 ) | |
460 | |
461 install( | |
462 TARGETS ModalityWorklists | |
463 RUNTIME DESTINATION lib # Destination for Windows | |
464 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
465 ) | |
466 endif() | |
467 | |
468 | |
469 | |
470 ##################################################################### | |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
471 ## Build the "ConnectivityChecks" plugin |
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 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
474 if (ENABLE_PLUGINS AND BUILD_CONNECTIVITY_CHECKS) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
475 include(ExternalProject) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
476 |
3625 | 477 set(Flags) |
3627
b03854e0f796
trying to fix output folders for OS X and windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3626
diff
changeset
|
478 |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
479 if (CMAKE_TOOLCHAIN_FILE) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
480 # Take absolute path to the toolchain |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
481 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
|
482 list(APPEND Flags -DCMAKE_TOOLCHAIN_FILE=${TMP}) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
483 endif() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
484 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
485 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
486 list(APPEND Flags |
3625 | 487 -DLSB_CC=${CMAKE_LSB_CC} |
488 -DLSB_CXX=${CMAKE_LSB_CXX} | |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
489 ) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
490 endif() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
491 |
3637
06eb59faf4da
use a shorter path for VS2008
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3636
diff
changeset
|
492 externalproject_add(ConnectivityChecks |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
493 SOURCE_DIR "${ORTHANC_ROOT}/Plugins/Samples/ConnectivityChecks" |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
494 |
3637
06eb59faf4da
use a shorter path for VS2008
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3636
diff
changeset
|
495 # 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
|
496 # 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
|
497 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
|
498 |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
499 CMAKE_ARGS |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
500 -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} |
3623 | 501 -DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_BINARY_DIR} |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
502 -DPLUGIN_VERSION=${ORTHANC_VERSION} |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
503 -DSTATIC_BUILD=${STATIC_BUILD} |
3625 | 504 -DALLOW_DOWNLOADS=${ALLOW_DOWNLOADS} |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
505 -DUSE_LEGACY_JSONCPP=${USE_LEGACY_JSONCPP} |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
506 ${Flags} |
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 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
509 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
510 if (MSVC) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
511 set(Prefix "") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
512 else() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
513 set(Prefix "lib") # MinGW |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
514 endif() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
515 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
516 install(FILES |
3633
5295a49dd78a
removing not working tricks for ConnectivityChecks plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3628
diff
changeset
|
517 ${CMAKE_CURRENT_BINARY_DIR}/${Prefix}ConnectivityChecks.dll |
3622
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
518 DESTINATION "lib") |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
519 else() |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
520 list(GET CMAKE_FIND_LIBRARY_PREFIXES 0 Prefix) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
521 list(GET CMAKE_FIND_LIBRARY_SUFFIXES 0 Suffix) |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
522 install(FILES |
3633
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} |
5295a49dd78a
removing not working tricks for ConnectivityChecks plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3628
diff
changeset
|
524 ${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
|
525 DESTINATION "share/orthanc/plugins") |
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 endif() |
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 |
8afc14fab01f
New sample plugin: ConnectivityChecks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3353
diff
changeset
|
531 ##################################################################### |
2691 | 532 ## Build the companion tool to recover files compressed using Orthanc |
533 ##################################################################### | |
534 | |
535 if (BUILD_RECOVER_COMPRESSED_FILE) | |
536 set(RECOVER_COMPRESSED_SOURCES | |
537 Resources/Samples/Tools/RecoverCompressedFile.cpp | |
538 ) | |
539 | |
540 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
541 execute_process( | |
542 COMMAND | |
543 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
544 ${ORTHANC_VERSION} OrthancRecoverCompressedFile OrthancRecoverCompressedFile.exe | |
545 "Lightweight, RESTful DICOM server for medical imaging" | |
546 ERROR_VARIABLE Failure | |
547 OUTPUT_FILE ${AUTOGENERATED_DIR}/OrthancRecoverCompressedFile.rc | |
548 ) | |
549 | |
550 if (Failure) | |
551 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
552 endif() | |
553 | |
554 list(APPEND RECOVER_COMPRESSED_SOURCES | |
555 ${AUTOGENERATED_DIR}/OrthancRecoverCompressedFile.rc | |
556 ) | |
557 endif() | |
558 | |
559 add_executable(OrthancRecoverCompressedFile ${RECOVER_COMPRESSED_SOURCES}) | |
560 | |
561 target_link_libraries(OrthancRecoverCompressedFile CoreLibrary) | |
562 | |
563 install( | |
564 TARGETS OrthancRecoverCompressedFile | |
565 RUNTIME DESTINATION bin | |
566 ) | |
567 endif() | |
568 | |
569 | |
570 | |
571 ##################################################################### | |
572 ## Generate the documentation if Doxygen is present | |
573 ##################################################################### | |
574 | |
575 find_package(Doxygen) | |
576 if (DOXYGEN_FOUND) | |
577 configure_file( | |
578 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen | |
579 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
580 @ONLY) | |
581 | |
582 configure_file( | |
583 ${CMAKE_SOURCE_DIR}/Resources/OrthancPlugin.doxygen | |
584 ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen | |
585 @ONLY) | |
586 | |
587 add_custom_target(doc | |
588 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
589 COMMENT "Generating internal documentation with Doxygen" VERBATIM | |
590 ) | |
591 | |
592 add_custom_command(TARGET Orthanc | |
593 POST_BUILD | |
594 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen | |
595 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} | |
596 COMMENT "Generating plugin documentation with Doxygen" VERBATIM | |
597 ) | |
598 | |
599 install( | |
600 DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/OrthancPluginDocumentation/doc/ | |
601 DESTINATION share/doc/orthanc/OrthancPlugin | |
602 ) | |
603 else() | |
604 message("Doxygen not found. The documentation will not be built.") | |
605 endif() | |
606 | |
607 | |
608 | |
609 ##################################################################### | |
610 ## Install the plugin SDK | |
611 ##################################################################### | |
612 | |
613 if (ENABLE_PLUGINS) | |
614 install( | |
615 FILES | |
616 Plugins/Include/orthanc/OrthancCPlugin.h | |
617 Plugins/Include/orthanc/OrthancCDatabasePlugin.h | |
618 DESTINATION include/orthanc | |
619 ) | |
620 endif() | |
621 | |
622 | |
623 | |
624 ##################################################################### | |
625 ## Prepare the "uninstall" target | |
626 ## http://www.cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F | |
627 ##################################################################### | |
628 | |
629 configure_file( | |
630 "${CMAKE_CURRENT_SOURCE_DIR}/Resources/CMake/Uninstall.cmake.in" | |
631 "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | |
632 IMMEDIATE @ONLY) | |
633 | |
634 add_custom_target(uninstall | |
635 COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) |