Mercurial > hg > orthanc
annotate CMakeLists.txt @ 3333:2a38e00a0638
Size of the Orthanc static binaries are reduced by compressing ICU data
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 27 Mar 2019 15:25:18 +0100 |
parents | b21d4cc8e5d1 |
children | 54cdad5a7228 |
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) | |
16 set(ENABLE_GOOGLE_TEST ON) | |
17 set(ENABLE_JPEG ON) | |
18 set(ENABLE_LOCALE ON) | |
19 set(ENABLE_LUA ON) | |
3295 | 20 set(ENABLE_OPENSSL_ENGINES ON) |
2691 | 21 set(ENABLE_PNG ON) |
22 set(ENABLE_PUGIXML ON) | |
23 set(ENABLE_SQLITE ON) | |
24 set(ENABLE_WEB_CLIENT ON) | |
25 set(ENABLE_WEB_SERVER ON) | |
26 set(ENABLE_ZLIB ON) | |
27 | |
28 set(HAS_EMBEDDED_RESOURCES ON) | |
29 | |
30 | |
31 ##################################################################### | |
32 ## CMake parameters tunable at the command line to configure the | |
33 ## plugins, the companion tools, and the unit tests | |
34 ##################################################################### | |
35 | |
36 # Parameters of the build | |
37 SET(BUILD_MODALITY_WORKLISTS ON CACHE BOOL "Whether to build the sample plugin to serve modality worklists") | |
38 SET(BUILD_RECOVER_COMPRESSED_FILE ON CACHE BOOL "Whether to build the companion tool to recover files compressed using Orthanc") | |
39 SET(BUILD_SERVE_FOLDERS ON CACHE BOOL "Whether to build the ServeFolders plugin") | |
40 SET(ENABLE_PLUGINS ON CACHE BOOL "Enable plugins") | |
41 SET(UNIT_TESTS_WITH_HTTP_CONNEXIONS ON CACHE BOOL "Allow unit tests to make HTTP requests") | |
42 | |
43 | |
44 ##################################################################### | |
45 ## Configuration of the Orthanc framework | |
46 ##################################################################### | |
47 | |
48 include(${CMAKE_SOURCE_DIR}/Resources/CMake/VisualStudioPrecompiledHeaders.cmake) | |
49 include(${CMAKE_SOURCE_DIR}/Resources/CMake/OrthancFrameworkConfiguration.cmake) | |
50 | |
51 | |
52 ##################################################################### | |
53 ## List of source files | |
54 ##################################################################### | |
55 | |
56 set(ORTHANC_SERVER_SOURCES | |
3093
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
57 OrthancServer/Database/Compatibility/DatabaseLookup.cpp |
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
58 OrthancServer/Database/Compatibility/ICreateInstance.cpp |
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
59 OrthancServer/Database/Compatibility/IGetChildrenMetadata.cpp |
3187
4bbadcd03966
refactoring retrieval of metadata from database
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
60 OrthancServer/Database/Compatibility/ILookupResourceAndParent.cpp |
3093
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
61 OrthancServer/Database/Compatibility/ILookupResources.cpp |
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
62 OrthancServer/Database/Compatibility/SetOfResources.cpp |
3094
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
63 OrthancServer/Database/ResourcesContent.cpp |
3093
2e1808b6146a
reorganization of folders
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3091
diff
changeset
|
64 OrthancServer/Database/SQLiteDatabaseWrapper.cpp |
2691 | 65 OrthancServer/DicomInstanceOrigin.cpp |
66 OrthancServer/DicomInstanceToStore.cpp | |
67 OrthancServer/ExportedResource.cpp | |
68 OrthancServer/LuaScripting.cpp | |
2933
4a38d7d4f0e0
new class: OrthancConfiguration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2893
diff
changeset
|
69 OrthancServer/OrthancConfiguration.cpp |
2691 | 70 OrthancServer/OrthancFindRequestHandler.cpp |
71 OrthancServer/OrthancHttpHandler.cpp | |
72 OrthancServer/OrthancInitialization.cpp | |
73 OrthancServer/OrthancMoveRequestHandler.cpp | |
74 OrthancServer/OrthancRestApi/OrthancRestAnonymizeModify.cpp | |
75 OrthancServer/OrthancRestApi/OrthancRestApi.cpp | |
76 OrthancServer/OrthancRestApi/OrthancRestArchive.cpp | |
77 OrthancServer/OrthancRestApi/OrthancRestChanges.cpp | |
78 OrthancServer/OrthancRestApi/OrthancRestModalities.cpp | |
79 OrthancServer/OrthancRestApi/OrthancRestResources.cpp | |
80 OrthancServer/OrthancRestApi/OrthancRestSystem.cpp | |
81 OrthancServer/QueryRetrieveHandler.cpp | |
3029
ea653ec47f31
new class: DatabaseConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3018
diff
changeset
|
82 OrthancServer/Search/DatabaseConstraint.cpp |
2892
ce310baccda6
DicomTagConstraint and DatabaseLookup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2867
diff
changeset
|
83 OrthancServer/Search/DatabaseLookup.cpp |
ce310baccda6
DicomTagConstraint and DatabaseLookup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2867
diff
changeset
|
84 OrthancServer/Search/DicomTagConstraint.cpp |
2691 | 85 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
|
86 OrthancServer/Search/ISqlLookupFormatter.cpp |
2691 | 87 OrthancServer/ServerContext.cpp |
88 OrthancServer/ServerEnumerations.cpp | |
89 OrthancServer/ServerIndex.cpp | |
90 OrthancServer/ServerJobs/ArchiveJob.cpp | |
91 OrthancServer/ServerJobs/DicomModalityStoreJob.cpp | |
2867 | 92 OrthancServer/ServerJobs/DicomMoveScuJob.cpp |
2691 | 93 OrthancServer/ServerJobs/LuaJobManager.cpp |
2853
52b017d22a4f
New URI: "/studies/.../merge" to merge a study
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2844
diff
changeset
|
94 OrthancServer/ServerJobs/MergeStudyJob.cpp |
2691 | 95 OrthancServer/ServerJobs/Operations/DeleteResourceOperation.cpp |
3095
beeeb6096f27
removing dependencies upon ServerContext
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3094
diff
changeset
|
96 OrthancServer/ServerJobs/Operations/DicomInstanceOperationValue.cpp |
2691 | 97 OrthancServer/ServerJobs/Operations/ModifyInstanceOperation.cpp |
98 OrthancServer/ServerJobs/Operations/StorePeerOperation.cpp | |
99 OrthancServer/ServerJobs/Operations/StoreScuOperation.cpp | |
100 OrthancServer/ServerJobs/Operations/SystemCallOperation.cpp | |
101 OrthancServer/ServerJobs/OrthancJobUnserializer.cpp | |
102 OrthancServer/ServerJobs/OrthancPeerStoreJob.cpp | |
103 OrthancServer/ServerJobs/ResourceModificationJob.cpp | |
2844
99863d6245b2
New URI: "/studies/.../split" to split a study
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2808
diff
changeset
|
104 OrthancServer/ServerJobs/SplitStudyJob.cpp |
2691 | 105 OrthancServer/ServerToolbox.cpp |
106 OrthancServer/SliceOrdering.cpp | |
107 ) | |
108 | |
109 | |
110 set(ORTHANC_UNIT_TESTS_SOURCES | |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
111 UnitTestsSources/DatabaseLookupTests.cpp |
2691 | 112 UnitTestsSources/DicomMapTests.cpp |
113 UnitTestsSources/FileStorageTests.cpp | |
114 UnitTestsSources/FromDcmtkTests.cpp | |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
115 UnitTestsSources/ImageProcessingTests.cpp |
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
116 UnitTestsSources/ImageTests.cpp |
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
117 UnitTestsSources/JpegLosslessTests.cpp |
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
118 UnitTestsSources/LuaTests.cpp |
2691 | 119 UnitTestsSources/MemoryCacheTests.cpp |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
120 UnitTestsSources/MultiThreadingTests.cpp |
2691 | 121 UnitTestsSources/RestApiTests.cpp |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
122 UnitTestsSources/SQLiteChromiumTests.cpp |
2691 | 123 UnitTestsSources/SQLiteTests.cpp |
124 UnitTestsSources/ServerIndexTests.cpp | |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
125 UnitTestsSources/StreamTests.cpp |
3326
b21d4cc8e5d1
speed up base64 decoding + added tests
Alain Mazy <alain@mazy.be>
parents:
3295
diff
changeset
|
126 UnitTestsSources/ToolboxTests.cpp |
2893
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
127 UnitTestsSources/UnitTestsMain.cpp |
2691 | 128 UnitTestsSources/VersionsTests.cpp |
129 UnitTestsSources/ZipTests.cpp | |
130 ) | |
131 | |
132 | |
133 if (ENABLE_PLUGINS) | |
3074
495c5edce708
new extension for database plugin SDK: lookupResources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3071
diff
changeset
|
134 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
|
135 |
2691 | 136 list(APPEND ORTHANC_SERVER_SOURCES |
137 Plugins/Engine/OrthancPluginDatabase.cpp | |
138 Plugins/Engine/OrthancPlugins.cpp | |
139 Plugins/Engine/PluginsEnumerations.cpp | |
140 Plugins/Engine/PluginsErrorDictionary.cpp | |
2808
37583cd183ed
primitives to create jobs from plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2773
diff
changeset
|
141 Plugins/Engine/PluginsJob.cpp |
2691 | 142 Plugins/Engine/PluginsManager.cpp |
143 ) | |
144 | |
145 list(APPEND ORTHANC_UNIT_TESTS_SOURCES | |
146 UnitTestsSources/PluginsTests.cpp | |
147 ) | |
148 endif() | |
149 | |
150 | |
151 if (CMAKE_COMPILER_IS_GNUCXX | |
152 AND NOT CMAKE_CROSSCOMPILING | |
3275 | 153 AND DCMTK_STATIC_VERSION STREQUAL "3.6.0") |
2691 | 154 # Add the "-pedantic" flag only on the Orthanc sources, and only if |
155 # cross-compiling DCMTK 3.6.0 | |
156 set(ORTHANC_ALL_SOURCES | |
157 ${ORTHANC_CORE_SOURCES_INTERNAL} | |
158 ${ORTHANC_DICOM_SOURCES_INTERNAL} | |
159 ${ORTHANC_SERVER_SOURCES} | |
160 ${ORTHANC_UNIT_TESTS_SOURCES} | |
161 Plugins/Samples/ServeFolders/Plugin.cpp | |
162 Plugins/Samples/ModalityWorklists/Plugin.cpp | |
163 OrthancServer/main.cpp | |
164 ) | |
165 | |
166 set_source_files_properties(${ORTHANC_ALL_SOURCES} | |
167 PROPERTIES COMPILE_FLAGS -pedantic | |
168 ) | |
169 endif() | |
170 | |
171 | |
172 ##################################################################### | |
173 ## Autogeneration of files | |
174 ##################################################################### | |
175 | |
176 set(ORTHANC_EMBEDDED_FILES | |
3094
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
177 CONFIGURATION_SAMPLE ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Configuration.json |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
178 DICOM_CONFORMANCE_STATEMENT ${CMAKE_CURRENT_SOURCE_DIR}/Resources/DicomConformanceStatement.txt |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
179 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
|
180 LUA_TOOLBOX ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Toolbox.lua |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
181 PREPARE_DATABASE ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/Database/PrepareDatabase.sql |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
182 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
|
183 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
|
184 |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
185 INSTALL_TRACK_ATTACHMENTS_SIZE |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
186 ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/Database/InstallTrackAttachmentsSize.sql |
2691 | 187 ) |
188 | |
189 if (STANDALONE_BUILD) | |
190 # We embed all the resources in the binaries for standalone builds | |
191 add_definitions(-DORTHANC_STANDALONE=1) | |
192 EmbedResources( | |
193 ${ORTHANC_EMBEDDED_FILES} | |
194 ORTHANC_EXPLORER ${CMAKE_CURRENT_SOURCE_DIR}/OrthancExplorer | |
195 ${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
|
196 ${LIBICU_RESOURCES} |
2691 | 197 ) |
198 else() | |
199 add_definitions( | |
200 -DORTHANC_STANDALONE=0 | |
201 -DORTHANC_PATH=\"${CMAKE_SOURCE_DIR}\" | |
202 ) | |
203 EmbedResources( | |
204 ${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
|
205 ${LIBICU_RESOURCES} |
2691 | 206 ) |
207 endif() | |
208 | |
209 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
210 execute_process( | |
211 COMMAND | |
212 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
213 ${ORTHANC_VERSION} Orthanc Orthanc.exe "Lightweight, RESTful DICOM server for medical imaging" | |
214 ERROR_VARIABLE Failure | |
215 OUTPUT_FILE ${AUTOGENERATED_DIR}/Orthanc.rc | |
216 ) | |
217 | |
218 if (Failure) | |
219 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
220 endif() | |
221 | |
222 list(APPEND ORTHANC_RESOURCES ${AUTOGENERATED_DIR}/Orthanc.rc) | |
223 endif() | |
224 | |
225 | |
226 | |
227 ##################################################################### | |
228 ## Configuration of the C/C++ macros | |
229 ##################################################################### | |
230 | |
231 if (ENABLE_PLUGINS) | |
232 add_definitions(-DORTHANC_ENABLE_PLUGINS=1) | |
233 else() | |
234 add_definitions(-DORTHANC_ENABLE_PLUGINS=0) | |
235 endif() | |
236 | |
237 | |
238 if (UNIT_TESTS_WITH_HTTP_CONNEXIONS) | |
239 add_definitions(-DUNIT_TESTS_WITH_HTTP_CONNEXIONS=1) | |
240 else() | |
241 add_definitions(-DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0) | |
242 endif() | |
243 | |
244 | |
245 add_definitions( | |
246 -DORTHANC_BUILD_UNIT_TESTS=1 | |
247 -DORTHANC_ENABLE_LOGGING_PLUGIN=0 | |
248 | |
249 # Macros for the plugins | |
250 -DHAS_ORTHANC_EXCEPTION=0 | |
251 -DMODALITY_WORKLISTS_VERSION="${ORTHANC_VERSION}" | |
252 -DSERVE_FOLDERS_VERSION="${ORTHANC_VERSION}" | |
253 ) | |
254 | |
255 | |
256 # Setup precompiled headers for Microsoft Visual Studio | |
257 | |
258 # WARNING: There must be NO MORE "add_definitions()", "include()" or | |
259 # "include_directories()" below, otherwise the generated precompiled | |
260 # headers might get broken! | |
261 | |
262 if (MSVC) | |
263 add_definitions(-DORTHANC_USE_PRECOMPILED_HEADERS=1) | |
264 | |
265 set(TMP | |
266 ${ORTHANC_CORE_SOURCES_INTERNAL} | |
267 ${ORTHANC_DICOM_SOURCES_INTERNAL} | |
268 ) | |
269 | |
270 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
271 "PrecompiledHeaders.h" "Core/PrecompiledHeaders.cpp" | |
272 TMP ORTHANC_CORE_PCH) | |
273 | |
274 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
275 "PrecompiledHeadersServer.h" "OrthancServer/PrecompiledHeadersServer.cpp" | |
276 ORTHANC_SERVER_SOURCES ORTHANC_SERVER_PCH) | |
277 | |
278 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
279 "PrecompiledHeadersUnitTests.h" "UnitTestsSources/PrecompiledHeadersUnitTests.cpp" | |
280 ORTHANC_UNIT_TESTS_SOURCES ORTHANC_UNIT_TESTS_PCH) | |
281 endif() | |
282 | |
283 | |
284 | |
285 ##################################################################### | |
286 ## Build the core of Orthanc | |
287 ##################################################################### | |
288 | |
289 # "CoreLibrary" contains all the third-party dependencies and the | |
290 # content of the "Core" folder | |
291 add_library(CoreLibrary | |
292 STATIC | |
293 ${ORTHANC_CORE_PCH} | |
294 ${ORTHANC_CORE_SOURCES} | |
295 ${ORTHANC_DICOM_SOURCES} | |
296 ${AUTOGENERATED_SOURCES} | |
3270 | 297 ) |
298 | |
299 if (LIBICU_LIBRARIES) | |
300 target_link_libraries(CoreLibrary ${LIBICU_LIBRARIES}) | |
301 endif() | |
2691 | 302 |
303 | |
304 ##################################################################### | |
305 ## Build the Orthanc server | |
306 ##################################################################### | |
307 | |
308 add_library(ServerLibrary | |
309 STATIC | |
310 ${ORTHANC_SERVER_PCH} | |
311 ${ORTHANC_SERVER_SOURCES} | |
312 ) | |
313 | |
314 # Ensure autogenerated code is built before building ServerLibrary | |
315 add_dependencies(ServerLibrary CoreLibrary) | |
316 | |
317 add_executable(Orthanc | |
318 OrthancServer/main.cpp | |
319 ${ORTHANC_RESOURCES} | |
320 ) | |
321 | |
322 target_link_libraries(Orthanc ServerLibrary CoreLibrary ${DCMTK_LIBRARIES}) | |
323 | |
324 install( | |
325 TARGETS Orthanc | |
326 RUNTIME DESTINATION sbin | |
327 ) | |
328 | |
329 | |
330 ##################################################################### | |
331 ## Build the unit tests | |
332 ##################################################################### | |
333 | |
334 add_executable(UnitTests | |
335 ${GOOGLE_TEST_SOURCES} | |
336 ${ORTHANC_UNIT_TESTS_PCH} | |
337 ${ORTHANC_UNIT_TESTS_SOURCES} | |
3326
b21d4cc8e5d1
speed up base64 decoding + added tests
Alain Mazy <alain@mazy.be>
parents:
3295
diff
changeset
|
338 ${BOOST_EXTENDED_SOURCES} |
2691 | 339 ) |
340 | |
341 target_link_libraries(UnitTests | |
342 ServerLibrary | |
343 CoreLibrary | |
344 ${DCMTK_LIBRARIES} | |
345 ${GOOGLE_TEST_LIBRARIES} | |
346 ) | |
347 | |
348 | |
349 ##################################################################### | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
350 ## 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
|
351 ##################################################################### |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
352 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
353 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
|
354 (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
|
355 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
|
356 ${BOOST_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
357 ${JSONCPP_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
358 ${LIBICONV_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
359 ${LIBICU_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
360 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
|
361 ) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
362 |
3271 | 363 if (LIBICU_LIBRARIES) |
364 target_link_libraries(ThirdPartyPlugins ${LIBICU_LIBRARIES}) | |
365 endif() | |
366 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
367 # 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
|
368 # 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
|
369 set_property( |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
370 TARGET ThirdPartyPlugins |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
371 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
|
372 ) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
373 endif() |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
374 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
375 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
376 ##################################################################### |
2691 | 377 ## Build the "ServeFolders" plugin |
378 ##################################################################### | |
379 | |
380 if (ENABLE_PLUGINS AND BUILD_SERVE_FOLDERS) | |
381 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
382 execute_process( | |
383 COMMAND | |
384 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
385 ${ORTHANC_VERSION} ServeFolders ServeFolders.dll "Orthanc plugin to serve additional folders" | |
386 ERROR_VARIABLE Failure | |
387 OUTPUT_FILE ${AUTOGENERATED_DIR}/ServeFolders.rc | |
388 ) | |
389 | |
390 if (Failure) | |
391 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
392 endif() | |
393 | |
394 list(APPEND SERVE_FOLDERS_RESOURCES ${AUTOGENERATED_DIR}/ServeFolders.rc) | |
395 endif() | |
396 | |
397 add_library(ServeFolders SHARED | |
398 Plugins/Samples/ServeFolders/Plugin.cpp | |
399 ${SERVE_FOLDERS_RESOURCES} | |
400 ) | |
401 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
402 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
|
403 |
2691 | 404 set_target_properties( |
405 ServeFolders PROPERTIES | |
406 VERSION ${ORTHANC_VERSION} | |
407 SOVERSION ${ORTHANC_VERSION} | |
408 ) | |
409 | |
410 install( | |
411 TARGETS ServeFolders | |
412 RUNTIME DESTINATION lib # Destination for Windows | |
413 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
414 ) | |
415 endif() | |
416 | |
417 | |
418 | |
419 ##################################################################### | |
420 ## Build the "ModalityWorklists" plugin | |
421 ##################################################################### | |
422 | |
423 if (ENABLE_PLUGINS AND BUILD_MODALITY_WORKLISTS) | |
424 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
425 execute_process( | |
426 COMMAND | |
427 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
428 ${ORTHANC_VERSION} ModalityWorklists ModalityWorklists.dll "Sample Orthanc plugin to serve modality worklists" | |
429 ERROR_VARIABLE Failure | |
430 OUTPUT_FILE ${AUTOGENERATED_DIR}/ModalityWorklists.rc | |
431 ) | |
432 | |
433 if (Failure) | |
434 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
435 endif() | |
436 | |
437 list(APPEND MODALITY_WORKLISTS_RESOURCES ${AUTOGENERATED_DIR}/ModalityWorklists.rc) | |
438 endif() | |
439 | |
440 add_library(ModalityWorklists SHARED | |
441 Plugins/Samples/ModalityWorklists/Plugin.cpp | |
442 ${MODALITY_WORKLISTS_RESOURCES} | |
443 ) | |
444 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
445 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
|
446 |
2691 | 447 set_target_properties( |
448 ModalityWorklists PROPERTIES | |
449 VERSION ${ORTHANC_VERSION} | |
450 SOVERSION ${ORTHANC_VERSION} | |
451 ) | |
452 | |
453 install( | |
454 TARGETS ModalityWorklists | |
455 RUNTIME DESTINATION lib # Destination for Windows | |
456 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
457 ) | |
458 endif() | |
459 | |
460 | |
461 | |
462 ##################################################################### | |
463 ## Build the companion tool to recover files compressed using Orthanc | |
464 ##################################################################### | |
465 | |
466 if (BUILD_RECOVER_COMPRESSED_FILE) | |
467 set(RECOVER_COMPRESSED_SOURCES | |
468 Resources/Samples/Tools/RecoverCompressedFile.cpp | |
469 ) | |
470 | |
471 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
472 execute_process( | |
473 COMMAND | |
474 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
475 ${ORTHANC_VERSION} OrthancRecoverCompressedFile OrthancRecoverCompressedFile.exe | |
476 "Lightweight, RESTful DICOM server for medical imaging" | |
477 ERROR_VARIABLE Failure | |
478 OUTPUT_FILE ${AUTOGENERATED_DIR}/OrthancRecoverCompressedFile.rc | |
479 ) | |
480 | |
481 if (Failure) | |
482 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
483 endif() | |
484 | |
485 list(APPEND RECOVER_COMPRESSED_SOURCES | |
486 ${AUTOGENERATED_DIR}/OrthancRecoverCompressedFile.rc | |
487 ) | |
488 endif() | |
489 | |
490 add_executable(OrthancRecoverCompressedFile ${RECOVER_COMPRESSED_SOURCES}) | |
491 | |
492 target_link_libraries(OrthancRecoverCompressedFile CoreLibrary) | |
493 | |
494 install( | |
495 TARGETS OrthancRecoverCompressedFile | |
496 RUNTIME DESTINATION bin | |
497 ) | |
498 endif() | |
499 | |
500 | |
501 | |
502 ##################################################################### | |
503 ## Generate the documentation if Doxygen is present | |
504 ##################################################################### | |
505 | |
506 find_package(Doxygen) | |
507 if (DOXYGEN_FOUND) | |
508 configure_file( | |
509 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen | |
510 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
511 @ONLY) | |
512 | |
513 configure_file( | |
514 ${CMAKE_SOURCE_DIR}/Resources/OrthancPlugin.doxygen | |
515 ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen | |
516 @ONLY) | |
517 | |
518 add_custom_target(doc | |
519 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
520 COMMENT "Generating internal documentation with Doxygen" VERBATIM | |
521 ) | |
522 | |
523 add_custom_command(TARGET Orthanc | |
524 POST_BUILD | |
525 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen | |
526 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} | |
527 COMMENT "Generating plugin documentation with Doxygen" VERBATIM | |
528 ) | |
529 | |
530 install( | |
531 DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/OrthancPluginDocumentation/doc/ | |
532 DESTINATION share/doc/orthanc/OrthancPlugin | |
533 ) | |
534 else() | |
535 message("Doxygen not found. The documentation will not be built.") | |
536 endif() | |
537 | |
538 | |
539 | |
540 ##################################################################### | |
541 ## Install the plugin SDK | |
542 ##################################################################### | |
543 | |
544 if (ENABLE_PLUGINS) | |
545 install( | |
546 FILES | |
547 Plugins/Include/orthanc/OrthancCPlugin.h | |
548 Plugins/Include/orthanc/OrthancCDatabasePlugin.h | |
549 DESTINATION include/orthanc | |
550 ) | |
551 endif() | |
552 | |
553 | |
554 | |
555 ##################################################################### | |
556 ## Prepare the "uninstall" target | |
557 ## http://www.cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F | |
558 ##################################################################### | |
559 | |
560 configure_file( | |
561 "${CMAKE_CURRENT_SOURCE_DIR}/Resources/CMake/Uninstall.cmake.in" | |
562 "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | |
563 IMMEDIATE @ONLY) | |
564 | |
565 add_custom_target(uninstall | |
566 COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) |