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