Mercurial > hg > orthanc
annotate CMakeLists.txt @ 633:e207b33216db
merge
author | jodogne |
---|---|
date | Tue, 29 Oct 2013 09:04:25 +0100 |
parents | b8322fe3bdba 17815b9d4280 |
children | d775a3cb5a06 |
rev | line source |
---|---|
12 | 1 cmake_minimum_required(VERSION 2.8) |
2 | |
57 | 3 project(Orthanc) |
134 | 4 |
135 | 5 # Version of the build, should always be "mainline" except in release branches |
631
fc6ad5b97219
fix mainline version
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
629
diff
changeset
|
6 set(ORTHANC_VERSION "mainline") |
135 | 7 |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
8 |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
9 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
10 ## CMake parameters tunable at the command line |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
11 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
12 |
134 | 13 # Parameters of the build |
14 SET(STATIC_BUILD ON CACHE BOOL "Static build of the third-party libraries (necessary for Windows)") | |
447
e0c398d4721e
standalone build is the default
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
423
diff
changeset
|
15 SET(STANDALONE_BUILD ON CACHE BOOL "Standalone build (all the resources are embedded, necessary for releases)") |
134 | 16 SET(ENABLE_SSL ON CACHE BOOL "Include support for SSL") |
17 SET(BUILD_UNIT_TESTS ON CACHE BOOL "Build the unit tests") | |
543 | 18 SET(BUILD_CLIENT_LIBRARY ON CACHE BOOL "Build the client library") |
494
012b63028085
CMake parameter for the location of DCMTK dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
491
diff
changeset
|
19 SET(DCMTK_DICTIONARY_DIR "/usr/share/dcmtk" CACHE PATH "Directory containing the DCMTK dictionaries \"dicom.dic\" and \"private.dic\" (ignored in standalone builds)") |
135 | 20 |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
21 # Advanced parameters to fine-tune linking against system libraries |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
22 SET(USE_DYNAMIC_JSONCPP OFF CACHE BOOL "Use the dynamic version of JsonCpp") |
134 | 23 SET(USE_DYNAMIC_GOOGLE_LOG ON CACHE BOOL "Use the dynamic version of Google Log") |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
24 SET(USE_DYNAMIC_GOOGLE_TEST ON CACHE BOOL "Use the dynamic version of Google Test") |
147 | 25 SET(USE_DYNAMIC_SQLITE ON CACHE BOOL "Use the dynamic version of SQLite") |
389
9aa8ecbeeeb9
dynamically linking against Mongoose
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
383
diff
changeset
|
26 SET(USE_DYNAMIC_MONGOOSE OFF CACHE BOOL "Use the dynamic version of Mongoose") |
382 | 27 SET(USE_DYNAMIC_LUA OFF CACHE BOOL "Use the dynamic version of Lua") |
626
b8322fe3bdba
possibility to disable the use of system dcmtk or boost
jodogne
parents:
619
diff
changeset
|
28 SET(USE_SYSTEM_DCMTK ON CACHE BOOL "Use the system version of DCMTK") |
b8322fe3bdba
possibility to disable the use of system dcmtk or boost
jodogne
parents:
619
diff
changeset
|
29 SET(USE_SYSTEM_BOOST ON CACHE BOOL "Use the system version of Boost") |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
30 SET(DEBIAN_USE_GTEST_SOURCE_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (Debian only)") |
134 | 31 |
135 | 32 mark_as_advanced(USE_DYNAMIC_JSONCPP) |
33 mark_as_advanced(USE_DYNAMIC_GOOGLE_LOG) | |
34 mark_as_advanced(USE_DYNAMIC_GOOGLE_TEST) | |
147 | 35 mark_as_advanced(USE_DYNAMIC_SQLITE) |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
36 mark_as_advanced(DEBIAN_USE_GTEST_SOURCE_PACKAGE) |
134 | 37 |
38 # Some basic inclusions | |
12 | 39 include(CheckIncludeFiles) |
101 | 40 include(CheckIncludeFileCXX) |
389
9aa8ecbeeeb9
dynamically linking against Mongoose
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
383
diff
changeset
|
41 include(CheckLibraryExists) |
134 | 42 include(${CMAKE_SOURCE_DIR}/Resources/CMake/AutoGeneratedCode.cmake) |
43 include(${CMAKE_SOURCE_DIR}/Resources/CMake/DownloadPackage.cmake) | |
44 include(${CMAKE_SOURCE_DIR}/Resources/CMake/Compiler.cmake) | |
133 | 45 |
506
6e4bd06c17c5
the wrapper is working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
496
diff
changeset
|
46 set(ORTHANC_ROOT ${CMAKE_SOURCE_DIR}) |
6e4bd06c17c5
the wrapper is working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
496
diff
changeset
|
47 |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
48 |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
49 |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
50 |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
51 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
52 ## Inclusion of third-party dependencies |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
53 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
54 |
134 | 55 # Configuration of the standalone builds |
569 | 56 if (CMAKE_CROSSCOMPILING) |
134 | 57 # Cross-compilation implies the standalone build |
19 | 58 SET(STANDALONE_BUILD ON) |
59 endif() | |
60 | |
134 | 61 # Prepare the third-party dependencies |
22 | 62 SET(THIRD_PARTY_SOURCES |
63 ${CMAKE_SOURCE_DIR}/Resources/md5/md5.c | |
24 | 64 ${CMAKE_SOURCE_DIR}/Resources/base64/base64.cpp |
22 | 65 ) |
26 | 66 |
102
7593b57dc1bf
switch to google log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
67 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleLogConfiguration.cmake) |
7593b57dc1bf
switch to google log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
68 |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
69 if (${ENABLE_SSL}) |
57 | 70 add_definitions(-DORTHANC_SSL_ENABLED=1) |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
71 include(${CMAKE_SOURCE_DIR}/Resources/CMake/OpenSslConfiguration.cmake) |
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
72 else() |
57 | 73 add_definitions(-DORTHANC_SSL_ENABLED=0) |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
74 endif() |
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
75 |
12 | 76 include(${CMAKE_SOURCE_DIR}/Resources/CMake/BoostConfiguration.cmake) |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
77 include(${CMAKE_SOURCE_DIR}/Resources/CMake/DcmtkConfiguration.cmake) |
12 | 78 include(${CMAKE_SOURCE_DIR}/Resources/CMake/MongooseConfiguration.cmake) |
79 include(${CMAKE_SOURCE_DIR}/Resources/CMake/ZlibConfiguration.cmake) | |
80 include(${CMAKE_SOURCE_DIR}/Resources/CMake/SQLiteConfiguration.cmake) | |
81 include(${CMAKE_SOURCE_DIR}/Resources/CMake/JsonCppConfiguration.cmake) | |
82 include(${CMAKE_SOURCE_DIR}/Resources/CMake/LibCurlConfiguration.cmake) | |
83 include(${CMAKE_SOURCE_DIR}/Resources/CMake/LibPngConfiguration.cmake) | |
382 | 84 include(${CMAKE_SOURCE_DIR}/Resources/CMake/LuaConfiguration.cmake) |
12 | 85 |
86 | |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
87 |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
88 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
89 ## Autogeneration of files |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
90 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
91 |
291
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
92 # Prepare the embedded files |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
93 set(EMBEDDED_FILES |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
94 PREPARE_DATABASE ${CMAKE_CURRENT_SOURCE_DIR}/OrthancServer/PrepareDatabase.sql |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
95 CONFIGURATION_SAMPLE ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Configuration.json |
384 | 96 LUA_TOOLBOX ${CMAKE_CURRENT_SOURCE_DIR}/Resources/Toolbox.lua |
291
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
97 ) |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
98 |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
99 if (${STANDALONE_BUILD}) |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
100 # We embed all the resources in the binaries for standalone builds |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
101 add_definitions(-DORTHANC_STANDALONE=1) |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
102 EmbedResources( |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
103 ${EMBEDDED_FILES} |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
104 ORTHANC_EXPLORER ${CMAKE_CURRENT_SOURCE_DIR}/OrthancExplorer |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
105 ${DCMTK_DICTIONARIES} |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
106 ) |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
107 else() |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
108 add_definitions( |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
109 -DORTHANC_STANDALONE=0 |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
110 -DORTHANC_PATH=\"${CMAKE_SOURCE_DIR}\" |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
111 ) |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
112 EmbedResources( |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
113 ${EMBEDDED_FILES} |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
114 ) |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
115 endif() |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
116 |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
117 |
4d7469f72a0b
embedding of dicom dictionaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
289
diff
changeset
|
118 |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
119 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
120 ## Build the core of Orthanc |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
121 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
122 |
600 | 123 add_definitions( |
124 -DORTHANC_VERSION="${ORTHANC_VERSION}" | |
125 ) | |
126 | |
520 | 127 list(LENGTH OPENSSL_SOURCES OPENSSL_SOURCES_LENGTH) |
128 if (${OPENSSL_SOURCES_LENGTH} GREATER 0) | |
129 add_library(OpenSSL STATIC ${OPENSSL_SOURCES}) | |
130 endif() | |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
131 |
12 | 132 add_library(CoreLibrary |
133 STATIC | |
134 ${AUTOGENERATED_SOURCES} | |
135 ${THIRD_PARTY_SOURCES} | |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
136 ${CURL_SOURCES} |
12 | 137 |
284
06aa7b7b6723
implementation of a single-threaded cache mechanism
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
283
diff
changeset
|
138 Core/Cache/MemoryCache.cpp |
12 | 139 Core/ChunkedBuffer.cpp |
140 Core/Compression/BufferCompressor.cpp | |
141 Core/Compression/ZlibCompressor.cpp | |
81 | 142 Core/Compression/ZipWriter.cpp |
247
c9b3ba0fd140
path management in zip files
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
246
diff
changeset
|
143 Core/Compression/HierarchicalZipWriter.cpp |
57 | 144 Core/OrthancException.cpp |
12 | 145 Core/DicomFormat/DicomArray.cpp |
146 Core/DicomFormat/DicomMap.cpp | |
147 Core/DicomFormat/DicomTag.cpp | |
79 | 148 Core/DicomFormat/DicomIntegerPixelAccessor.cpp |
178 | 149 Core/DicomFormat/DicomInstanceHasher.cpp |
477 | 150 Core/Enumerations.cpp |
234 | 151 Core/FileStorage/FileStorage.cpp |
221
e7432706b354
accessors to storage
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
213
diff
changeset
|
152 Core/FileStorage/StorageAccessor.cpp |
e7432706b354
accessors to storage
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
213
diff
changeset
|
153 Core/FileStorage/CompressedFileStorageAccessor.cpp |
232
5368bbe813cf
refactoring of attachments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
229
diff
changeset
|
154 Core/FileStorage/FileStorageAccessor.cpp |
476 | 155 Core/HttpClient.cpp |
12 | 156 Core/HttpServer/EmbeddedResourceHttpHandler.cpp |
157 Core/HttpServer/FilesystemHttpHandler.cpp | |
158 Core/HttpServer/HttpHandler.cpp | |
159 Core/HttpServer/HttpOutput.cpp | |
160 Core/HttpServer/MongooseServer.cpp | |
208 | 161 Core/HttpServer/HttpFileSender.cpp |
162 Core/HttpServer/FilesystemHttpSender.cpp | |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
163 Core/RestApi/RestApiPath.cpp |
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
164 Core/RestApi/RestApiOutput.cpp |
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
165 Core/RestApi/RestApi.cpp |
12 | 166 Core/MultiThreading/BagOfRunnablesBySteps.cpp |
450 | 167 Core/MultiThreading/SharedMessageQueue.cpp |
458
84966299c8f8
ThreadedCommandProcessor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
455
diff
changeset
|
168 Core/MultiThreading/ThreadedCommandProcessor.cpp |
479
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
477
diff
changeset
|
169 Core/MultiThreading/ArrayFilledByThreads.cpp |
455 | 170 Core/FileFormats/PngReader.cpp |
454 | 171 Core/FileFormats/PngWriter.cpp |
12 | 172 Core/SQLite/Connection.cpp |
173 Core/SQLite/FunctionContext.cpp | |
174 Core/SQLite/Statement.cpp | |
175 Core/SQLite/StatementId.cpp | |
176 Core/SQLite/StatementReference.cpp | |
177 Core/SQLite/Transaction.cpp | |
178 Core/Toolbox.cpp | |
179 Core/Uuid.cpp | |
386 | 180 Core/Lua/LuaContext.cpp |
181 Core/Lua/LuaFunctionCall.cpp | |
479
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
477
diff
changeset
|
182 |
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
477
diff
changeset
|
183 OrthancCppClient/OrthancConnection.cpp |
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
477
diff
changeset
|
184 OrthancCppClient/Study.cpp |
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
477
diff
changeset
|
185 OrthancCppClient/Series.cpp |
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
477
diff
changeset
|
186 OrthancCppClient/Instance.cpp |
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
477
diff
changeset
|
187 OrthancCppClient/Patient.cpp |
12 | 188 ) |
189 | |
135 | 190 |
546 | 191 ##################################################################### |
192 ## Build the Orthanc server | |
193 ##################################################################### | |
12 | 194 |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
195 add_library(ServerLibrary |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
196 STATIC |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
197 ${DCMTK_SOURCES} |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
198 OrthancServer/DicomProtocol/DicomFindAnswers.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
199 OrthancServer/DicomProtocol/DicomServer.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
200 OrthancServer/DicomProtocol/DicomUserConnection.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
201 OrthancServer/FromDcmtkBridge.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
202 OrthancServer/Internals/CommandDispatcher.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
203 OrthancServer/Internals/FindScp.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
204 OrthancServer/Internals/MoveScp.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
205 OrthancServer/Internals/StoreScp.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
206 OrthancServer/OrthancInitialization.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
207 OrthancServer/OrthancRestApi.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
208 OrthancServer/ServerIndex.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
209 OrthancServer/ToDcmtkBridge.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
210 OrthancServer/DatabaseWrapper.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
211 OrthancServer/ServerContext.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
212 OrthancServer/ServerEnumerations.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
213 OrthancServer/ServerToolbox.cpp |
565
c931ac02db82
refactoring of find class
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
549
diff
changeset
|
214 OrthancServer/OrthancFindRequestHandler.cpp |
619 | 215 OrthancServer/OrthancMoveRequestHandler.cpp |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
216 ) |
12 | 217 |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
218 # Ensure autogenerated code is built before building ServerLibrary |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
219 add_dependencies(ServerLibrary CoreLibrary) |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
220 |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
221 add_executable(Orthanc |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
222 OrthancServer/main.cpp |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
223 ) |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
224 |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
225 target_link_libraries(Orthanc ServerLibrary CoreLibrary) |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
226 |
546 | 227 if (${OPENSSL_SOURCES_LENGTH} GREATER 0) |
228 target_link_libraries(Orthanc OpenSSL) | |
229 endif() | |
230 | |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
231 install( |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
232 TARGETS Orthanc |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
233 RUNTIME DESTINATION bin |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
234 ) |
261
9e24c33c3361
possibility to compile just the CoreLibrary
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
235 |
546 | 236 |
237 | |
238 ##################################################################### | |
239 ## Build the unit tests if required | |
240 ##################################################################### | |
241 | |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
242 if (BUILD_UNIT_TESTS) |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
243 add_definitions(-DORTHANC_BUILD_UNIT_TESTS=1) |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
244 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleTestConfiguration.cmake) |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
245 add_executable(UnitTests |
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
246 ${GTEST_SOURCES} |
632
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
247 UnitTestsSources/FileStorage.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
248 UnitTestsSources/MemoryCache.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
249 UnitTestsSources/Png.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
250 UnitTestsSources/RestApi.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
251 UnitTestsSources/SQLite.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
252 UnitTestsSources/SQLiteChromium.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
253 UnitTestsSources/ServerIndex.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
254 UnitTestsSources/Versions.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
255 UnitTestsSources/Zip.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
256 UnitTestsSources/Lua.cpp |
17815b9d4280
rename the UnitTests directory to avoid clashes in filenames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
631
diff
changeset
|
257 UnitTestsSources/main.cpp |
261
9e24c33c3361
possibility to compile just the CoreLibrary
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
258 ) |
517
b2b56b4e33b0
simplifications to cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
494
diff
changeset
|
259 target_link_libraries(UnitTests ServerLibrary CoreLibrary) |
520 | 260 |
261 if (${OPENSSL_SOURCES_LENGTH} GREATER 0) | |
546 | 262 target_link_libraries(UnitTests OpenSSL) |
261
9e24c33c3361
possibility to compile just the CoreLibrary
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
263 endif() |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
264 endif() |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
265 |
12 | 266 |
546 | 267 |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
268 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
269 ## Create the standalone DLL containing the Orthanc Client API |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
270 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
271 |
543 | 272 if (BUILD_CLIENT_LIBRARY) |
576 | 273 include_directories(${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/Laaw) |
543 | 274 |
275 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
569 | 276 if (CMAKE_CROSSCOMPILING) |
277 # Remove the default "lib" prefix from "libOrthancClient.dll" if cross-compiling | |
278 set(CMAKE_SHARED_LIBRARY_PREFIX "") | |
279 | |
568 | 280 if (${CMAKE_SIZEOF_VOID_P} EQUAL 4) |
576 | 281 set(ORTHANC_CPP_CLIENT_AUX ${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/AUTOGENERATED/Windows32.def) |
568 | 282 elseif (${CMAKE_SIZEOF_VOID_P} EQUAL 8) |
576 | 283 set(ORTHANC_CPP_CLIENT_AUX ${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/AUTOGENERATED/Windows64.def) |
568 | 284 else() |
285 message(FATAL_ERROR "Support your platform here") | |
286 endif() | |
543 | 287 else() |
570 | 288 # Nothing to do if using Visual Studio |
543 | 289 endif() |
570 | 290 |
571 | 291 if (${CMAKE_SIZEOF_VOID_P} EQUAL 4) |
292 set(CMAKE_SHARED_LIBRARY_SUFFIX "_Windows32.dll") | |
576 | 293 list(APPEND ORTHANC_CPP_CLIENT_AUX ${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/AUTOGENERATED/Windows32.rc) |
571 | 294 elseif (${CMAKE_SIZEOF_VOID_P} EQUAL 8) |
295 set(CMAKE_SHARED_LIBRARY_SUFFIX "_Windows64.dll") | |
576 | 296 list(APPEND ORTHANC_CPP_CLIENT_AUX ${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/AUTOGENERATED/Windows64.rc) |
571 | 297 else() |
298 message(FATAL_ERROR "Support your platform here") | |
299 endif() | |
300 | |
543 | 301 else() |
302 set(ORTHANC_CPP_CLIENT_AUX ${OPENSSL_SOURCES}) | |
303 endif() | |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
304 |
543 | 305 add_library(OrthancClient SHARED |
306 ${ORTHANC_ROOT}/Core/OrthancException.cpp | |
307 ${ORTHANC_ROOT}/Core/Enumerations.cpp | |
308 ${ORTHANC_ROOT}/Core/Toolbox.cpp | |
309 ${ORTHANC_ROOT}/Core/HttpClient.cpp | |
310 ${ORTHANC_ROOT}/Core/MultiThreading/ArrayFilledByThreads.cpp | |
311 ${ORTHANC_ROOT}/Core/MultiThreading/ThreadedCommandProcessor.cpp | |
312 ${ORTHANC_ROOT}/Core/MultiThreading/SharedMessageQueue.cpp | |
313 ${ORTHANC_ROOT}/Core/FileFormats/PngReader.cpp | |
314 ${ORTHANC_ROOT}/OrthancCppClient/OrthancConnection.cpp | |
315 ${ORTHANC_ROOT}/OrthancCppClient/Series.cpp | |
316 ${ORTHANC_ROOT}/OrthancCppClient/Study.cpp | |
317 ${ORTHANC_ROOT}/OrthancCppClient/Instance.cpp | |
318 ${ORTHANC_ROOT}/OrthancCppClient/Patient.cpp | |
576 | 319 ${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/SharedLibrary.cpp |
543 | 320 ${ORTHANC_ROOT}/Resources/md5/md5.c |
321 ${ORTHANC_ROOT}/Resources/base64/base64.cpp | |
322 ${ORTHANC_CPP_CLIENT_AUX} | |
323 ${THIRD_PARTY_SOURCES} | |
324 ${CURL_SOURCES} | |
325 ) | |
326 | |
327 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") | |
328 set_target_properties(OrthancClient | |
576 | 329 PROPERTIES LINK_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined -Wl,--as-needed -Wl,--version-script=${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/Laaw/VersionScript.map" |
543 | 330 ) |
331 target_link_libraries(OrthancClient pthread) | |
569 | 332 |
543 | 333 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") |
570 | 334 target_link_libraries(OrthancClient OpenSSL ws2_32) |
335 | |
569 | 336 if (CMAKE_CROSSCOMPILING) |
543 | 337 set_target_properties(OrthancClient |
338 PROPERTIES LINK_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++" | |
339 ) | |
340 endif() | |
569 | 341 |
522 | 342 else() |
343 message(FATAL_ERROR "Support your platform here") | |
344 endif() | |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
345 |
600 | 346 |
601
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
347 # Set the version of the "Orthanc Client" shared library |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
348 file(STRINGS |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
349 ${CMAKE_SOURCE_DIR}/OrthancCppClient/SharedLibrary/Product.json |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
350 ORTHANC_CLIENT_VERSION_TMP |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
351 REGEX "^[ \t]*\"Version\"[ \t]*") |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
352 |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
353 string(REGEX REPLACE "^.*\"([0-9]+)\\.([0-9]+)\\.([0-9]+)\"" "\\1.\\2" |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
354 ORTHANC_CLIENT_VERSION ${ORTHANC_CLIENT_VERSION_TMP}) |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
355 |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
356 message("Setting the version of the library to ${ORTHANC_CLIENT_VERSION}") |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
357 |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
358 set_target_properties(OrthancClient PROPERTIES |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
359 VERSION ${ORTHANC_CLIENT_VERSION} |
84011417321d
better version handling
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
600
diff
changeset
|
360 SOVERSION ${ORTHANC_CLIENT_VERSION}) |
600 | 361 |
362 | |
543 | 363 install( |
364 TARGETS OrthancClient | |
571 | 365 RUNTIME DESTINATION lib # Destination for Windows |
366 LIBRARY DESTINATION lib # Destination for Linux | |
522 | 367 ) |
525 | 368 |
543 | 369 install( |
576 | 370 FILES ${ORTHANC_ROOT}/OrthancCppClient/SharedLibrary/AUTOGENERATED/OrthancCppClient.h |
543 | 371 DESTINATION include/orthanc |
372 ) | |
522 | 373 endif() |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
374 |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
375 |
600 | 376 |
377 | |
516
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
378 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
379 ## Generate the documentation if Doxygen is present |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
380 ##################################################################### |
49a1228d6fe7
building the dll from the main CMakeLists
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
506
diff
changeset
|
381 |
12 | 382 find_package(Doxygen) |
383 if (DOXYGEN_FOUND) | |
384 configure_file( | |
57 | 385 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen |
386 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
12 | 387 @ONLY) |
573 | 388 |
592 | 389 add_custom_target(doc |
390 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
12 | 391 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
595 | 392 COMMENT "Generating internal documentation with Doxygen" VERBATIM |
12 | 393 ) |
573 | 394 |
595 | 395 if (BUILD_CLIENT_LIBRARY) |
396 configure_file( | |
397 ${CMAKE_SOURCE_DIR}/Resources/OrthancClient.doxygen | |
398 ${CMAKE_CURRENT_BINARY_DIR}/OrthancClient.doxygen | |
399 @ONLY) | |
400 | |
401 add_custom_command(TARGET OrthancClient | |
402 POST_BUILD | |
403 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/OrthancClient.doxygen | |
404 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} | |
405 COMMENT "Generating client documentation with Doxygen" VERBATIM | |
406 ) | |
407 | |
408 install( | |
409 DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/OrthancClientDocumentation/doc/ | |
410 DESTINATION share/doc/orthanc/OrthancClient | |
411 ) | |
412 endif() | |
594 | 413 |
149 | 414 else() |
415 message("Doxygen not found. The documentation will not be built.") | |
134 | 416 endif() |
584
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
417 |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
418 |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
419 ##################################################################### |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
420 ## Prepare the "uninstall" target |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
421 ## http://www.cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
422 ##################################################################### |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
423 |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
424 configure_file( |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
425 "${CMAKE_CURRENT_SOURCE_DIR}/Resources/CMake/Uninstall.cmake.in" |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
426 "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
427 IMMEDIATE @ONLY) |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
428 |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
429 add_custom_target(uninstall |
a042693cc6a9
uninstall target for make
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
578
diff
changeset
|
430 COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) |