Mercurial > hg > orthanc
annotate CMakeLists.txt @ 247:c9b3ba0fd140
path management in zip files
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 04 Dec 2012 17:27:23 +0100 |
parents | fe6ba20d00a8 |
children | c0fb3d09c849 |
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 |
6 add_definitions( | |
246 | 7 -DORTHANC_VERSION="mainline" |
135 | 8 ) |
9 | |
134 | 10 # Parameters of the build |
11 SET(STATIC_BUILD ON CACHE BOOL "Static build of the third-party libraries (necessary for Windows)") | |
12 SET(STANDALONE_BUILD OFF CACHE BOOL "Standalone build (all the resources are embedded, necessary for releases)") | |
13 SET(ENABLE_SSL ON CACHE BOOL "Include support for SSL") | |
14 SET(BUILD_UNIT_TESTS ON CACHE BOOL "Build the unit tests") | |
135 | 15 |
16 # Advanced parameters (for Debian packaging) | |
134 | 17 SET(USE_DYNAMIC_JSONCPP OFF CACHE BOOL "Use the dynamic version of JsonCpp (only for Debian sid)") |
18 SET(USE_DYNAMIC_GOOGLE_LOG ON CACHE BOOL "Use the dynamic version of Google Log") | |
19 SET(USE_DYNAMIC_GOOGLE_TEST ON CACHE BOOL "Use the dynamic version of Google Test (not for Debian sid)") | |
147 | 20 SET(USE_DYNAMIC_SQLITE ON CACHE BOOL "Use the dynamic version of SQLite") |
135 | 21 SET(DEBIAN_FORCE_HARDENING OFF CACHE BOOL "Force the injection of Debian hardening flags (unrecommended)") |
157
a63fb54819d7
gtest on debian sid
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
149
diff
changeset
|
22 SET(DEBIAN_USE_GTEST_SOURCE_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (only for Debian sid)") |
134 | 23 |
135 | 24 mark_as_advanced(USE_DYNAMIC_JSONCPP) |
25 mark_as_advanced(USE_DYNAMIC_GOOGLE_LOG) | |
26 mark_as_advanced(USE_DYNAMIC_GOOGLE_TEST) | |
147 | 27 mark_as_advanced(USE_DYNAMIC_SQLITE) |
135 | 28 mark_as_advanced(DEBIAN_FORCE_HARDENING) |
29 mark_as_advanced(DEBIAN_USE_STATIC_GOOGLE_TEST) | |
134 | 30 |
31 # Some basic inclusions | |
12 | 32 include(CheckIncludeFiles) |
101 | 33 include(CheckIncludeFileCXX) |
134 | 34 include(${CMAKE_SOURCE_DIR}/Resources/CMake/AutoGeneratedCode.cmake) |
35 include(${CMAKE_SOURCE_DIR}/Resources/CMake/DownloadPackage.cmake) | |
36 include(${CMAKE_SOURCE_DIR}/Resources/CMake/Compiler.cmake) | |
133 | 37 |
134 | 38 # Configuration of the standalone builds |
19 | 39 if (${CMAKE_CROSSCOMPILING}) |
134 | 40 # Cross-compilation implies the standalone build |
19 | 41 SET(STANDALONE_BUILD ON) |
42 endif() | |
43 | |
134 | 44 if (${STANDALONE_BUILD}) |
45 # We embed all the resources in the binaries for standalone builds | |
46 add_definitions(-DORTHANC_STANDALONE=1) | |
47 EmbedResources( | |
48 PREPARE_DATABASE OrthancServer/PrepareDatabase.sql | |
49 ORTHANC_EXPLORER OrthancExplorer | |
175
662af781a227
sample config file from command line
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
170
diff
changeset
|
50 CONFIGURATION_SAMPLE Resources/Configuration.json |
134 | 51 ) |
12 | 52 else() |
134 | 53 add_definitions( |
54 -DORTHANC_STANDALONE=0 | |
55 -DORTHANC_PATH=\"${CMAKE_SOURCE_DIR}\" | |
56 ) | |
57 EmbedResources( | |
58 PREPARE_DATABASE OrthancServer/PrepareDatabase.sql | |
175
662af781a227
sample config file from command line
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
170
diff
changeset
|
59 CONFIGURATION_SAMPLE Resources/Configuration.json |
134 | 60 ) |
12 | 61 endif() |
62 | |
63 | |
134 | 64 # Prepare the third-party dependencies |
22 | 65 SET(THIRD_PARTY_SOURCES |
66 ${CMAKE_SOURCE_DIR}/Resources/md5/md5.c | |
24 | 67 ${CMAKE_SOURCE_DIR}/Resources/base64/base64.cpp |
177 | 68 ${CMAKE_SOURCE_DIR}/Resources/sha1/sha1.cpp |
22 | 69 ) |
26 | 70 |
102
7593b57dc1bf
switch to google log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
71 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleLogConfiguration.cmake) |
7593b57dc1bf
switch to google log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
72 |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
73 if (${ENABLE_SSL}) |
57 | 74 add_definitions(-DORTHANC_SSL_ENABLED=1) |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
75 include(${CMAKE_SOURCE_DIR}/Resources/CMake/OpenSslConfiguration.cmake) |
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
76 else() |
57 | 77 add_definitions(-DORTHANC_SSL_ENABLED=0) |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
78 endif() |
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
79 |
12 | 80 include(${CMAKE_SOURCE_DIR}/Resources/CMake/BoostConfiguration.cmake) |
81 include(${CMAKE_SOURCE_DIR}/Resources/CMake/DcmtkConfiguration.cmake) | |
82 include(${CMAKE_SOURCE_DIR}/Resources/CMake/MongooseConfiguration.cmake) | |
83 include(${CMAKE_SOURCE_DIR}/Resources/CMake/ZlibConfiguration.cmake) | |
84 include(${CMAKE_SOURCE_DIR}/Resources/CMake/SQLiteConfiguration.cmake) | |
85 include(${CMAKE_SOURCE_DIR}/Resources/CMake/JsonCppConfiguration.cmake) | |
86 include(${CMAKE_SOURCE_DIR}/Resources/CMake/LibCurlConfiguration.cmake) | |
87 include(${CMAKE_SOURCE_DIR}/Resources/CMake/LibPngConfiguration.cmake) | |
88 | |
89 | |
134 | 90 # The main instructions to build the Orthanc binaries |
12 | 91 add_library(CoreLibrary |
92 STATIC | |
93 ${AUTOGENERATED_SOURCES} | |
94 ${THIRD_PARTY_SOURCES} | |
95 | |
96 Core/ChunkedBuffer.cpp | |
97 Core/Compression/BufferCompressor.cpp | |
98 Core/Compression/ZlibCompressor.cpp | |
81 | 99 Core/Compression/ZipWriter.cpp |
247
c9b3ba0fd140
path management in zip files
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
246
diff
changeset
|
100 Core/Compression/HierarchicalZipWriter.cpp |
57 | 101 Core/OrthancException.cpp |
12 | 102 Core/DicomFormat/DicomArray.cpp |
103 Core/DicomFormat/DicomMap.cpp | |
104 Core/DicomFormat/DicomTag.cpp | |
79 | 105 Core/DicomFormat/DicomIntegerPixelAccessor.cpp |
178 | 106 Core/DicomFormat/DicomInstanceHasher.cpp |
234 | 107 Core/FileStorage/FileStorage.cpp |
221
e7432706b354
accessors to storage
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
213
diff
changeset
|
108 Core/FileStorage/StorageAccessor.cpp |
e7432706b354
accessors to storage
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
213
diff
changeset
|
109 Core/FileStorage/CompressedFileStorageAccessor.cpp |
232
5368bbe813cf
refactoring of attachments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
229
diff
changeset
|
110 Core/FileStorage/FileStorageAccessor.cpp |
12 | 111 Core/HttpServer/EmbeddedResourceHttpHandler.cpp |
112 Core/HttpServer/FilesystemHttpHandler.cpp | |
113 Core/HttpServer/HttpHandler.cpp | |
114 Core/HttpServer/HttpOutput.cpp | |
115 Core/HttpServer/MongooseServer.cpp | |
208 | 116 Core/HttpServer/HttpFileSender.cpp |
117 Core/HttpServer/FilesystemHttpSender.cpp | |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
118 Core/RestApi/RestApiPath.cpp |
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
119 Core/RestApi/RestApiOutput.cpp |
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
120 Core/RestApi/RestApi.cpp |
12 | 121 Core/MultiThreading/BagOfRunnablesBySteps.cpp |
122 Core/PngWriter.cpp | |
123 Core/SQLite/Connection.cpp | |
124 Core/SQLite/FunctionContext.cpp | |
125 Core/SQLite/Statement.cpp | |
126 Core/SQLite/StatementId.cpp | |
127 Core/SQLite/StatementReference.cpp | |
128 Core/SQLite/Transaction.cpp | |
129 Core/Toolbox.cpp | |
130 Core/Uuid.cpp | |
131 | |
57 | 132 OrthancCppClient/HttpClient.cpp |
133 OrthancCppClient/HttpException.cpp | |
12 | 134 ) |
135 | |
136 add_library(ServerLibrary | |
57 | 137 OrthancServer/DicomProtocol/DicomFindAnswers.cpp |
138 OrthancServer/DicomProtocol/DicomServer.cpp | |
139 OrthancServer/DicomProtocol/DicomUserConnection.cpp | |
140 OrthancServer/FromDcmtkBridge.cpp | |
141 OrthancServer/Internals/CommandDispatcher.cpp | |
142 OrthancServer/Internals/FindScp.cpp | |
143 OrthancServer/Internals/MoveScp.cpp | |
144 OrthancServer/Internals/StoreScp.cpp | |
145 OrthancServer/OrthancInitialization.cpp | |
229 | 146 OrthancServer/OrthancRestApi.cpp |
57 | 147 OrthancServer/ServerIndex.cpp |
148 OrthancServer/ToDcmtkBridge.cpp | |
183 | 149 OrthancServer/DatabaseWrapper.cpp |
224
4eb0c7ce86c9
refactoring for store
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
222
diff
changeset
|
150 OrthancServer/ServerContext.cpp |
199 | 151 OrthancServer/ServerEnumerations.cpp |
213
4ce7fdcc8879
access to tags, simplified-tags and file of an instance
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
210
diff
changeset
|
152 OrthancServer/ServerToolbox.cpp |
12 | 153 ) |
154 | |
155 # Ensure autogenerated code is built before building ServerLibrary | |
156 add_dependencies(ServerLibrary CoreLibrary) | |
157 | |
57 | 158 add_executable(Orthanc |
159 OrthancServer/main.cpp | |
12 | 160 ) |
161 | |
134 | 162 target_link_libraries(Orthanc ServerLibrary CoreLibrary) |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
163 |
135 | 164 install( |
165 TARGETS Orthanc | |
166 RUNTIME DESTINATION bin | |
167 ) | |
168 | |
12 | 169 |
134 | 170 # Build the unit tests if required |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
171 if (BUILD_UNIT_TESTS) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
172 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleTestConfiguration.cmake) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
173 add_executable(UnitTests |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
174 ${GTEST_SOURCES} |
139
3ad78369fcc4
start threaded messages
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
175 UnitTests/MessageWithDestination.cpp |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
176 UnitTests/RestApi.cpp |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
177 UnitTests/SQLite.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
178 UnitTests/SQLiteChromium.cpp |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
179 UnitTests/ServerIndex.cpp |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
180 UnitTests/Versions.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
181 UnitTests/Zip.cpp |
222
bd934af46ba4
unit test of storagearea in separate file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
221
diff
changeset
|
182 UnitTests/FileStorage.cpp |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
183 UnitTests/main.cpp |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
184 ) |
134 | 185 target_link_libraries(UnitTests ServerLibrary CoreLibrary) |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
186 endif() |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
187 |
12 | 188 |
134 | 189 # Generate the Doxygen documentation if Doxygen is present |
12 | 190 find_package(Doxygen) |
191 if (DOXYGEN_FOUND) | |
192 configure_file( | |
57 | 193 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen |
194 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
12 | 195 @ONLY) |
196 add_custom_target(doc | |
57 | 197 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen |
12 | 198 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
199 COMMENT "Generating API documentation with Doxygen" VERBATIM | |
200 ) | |
149 | 201 else() |
202 message("Doxygen not found. The documentation will not be built.") | |
134 | 203 endif() |
149 | 204 |