Mercurial > hg > orthanc
annotate CMakeLists.txt @ 211:b7aea293b965
list of resources
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 29 Nov 2012 09:56:46 +0100 |
parents | 96b7918a6a18 |
children | 4ce7fdcc8879 |
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( | |
170 | 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 |
57 | 100 Core/OrthancException.cpp |
12 | 101 Core/DicomFormat/DicomArray.cpp |
102 Core/DicomFormat/DicomMap.cpp | |
103 Core/DicomFormat/DicomTag.cpp | |
79 | 104 Core/DicomFormat/DicomIntegerPixelAccessor.cpp |
178 | 105 Core/DicomFormat/DicomInstanceHasher.cpp |
12 | 106 Core/FileStorage.cpp |
107 Core/HttpServer/EmbeddedResourceHttpHandler.cpp | |
108 Core/HttpServer/FilesystemHttpHandler.cpp | |
109 Core/HttpServer/HttpHandler.cpp | |
110 Core/HttpServer/HttpOutput.cpp | |
111 Core/HttpServer/MongooseServer.cpp | |
208 | 112 Core/HttpServer/HttpFileSender.cpp |
113 Core/HttpServer/FilesystemHttpSender.cpp | |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
114 Core/RestApi/RestApiPath.cpp |
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
115 Core/RestApi/RestApiOutput.cpp |
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
116 Core/RestApi/RestApi.cpp |
12 | 117 Core/MultiThreading/BagOfRunnablesBySteps.cpp |
118 Core/PngWriter.cpp | |
119 Core/SQLite/Connection.cpp | |
120 Core/SQLite/FunctionContext.cpp | |
121 Core/SQLite/Statement.cpp | |
122 Core/SQLite/StatementId.cpp | |
123 Core/SQLite/StatementReference.cpp | |
124 Core/SQLite/Transaction.cpp | |
125 Core/Toolbox.cpp | |
126 Core/Uuid.cpp | |
127 | |
57 | 128 OrthancCppClient/HttpClient.cpp |
129 OrthancCppClient/HttpException.cpp | |
12 | 130 ) |
131 | |
132 add_library(ServerLibrary | |
57 | 133 OrthancServer/DicomProtocol/DicomFindAnswers.cpp |
134 OrthancServer/DicomProtocol/DicomServer.cpp | |
135 OrthancServer/DicomProtocol/DicomUserConnection.cpp | |
136 OrthancServer/FromDcmtkBridge.cpp | |
137 OrthancServer/Internals/CommandDispatcher.cpp | |
138 OrthancServer/Internals/FindScp.cpp | |
139 OrthancServer/Internals/MoveScp.cpp | |
140 OrthancServer/Internals/StoreScp.cpp | |
141 OrthancServer/OrthancInitialization.cpp | |
142 OrthancServer/OrthancRestApi.cpp | |
210
96b7918a6a18
start of the refactoring of the Orthanc REST API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
209
diff
changeset
|
143 OrthancServer/OrthancRestApi2.cpp |
57 | 144 OrthancServer/ServerIndex.cpp |
145 OrthancServer/ToDcmtkBridge.cpp | |
183 | 146 OrthancServer/DatabaseWrapper.cpp |
199 | 147 OrthancServer/ServerEnumerations.cpp |
12 | 148 ) |
149 | |
150 # Ensure autogenerated code is built before building ServerLibrary | |
151 add_dependencies(ServerLibrary CoreLibrary) | |
152 | |
57 | 153 add_executable(Orthanc |
154 OrthancServer/main.cpp | |
12 | 155 ) |
156 | |
134 | 157 target_link_libraries(Orthanc ServerLibrary CoreLibrary) |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
158 |
135 | 159 install( |
160 TARGETS Orthanc | |
161 RUNTIME DESTINATION bin | |
162 ) | |
163 | |
12 | 164 |
134 | 165 # Build the unit tests if required |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
166 if (BUILD_UNIT_TESTS) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
167 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleTestConfiguration.cmake) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
168 add_executable(UnitTests |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
169 ${GTEST_SOURCES} |
139
3ad78369fcc4
start threaded messages
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
170 UnitTests/MessageWithDestination.cpp |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
171 UnitTests/RestApi.cpp |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
172 UnitTests/SQLite.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
173 UnitTests/SQLiteChromium.cpp |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
174 UnitTests/ServerIndex.cpp |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
175 UnitTests/Versions.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
176 UnitTests/Zip.cpp |
209
9960642f0f45
abstraction of RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
208
diff
changeset
|
177 UnitTests/main.cpp |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
178 ) |
134 | 179 target_link_libraries(UnitTests ServerLibrary CoreLibrary) |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
180 endif() |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
181 |
12 | 182 |
134 | 183 # Generate the Doxygen documentation if Doxygen is present |
12 | 184 find_package(Doxygen) |
185 if (DOXYGEN_FOUND) | |
186 configure_file( | |
57 | 187 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen |
188 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
12 | 189 @ONLY) |
190 add_custom_target(doc | |
57 | 191 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen |
12 | 192 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
193 COMMENT "Generating API documentation with Doxygen" VERBATIM | |
194 ) | |
149 | 195 else() |
196 message("Doxygen not found. The documentation will not be built.") | |
134 | 197 endif() |
149 | 198 |