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