Mercurial > hg > orthanc
annotate CMakeLists.txt @ 3317:56d7f3d50c89 Orthanc-1.5.6
Orthanc-1.5.6
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 01 Mar 2019 14:53:10 +0100 |
parents | 1b57023af28f |
children | b21d4cc8e5d1 |
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 |
1723cbba55c7
testing DicomTagConstraint
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2892
diff
changeset
|
126 UnitTestsSources/UnitTestsMain.cpp |
2691 | 127 UnitTestsSources/VersionsTests.cpp |
128 UnitTestsSources/ZipTests.cpp | |
129 ) | |
130 | |
131 | |
132 if (ENABLE_PLUGINS) | |
3074
495c5edce708
new extension for database plugin SDK: lookupResources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3071
diff
changeset
|
133 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
|
134 |
2691 | 135 list(APPEND ORTHANC_SERVER_SOURCES |
136 Plugins/Engine/OrthancPluginDatabase.cpp | |
137 Plugins/Engine/OrthancPlugins.cpp | |
138 Plugins/Engine/PluginsEnumerations.cpp | |
139 Plugins/Engine/PluginsErrorDictionary.cpp | |
2808
37583cd183ed
primitives to create jobs from plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2773
diff
changeset
|
140 Plugins/Engine/PluginsJob.cpp |
2691 | 141 Plugins/Engine/PluginsManager.cpp |
142 ) | |
143 | |
144 list(APPEND ORTHANC_UNIT_TESTS_SOURCES | |
145 UnitTestsSources/PluginsTests.cpp | |
146 ) | |
147 endif() | |
148 | |
149 | |
150 if (CMAKE_COMPILER_IS_GNUCXX | |
151 AND NOT CMAKE_CROSSCOMPILING | |
3275 | 152 AND DCMTK_STATIC_VERSION STREQUAL "3.6.0") |
2691 | 153 # Add the "-pedantic" flag only on the Orthanc sources, and only if |
154 # cross-compiling DCMTK 3.6.0 | |
155 set(ORTHANC_ALL_SOURCES | |
156 ${ORTHANC_CORE_SOURCES_INTERNAL} | |
157 ${ORTHANC_DICOM_SOURCES_INTERNAL} | |
158 ${ORTHANC_SERVER_SOURCES} | |
159 ${ORTHANC_UNIT_TESTS_SOURCES} | |
160 Plugins/Samples/ServeFolders/Plugin.cpp | |
161 Plugins/Samples/ModalityWorklists/Plugin.cpp | |
162 OrthancServer/main.cpp | |
163 ) | |
164 | |
165 set_source_files_properties(${ORTHANC_ALL_SOURCES} | |
166 PROPERTIES COMPILE_FLAGS -pedantic | |
167 ) | |
168 endif() | |
169 | |
170 | |
171 ##################################################################### | |
172 ## Autogeneration of files | |
173 ##################################################################### | |
174 | |
175 set(ORTHANC_EMBEDDED_FILES | |
3094
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
176 CONFIGURATION_SAMPLE ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Configuration.json |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
177 DICOM_CONFORMANCE_STATEMENT ${CMAKE_CURRENT_SOURCE_DIR}/Resources/DicomConformanceStatement.txt |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
178 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
|
179 LUA_TOOLBOX ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Toolbox.lua |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
180 PREPARE_DATABASE ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/Database/PrepareDatabase.sql |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
181 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
|
182 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
|
183 |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
184 INSTALL_TRACK_ATTACHMENTS_SIZE |
61da3c9b4121
cont reorganization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3093
diff
changeset
|
185 ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/Database/InstallTrackAttachmentsSize.sql |
2691 | 186 ) |
187 | |
188 if (STANDALONE_BUILD) | |
189 # We embed all the resources in the binaries for standalone builds | |
190 add_definitions(-DORTHANC_STANDALONE=1) | |
191 EmbedResources( | |
192 ${ORTHANC_EMBEDDED_FILES} | |
193 ORTHANC_EXPLORER ${CMAKE_CURRENT_SOURCE_DIR}/OrthancExplorer | |
194 ${DCMTK_DICTIONARIES} | |
195 ) | |
196 else() | |
197 add_definitions( | |
198 -DORTHANC_STANDALONE=0 | |
199 -DORTHANC_PATH=\"${CMAKE_SOURCE_DIR}\" | |
200 ) | |
201 EmbedResources( | |
202 ${ORTHANC_EMBEDDED_FILES} | |
203 ) | |
204 endif() | |
205 | |
206 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
207 execute_process( | |
208 COMMAND | |
209 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
210 ${ORTHANC_VERSION} Orthanc Orthanc.exe "Lightweight, RESTful DICOM server for medical imaging" | |
211 ERROR_VARIABLE Failure | |
212 OUTPUT_FILE ${AUTOGENERATED_DIR}/Orthanc.rc | |
213 ) | |
214 | |
215 if (Failure) | |
216 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
217 endif() | |
218 | |
219 list(APPEND ORTHANC_RESOURCES ${AUTOGENERATED_DIR}/Orthanc.rc) | |
220 endif() | |
221 | |
222 | |
223 | |
224 ##################################################################### | |
225 ## Configuration of the C/C++ macros | |
226 ##################################################################### | |
227 | |
228 if (ENABLE_PLUGINS) | |
229 add_definitions(-DORTHANC_ENABLE_PLUGINS=1) | |
230 else() | |
231 add_definitions(-DORTHANC_ENABLE_PLUGINS=0) | |
232 endif() | |
233 | |
234 | |
235 if (UNIT_TESTS_WITH_HTTP_CONNEXIONS) | |
236 add_definitions(-DUNIT_TESTS_WITH_HTTP_CONNEXIONS=1) | |
237 else() | |
238 add_definitions(-DUNIT_TESTS_WITH_HTTP_CONNEXIONS=0) | |
239 endif() | |
240 | |
241 | |
242 add_definitions( | |
243 -DORTHANC_BUILD_UNIT_TESTS=1 | |
244 -DORTHANC_ENABLE_LOGGING_PLUGIN=0 | |
245 | |
246 # Macros for the plugins | |
247 -DHAS_ORTHANC_EXCEPTION=0 | |
248 -DMODALITY_WORKLISTS_VERSION="${ORTHANC_VERSION}" | |
249 -DSERVE_FOLDERS_VERSION="${ORTHANC_VERSION}" | |
250 ) | |
251 | |
252 | |
253 # Setup precompiled headers for Microsoft Visual Studio | |
254 | |
255 # WARNING: There must be NO MORE "add_definitions()", "include()" or | |
256 # "include_directories()" below, otherwise the generated precompiled | |
257 # headers might get broken! | |
258 | |
259 if (MSVC) | |
260 add_definitions(-DORTHANC_USE_PRECOMPILED_HEADERS=1) | |
261 | |
262 set(TMP | |
263 ${ORTHANC_CORE_SOURCES_INTERNAL} | |
264 ${ORTHANC_DICOM_SOURCES_INTERNAL} | |
265 ) | |
266 | |
267 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
268 "PrecompiledHeaders.h" "Core/PrecompiledHeaders.cpp" | |
269 TMP ORTHANC_CORE_PCH) | |
270 | |
271 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
272 "PrecompiledHeadersServer.h" "OrthancServer/PrecompiledHeadersServer.cpp" | |
273 ORTHANC_SERVER_SOURCES ORTHANC_SERVER_PCH) | |
274 | |
275 ADD_VISUAL_STUDIO_PRECOMPILED_HEADERS( | |
276 "PrecompiledHeadersUnitTests.h" "UnitTestsSources/PrecompiledHeadersUnitTests.cpp" | |
277 ORTHANC_UNIT_TESTS_SOURCES ORTHANC_UNIT_TESTS_PCH) | |
278 endif() | |
279 | |
280 | |
281 | |
282 ##################################################################### | |
283 ## Build the core of Orthanc | |
284 ##################################################################### | |
285 | |
286 # "CoreLibrary" contains all the third-party dependencies and the | |
287 # content of the "Core" folder | |
288 add_library(CoreLibrary | |
289 STATIC | |
290 ${ORTHANC_CORE_PCH} | |
291 ${ORTHANC_CORE_SOURCES} | |
292 ${ORTHANC_DICOM_SOURCES} | |
293 ${AUTOGENERATED_SOURCES} | |
3270 | 294 ) |
295 | |
296 if (LIBICU_LIBRARIES) | |
297 target_link_libraries(CoreLibrary ${LIBICU_LIBRARIES}) | |
298 endif() | |
2691 | 299 |
300 | |
301 ##################################################################### | |
302 ## Build the Orthanc server | |
303 ##################################################################### | |
304 | |
305 add_library(ServerLibrary | |
306 STATIC | |
307 ${ORTHANC_SERVER_PCH} | |
308 ${ORTHANC_SERVER_SOURCES} | |
309 ) | |
310 | |
311 # Ensure autogenerated code is built before building ServerLibrary | |
312 add_dependencies(ServerLibrary CoreLibrary) | |
313 | |
314 add_executable(Orthanc | |
315 OrthancServer/main.cpp | |
316 ${ORTHANC_RESOURCES} | |
317 ) | |
318 | |
319 target_link_libraries(Orthanc ServerLibrary CoreLibrary ${DCMTK_LIBRARIES}) | |
320 | |
321 install( | |
322 TARGETS Orthanc | |
323 RUNTIME DESTINATION sbin | |
324 ) | |
325 | |
326 | |
327 ##################################################################### | |
328 ## Build the unit tests | |
329 ##################################################################### | |
330 | |
331 add_executable(UnitTests | |
332 ${GOOGLE_TEST_SOURCES} | |
333 ${ORTHANC_UNIT_TESTS_PCH} | |
334 ${ORTHANC_UNIT_TESTS_SOURCES} | |
335 ) | |
336 | |
337 target_link_libraries(UnitTests | |
338 ServerLibrary | |
339 CoreLibrary | |
340 ${DCMTK_LIBRARIES} | |
341 ${GOOGLE_TEST_LIBRARIES} | |
342 ) | |
343 | |
344 | |
345 ##################################################################### | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
346 ## 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
|
347 ##################################################################### |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
348 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
349 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
|
350 (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
|
351 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
|
352 ${BOOST_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
353 ${JSONCPP_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
354 ${LIBICONV_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
355 ${LIBICU_SOURCES} |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
356 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
|
357 ) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
358 |
3271 | 359 if (LIBICU_LIBRARIES) |
360 target_link_libraries(ThirdPartyPlugins ${LIBICU_LIBRARIES}) | |
361 endif() | |
362 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
363 # 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
|
364 # 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
|
365 set_property( |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
366 TARGET ThirdPartyPlugins |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
367 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
|
368 ) |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
369 endif() |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
370 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
371 |
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
372 ##################################################################### |
2691 | 373 ## Build the "ServeFolders" plugin |
374 ##################################################################### | |
375 | |
376 if (ENABLE_PLUGINS AND BUILD_SERVE_FOLDERS) | |
377 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
378 execute_process( | |
379 COMMAND | |
380 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
381 ${ORTHANC_VERSION} ServeFolders ServeFolders.dll "Orthanc plugin to serve additional folders" | |
382 ERROR_VARIABLE Failure | |
383 OUTPUT_FILE ${AUTOGENERATED_DIR}/ServeFolders.rc | |
384 ) | |
385 | |
386 if (Failure) | |
387 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
388 endif() | |
389 | |
390 list(APPEND SERVE_FOLDERS_RESOURCES ${AUTOGENERATED_DIR}/ServeFolders.rc) | |
391 endif() | |
392 | |
393 add_library(ServeFolders SHARED | |
394 Plugins/Samples/ServeFolders/Plugin.cpp | |
395 ${SERVE_FOLDERS_RESOURCES} | |
396 ) | |
397 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
398 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
|
399 |
2691 | 400 set_target_properties( |
401 ServeFolders PROPERTIES | |
402 VERSION ${ORTHANC_VERSION} | |
403 SOVERSION ${ORTHANC_VERSION} | |
404 ) | |
405 | |
406 install( | |
407 TARGETS ServeFolders | |
408 RUNTIME DESTINATION lib # Destination for Windows | |
409 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
410 ) | |
411 endif() | |
412 | |
413 | |
414 | |
415 ##################################################################### | |
416 ## Build the "ModalityWorklists" plugin | |
417 ##################################################################### | |
418 | |
419 if (ENABLE_PLUGINS AND BUILD_MODALITY_WORKLISTS) | |
420 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
421 execute_process( | |
422 COMMAND | |
423 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
424 ${ORTHANC_VERSION} ModalityWorklists ModalityWorklists.dll "Sample Orthanc plugin to serve modality worklists" | |
425 ERROR_VARIABLE Failure | |
426 OUTPUT_FILE ${AUTOGENERATED_DIR}/ModalityWorklists.rc | |
427 ) | |
428 | |
429 if (Failure) | |
430 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
431 endif() | |
432 | |
433 list(APPEND MODALITY_WORKLISTS_RESOURCES ${AUTOGENERATED_DIR}/ModalityWorklists.rc) | |
434 endif() | |
435 | |
436 add_library(ModalityWorklists SHARED | |
437 Plugins/Samples/ModalityWorklists/Plugin.cpp | |
438 ${MODALITY_WORKLISTS_RESOURCES} | |
439 ) | |
440 | |
3233
47fbb0467a62
Build a static library to share code between the plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3187
diff
changeset
|
441 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
|
442 |
2691 | 443 set_target_properties( |
444 ModalityWorklists PROPERTIES | |
445 VERSION ${ORTHANC_VERSION} | |
446 SOVERSION ${ORTHANC_VERSION} | |
447 ) | |
448 | |
449 install( | |
450 TARGETS ModalityWorklists | |
451 RUNTIME DESTINATION lib # Destination for Windows | |
452 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
453 ) | |
454 endif() | |
455 | |
456 | |
457 | |
458 ##################################################################### | |
459 ## Build the companion tool to recover files compressed using Orthanc | |
460 ##################################################################### | |
461 | |
462 if (BUILD_RECOVER_COMPRESSED_FILE) | |
463 set(RECOVER_COMPRESSED_SOURCES | |
464 Resources/Samples/Tools/RecoverCompressedFile.cpp | |
465 ) | |
466 | |
467 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
468 execute_process( | |
469 COMMAND | |
470 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py | |
471 ${ORTHANC_VERSION} OrthancRecoverCompressedFile OrthancRecoverCompressedFile.exe | |
472 "Lightweight, RESTful DICOM server for medical imaging" | |
473 ERROR_VARIABLE Failure | |
474 OUTPUT_FILE ${AUTOGENERATED_DIR}/OrthancRecoverCompressedFile.rc | |
475 ) | |
476 | |
477 if (Failure) | |
478 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
479 endif() | |
480 | |
481 list(APPEND RECOVER_COMPRESSED_SOURCES | |
482 ${AUTOGENERATED_DIR}/OrthancRecoverCompressedFile.rc | |
483 ) | |
484 endif() | |
485 | |
486 add_executable(OrthancRecoverCompressedFile ${RECOVER_COMPRESSED_SOURCES}) | |
487 | |
488 target_link_libraries(OrthancRecoverCompressedFile CoreLibrary) | |
489 | |
490 install( | |
491 TARGETS OrthancRecoverCompressedFile | |
492 RUNTIME DESTINATION bin | |
493 ) | |
494 endif() | |
495 | |
496 | |
497 | |
498 ##################################################################### | |
499 ## Generate the documentation if Doxygen is present | |
500 ##################################################################### | |
501 | |
502 find_package(Doxygen) | |
503 if (DOXYGEN_FOUND) | |
504 configure_file( | |
505 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen | |
506 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
507 @ONLY) | |
508 | |
509 configure_file( | |
510 ${CMAKE_SOURCE_DIR}/Resources/OrthancPlugin.doxygen | |
511 ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen | |
512 @ONLY) | |
513 | |
514 add_custom_target(doc | |
515 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
516 COMMENT "Generating internal documentation with Doxygen" VERBATIM | |
517 ) | |
518 | |
519 add_custom_command(TARGET Orthanc | |
520 POST_BUILD | |
521 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/OrthancPlugin.doxygen | |
522 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} | |
523 COMMENT "Generating plugin documentation with Doxygen" VERBATIM | |
524 ) | |
525 | |
526 install( | |
527 DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/OrthancPluginDocumentation/doc/ | |
528 DESTINATION share/doc/orthanc/OrthancPlugin | |
529 ) | |
530 else() | |
531 message("Doxygen not found. The documentation will not be built.") | |
532 endif() | |
533 | |
534 | |
535 | |
536 ##################################################################### | |
537 ## Install the plugin SDK | |
538 ##################################################################### | |
539 | |
540 if (ENABLE_PLUGINS) | |
541 install( | |
542 FILES | |
543 Plugins/Include/orthanc/OrthancCPlugin.h | |
544 Plugins/Include/orthanc/OrthancCDatabasePlugin.h | |
545 DESTINATION include/orthanc | |
546 ) | |
547 endif() | |
548 | |
549 | |
550 | |
551 ##################################################################### | |
552 ## Prepare the "uninstall" target | |
553 ## http://www.cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F | |
554 ##################################################################### | |
555 | |
556 configure_file( | |
557 "${CMAKE_CURRENT_SOURCE_DIR}/Resources/CMake/Uninstall.cmake.in" | |
558 "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | |
559 IMMEDIATE @ONLY) | |
560 | |
561 add_custom_target(uninstall | |
562 COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) |