Mercurial > hg > orthanc
annotate CMakeLists.txt @ 120:5af0a4345d06
disabling of unit tests
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 04 Oct 2012 18:00:21 +0200 |
parents | 7593b57dc1bf |
children | 1267071a697e |
rev | line source |
---|---|
12 | 1 cmake_minimum_required(VERSION 2.8) |
2 | |
57 | 3 project(Orthanc) |
12 | 4 include(${CMAKE_SOURCE_DIR}/Resources/CMake/AutoGeneratedCode.cmake) |
5 include(${CMAKE_SOURCE_DIR}/Resources/CMake/DownloadPackage.cmake) | |
6 include(CheckIncludeFiles) | |
101 | 7 include(CheckIncludeFileCXX) |
12 | 8 |
9 SET(STATIC_BUILD ON CACHE BOOL "Static build of the third-party libraries (necessary for Windows)") | |
19 | 10 SET(STANDALONE_BUILD OFF CACHE BOOL "Standalone build (necessary for cross-compilation or binary releases)") |
23 | 11 SET(ENABLE_SSL ON CACHE BOOL "Include support for SSL") |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
12 SET(BUILD_UNIT_TESTS ON CACHE BOOL "Build the unit tests") |
97 | 13 SET(DEBIAN_HARDENING OFF CACHE BOOL "Use Debian hardening flags") |
12 | 14 |
19 | 15 if (${CMAKE_CROSSCOMPILING}) |
16 SET(STANDALONE_BUILD ON) | |
17 endif() | |
18 | |
19 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
12 | 20 CHECK_INCLUDE_FILES(rpc.h HAVE_UUID_H) |
21 else() | |
22 CHECK_INCLUDE_FILES(uuid/uuid.h HAVE_UUID_H) | |
23 endif() | |
24 | |
101 | 25 if (NOT HAVE_UUID_H) |
12 | 26 message(FATAL_ERROR "Please install the uuid-dev package") |
27 endif() | |
28 | |
29 | |
22 | 30 SET(THIRD_PARTY_SOURCES |
31 ${CMAKE_SOURCE_DIR}/Resources/md5/md5.c | |
24 | 32 ${CMAKE_SOURCE_DIR}/Resources/base64/base64.cpp |
22 | 33 ) |
26 | 34 |
102
7593b57dc1bf
switch to google log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
35 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleLogConfiguration.cmake) |
7593b57dc1bf
switch to google log
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
36 |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
37 if (${ENABLE_SSL}) |
57 | 38 add_definitions(-DORTHANC_SSL_ENABLED=1) |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
39 include(${CMAKE_SOURCE_DIR}/Resources/CMake/OpenSslConfiguration.cmake) |
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
40 else() |
57 | 41 add_definitions(-DORTHANC_SSL_ENABLED=0) |
29
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
42 endif() |
042ac60f5bf9
simplified build of curl
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
26
diff
changeset
|
43 |
12 | 44 include(${CMAKE_SOURCE_DIR}/Resources/CMake/BoostConfiguration.cmake) |
45 include(${CMAKE_SOURCE_DIR}/Resources/CMake/DcmtkConfiguration.cmake) | |
46 include(${CMAKE_SOURCE_DIR}/Resources/CMake/MongooseConfiguration.cmake) | |
47 include(${CMAKE_SOURCE_DIR}/Resources/CMake/ZlibConfiguration.cmake) | |
48 include(${CMAKE_SOURCE_DIR}/Resources/CMake/SQLiteConfiguration.cmake) | |
49 include(${CMAKE_SOURCE_DIR}/Resources/CMake/JsonCppConfiguration.cmake) | |
50 include(${CMAKE_SOURCE_DIR}/Resources/CMake/LibCurlConfiguration.cmake) | |
51 include(${CMAKE_SOURCE_DIR}/Resources/CMake/LibPngConfiguration.cmake) | |
52 | |
53 | |
54 if (${CMAKE_COMPILER_IS_GNUCXX}) | |
26 | 55 set(CMAKE_C_FLAGS "-Wall -Wno-long-long -Wno-implicit-function-declaration") |
56 # --std=c99 makes libcurl not to compile | |
57 # -pedantic gives a lot of warnings on OpenSSL | |
12 | 58 set(CMAKE_CXX_FLAGS "-Wall -pedantic -Wno-long-long -Wno-variadic-macros") |
59 elseif (${MSVC}) | |
60 # http://stackoverflow.com/a/6510446 | |
61 foreach(flag_var | |
62 CMAKE_C_FLAGS_DEBUG | |
63 CMAKE_CXX_FLAGS_DEBUG | |
64 CMAKE_C_FLAGS_RELEASE | |
65 CMAKE_CXX_FLAGS_RELEASE | |
66 CMAKE_C_FLAGS_MINSIZEREL | |
67 CMAKE_CXX_FLAGS_MINSIZEREL | |
68 CMAKE_C_FLAGS_RELWITHDEBINFO | |
69 CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |
70 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | |
71 string(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}") | |
72 endforeach(flag_var) | |
73 add_definitions( | |
74 -D_CRT_SECURE_NO_WARNINGS=1 | |
75 -D_CRT_SECURE_NO_DEPRECATE=1 | |
76 ) | |
77 include_directories(${CMAKE_SOURCE_DIR}/Resources/VisualStudio) | |
78 link_libraries(netapi32) | |
79 endif() | |
80 | |
81 | |
82 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") | |
97 | 83 if (DEBIAN_HARDENING) |
84 execute_process( | |
85 COMMAND dpkg-buildflags --get CPPFLAGS | |
86 OUTPUT_VARIABLE DEBIAN_CPP_FLAGS | |
87 OUTPUT_STRIP_TRAILING_WHITESPACE) | |
88 execute_process( | |
89 COMMAND dpkg-buildflags --get CFLAGS | |
90 OUTPUT_VARIABLE DEBIAN_C_FLAGS | |
91 OUTPUT_STRIP_TRAILING_WHITESPACE) | |
92 execute_process( | |
93 COMMAND dpkg-buildflags --get CXXFLAGS | |
94 OUTPUT_VARIABLE DEBIAN_CXX_FLAGS | |
95 OUTPUT_STRIP_TRAILING_WHITESPACE) | |
96 execute_process( | |
97 COMMAND dpkg-buildflags --get LDFLAGS | |
98 OUTPUT_VARIABLE DEBIAN_LD_FLAGS | |
99 OUTPUT_STRIP_TRAILING_WHITESPACE) | |
100 | |
101 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${DEBIAN_C_FLAGS} ${DEBIAN_CPP_FLAGS}") | |
102 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${DEBIAN_CXX_FLAGS} ${DEBIAN_CPP_FLAGS}") | |
103 endif() | |
104 | |
12 | 105 add_definitions( |
106 -D_LARGEFILE64_SOURCE=1 | |
107 -D_FILE_OFFSET_BITS=64 | |
108 ) | |
97 | 109 set(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed ${DEBIAN_LD_FLAGS}") |
110 set(CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined ${DEBIAN_LD_FLAGS}") | |
111 set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined ${DEBIAN_LD_FLAGS}") | |
12 | 112 |
113 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
114 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
115 link_libraries(uuid pthread rt) | |
116 | |
117 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
118 add_definitions( | |
119 -DWINVER=0x0501 | |
120 -D_CRT_SECURE_NO_WARNINGS=1 | |
121 ) | |
122 link_libraries(rpcrt4 ws2_32) | |
123 endif() | |
124 | |
125 | |
126 if (${STATIC_BUILD}) | |
57 | 127 add_definitions(-DORTHANC_STATIC=1) |
12 | 128 else() |
57 | 129 add_definitions(-DORTHANC_STATIC=0) |
12 | 130 endif() |
131 | |
19 | 132 if (${STANDALONE_BUILD}) |
12 | 133 add_definitions( |
57 | 134 -DORTHANC_STANDALONE=1 |
12 | 135 ) |
136 | |
137 EmbedResources( | |
57 | 138 PREPARE_DATABASE OrthancServer/PrepareDatabase.sql |
139 ORTHANC_EXPLORER OrthancExplorer | |
12 | 140 ) |
141 | |
142 else() | |
143 add_definitions( | |
57 | 144 -DORTHANC_STANDALONE=0 |
145 -DORTHANC_PATH=\"${CMAKE_SOURCE_DIR}\" | |
12 | 146 ) |
147 | |
148 EmbedResources( | |
57 | 149 PREPARE_DATABASE OrthancServer/PrepareDatabase.sql |
12 | 150 ) |
151 endif() | |
152 | |
153 | |
154 add_library(CoreLibrary | |
155 STATIC | |
156 ${AUTOGENERATED_SOURCES} | |
157 ${THIRD_PARTY_SOURCES} | |
158 | |
159 Core/ChunkedBuffer.cpp | |
160 Core/Compression/BufferCompressor.cpp | |
161 Core/Compression/ZlibCompressor.cpp | |
81 | 162 Core/Compression/ZipWriter.cpp |
57 | 163 Core/OrthancException.cpp |
12 | 164 Core/DicomFormat/DicomArray.cpp |
165 Core/DicomFormat/DicomMap.cpp | |
166 Core/DicomFormat/DicomTag.cpp | |
79 | 167 Core/DicomFormat/DicomIntegerPixelAccessor.cpp |
12 | 168 Core/FileStorage.cpp |
169 Core/HttpServer/EmbeddedResourceHttpHandler.cpp | |
170 Core/HttpServer/FilesystemHttpHandler.cpp | |
171 Core/HttpServer/HttpHandler.cpp | |
172 Core/HttpServer/HttpOutput.cpp | |
173 Core/HttpServer/MongooseServer.cpp | |
174 Core/MultiThreading/BagOfRunnablesBySteps.cpp | |
175 Core/PngWriter.cpp | |
176 Core/SQLite/Connection.cpp | |
177 Core/SQLite/FunctionContext.cpp | |
178 Core/SQLite/Statement.cpp | |
179 Core/SQLite/StatementId.cpp | |
180 Core/SQLite/StatementReference.cpp | |
181 Core/SQLite/Transaction.cpp | |
182 Core/Toolbox.cpp | |
183 Core/Uuid.cpp | |
184 | |
57 | 185 OrthancCppClient/HttpClient.cpp |
186 OrthancCppClient/HttpException.cpp | |
12 | 187 ) |
188 | |
189 add_library(ServerLibrary | |
57 | 190 OrthancServer/DicomProtocol/DicomFindAnswers.cpp |
191 OrthancServer/DicomProtocol/DicomServer.cpp | |
192 OrthancServer/DicomProtocol/DicomUserConnection.cpp | |
193 OrthancServer/FromDcmtkBridge.cpp | |
194 OrthancServer/Internals/CommandDispatcher.cpp | |
195 OrthancServer/Internals/FindScp.cpp | |
196 OrthancServer/Internals/MoveScp.cpp | |
197 OrthancServer/Internals/StoreScp.cpp | |
198 OrthancServer/OrthancInitialization.cpp | |
199 OrthancServer/OrthancRestApi.cpp | |
200 OrthancServer/ServerIndex.cpp | |
201 OrthancServer/ToDcmtkBridge.cpp | |
12 | 202 ) |
203 | |
204 # Ensure autogenerated code is built before building ServerLibrary | |
205 add_dependencies(ServerLibrary CoreLibrary) | |
206 | |
57 | 207 add_executable(Orthanc |
208 OrthancServer/main.cpp | |
12 | 209 ) |
210 | |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
211 TARGET_LINK_LIBRARIES(Orthanc ServerLibrary CoreLibrary) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
212 |
12 | 213 |
120
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
214 if (BUILD_UNIT_TESTS) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
215 include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleTestConfiguration.cmake) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
216 add_executable(UnitTests |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
217 ${GTEST_SOURCES} |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
218 UnitTests/main.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
219 UnitTests/SQLite.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
220 UnitTests/SQLiteChromium.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
221 UnitTests/Versions.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
222 UnitTests/Zip.cpp |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
223 ) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
224 TARGET_LINK_LIBRARIES(UnitTests ServerLibrary CoreLibrary) |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
225 endif() |
5af0a4345d06
disabling of unit tests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
102
diff
changeset
|
226 |
12 | 227 |
228 find_package(Doxygen) | |
229 if (DOXYGEN_FOUND) | |
230 configure_file( | |
57 | 231 ${CMAKE_SOURCE_DIR}/Resources/Orthanc.doxygen |
232 ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen | |
12 | 233 @ONLY) |
234 add_custom_target(doc | |
57 | 235 ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Orthanc.doxygen |
12 | 236 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
237 COMMENT "Generating API documentation with Doxygen" VERBATIM | |
238 ) | |
239 endif(DOXYGEN_FOUND) |