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