Mercurial > hg > orthanc-databases
annotate Resources/CMake/DatabasesFrameworkConfiguration.cmake @ 316:1c2cd90418c9
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 19 Jul 2021 14:59:36 +0200 |
parents | a116dbdf9118 |
children | b5fb8b77ce4d |
rev | line source |
---|---|
0 | 1 # Orthanc - A Lightweight, RESTful DICOM Store |
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
3 # Department, University Hospital of Liege, Belgium | |
193
3236894320d6
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
172
diff
changeset
|
4 # Copyright (C) 2017-2021 Osimis S.A., Belgium |
0 | 5 # |
6 # This program is free software: you can redistribute it and/or | |
7 # modify it under the terms of the GNU Affero General Public License | |
8 # as published by the Free Software Foundation, either version 3 of | |
9 # the License, or (at your option) any later version. | |
10 # | |
11 # This program is distributed in the hope that it will be useful, but | |
12 # WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 # Affero General Public License for more details. | |
15 # | |
16 # You should have received a copy of the GNU Affero General Public License | |
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
18 | |
19 | |
20 | |
21 ##################################################################### | |
22 ## Enable the Orthanc subcomponents depending on the configuration | |
23 ##################################################################### | |
24 | |
25 if (ENABLE_SQLITE_BACKEND) | |
26 set(ENABLE_SQLITE ON) | |
27 endif() | |
28 | |
29 if (ENABLE_POSTGRESQL_BACKEND) | |
80
16df1a6ea452
Fix issue 105 (Unable to connect to PostgreSQL database using SSL)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
67
diff
changeset
|
30 set(ENABLE_CRYPTO_OPTIONS ON) |
0 | 31 set(ENABLE_ZLIB ON) |
83 | 32 |
33 if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows") | |
34 set(ENABLE_OPENSSL_ENGINES ON) | |
35 endif() | |
0 | 36 endif() |
37 | |
38 if (ENABLE_MYSQL_BACKEND) | |
39 set(ENABLE_CRYPTO_OPTIONS ON) | |
40 set(ENABLE_SSL ON) | |
3 | 41 set(ENABLE_ZLIB ON) |
39 | 42 set(ENABLE_LOCALE ON) # iconv is needed |
43 set(ENABLE_WEB_CLIENT ON) # libcurl is needed | |
0 | 44 |
45 if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows") | |
46 set(ENABLE_OPENSSL_ENGINES ON) | |
47 endif() | |
48 endif() | |
49 | |
50 | |
51 ##################################################################### | |
52 ## Configure the Orthanc Framework | |
53 ##################################################################### | |
54 | |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
55 if (ORTHANC_FRAMEWORK_SOURCE STREQUAL "system") |
284
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
56 if (ORTHANC_FRAMEWORK_USE_SHARED) |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
57 include(FindBoost) |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
58 find_package(Boost COMPONENTS regex thread) |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
59 |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
60 if (NOT Boost_FOUND) |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
61 message(FATAL_ERROR "Unable to locate Boost on this system") |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
62 endif() |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
63 |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
64 link_libraries(${Boost_LIBRARIES} jsoncpp) |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
65 endif() |
64bf8914f02e
sync + no more need of "-DORTHANC_FRAMEWORK_ADDITIONAL_LIBRARIES" to dynamically link against system-wide orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
245
diff
changeset
|
66 |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
67 link_libraries(${ORTHANC_FRAMEWORK_LIBRARIES}) |
54
b3de8c09c8b0
disable of Orthanc modules that are useless for databases
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
39
diff
changeset
|
68 |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
69 if (ENABLE_SQLITE_BACKEND) |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
70 add_definitions(-DORTHANC_ENABLE_SQLITE=1) |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
71 endif() |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
72 |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
73 set(USE_SYSTEM_GOOGLE_TEST ON CACHE BOOL "Use the system version of Google Test") |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
74 set(USE_GOOGLE_TEST_DEBIAN_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (Debian only)") |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
75 mark_as_advanced(USE_GOOGLE_TEST_DEBIAN_PACKAGE) |
300
a116dbdf9118
replaced CMAKE_SOURCE_DIR by CMAKE_CURRENT_LIST_DIR in CMake scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
299
diff
changeset
|
76 include(${CMAKE_CURRENT_LIST_DIR}/../Orthanc/CMake/GoogleTestConfiguration.cmake) |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
77 |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
78 else() |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
79 # Those modules of the Orthanc framework are not needed when dealing |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
80 # with databases |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
81 set(ENABLE_MODULE_IMAGES OFF) |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
82 set(ENABLE_MODULE_JOBS OFF) |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
83 set(ENABLE_MODULE_DICOM OFF) |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
84 |
167 | 85 include(${ORTHANC_FRAMEWORK_ROOT}/../Resources/CMake/OrthancFrameworkConfiguration.cmake) |
286
eb03551d3a5f
improved CMakeLists.txt
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
284
diff
changeset
|
86 include_directories(${ORTHANC_FRAMEWORK_ROOT}) |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
87 endif() |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
88 |
0 | 89 |
90 | |
91 ##################################################################### | |
92 ## Common source files for the databases | |
93 ##################################################################### | |
94 | |
95 set(ORTHANC_DATABASES_ROOT ${CMAKE_CURRENT_LIST_DIR}/../..) | |
96 | |
97 set(DATABASES_SOURCES | |
98 ${ORTHANC_DATABASES_ROOT}/Framework/Common/BinaryStringValue.cpp | |
99 ${ORTHANC_DATABASES_ROOT}/Framework/Common/DatabaseManager.cpp | |
299
70685295a373
added OrthancDatabases::EnumerationToString(ValueType)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
298
diff
changeset
|
100 ${ORTHANC_DATABASES_ROOT}/Framework/Common/DatabasesEnumerations.cpp |
0 | 101 ${ORTHANC_DATABASES_ROOT}/Framework/Common/Dictionary.cpp |
102 ${ORTHANC_DATABASES_ROOT}/Framework/Common/GenericFormatter.cpp | |
298
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
286
diff
changeset
|
103 ${ORTHANC_DATABASES_ROOT}/Framework/Common/IResult.cpp |
23
b2ff1cd2907a
handling of implicit transactions in DatabaseManager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3
diff
changeset
|
104 ${ORTHANC_DATABASES_ROOT}/Framework/Common/ImplicitTransaction.cpp |
244
02cd7254c949
separating class InputFileValue from FileValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
226
diff
changeset
|
105 ${ORTHANC_DATABASES_ROOT}/Framework/Common/InputFileValue.cpp |
0 | 106 ${ORTHANC_DATABASES_ROOT}/Framework/Common/Integer64Value.cpp |
107 ${ORTHANC_DATABASES_ROOT}/Framework/Common/NullValue.cpp | |
108 ${ORTHANC_DATABASES_ROOT}/Framework/Common/Query.cpp | |
109 ${ORTHANC_DATABASES_ROOT}/Framework/Common/ResultBase.cpp | |
245
9d00e5e073e8
rename FileValue as ResultFileValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
244
diff
changeset
|
110 ${ORTHANC_DATABASES_ROOT}/Framework/Common/ResultFileValue.cpp |
226
a4918d57435c
DatabaseManager doesn't IDatabaseFactory anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
111 ${ORTHANC_DATABASES_ROOT}/Framework/Common/RetryDatabaseFactory.cpp |
a4918d57435c
DatabaseManager doesn't IDatabaseFactory anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
112 ${ORTHANC_DATABASES_ROOT}/Framework/Common/RetryDatabaseFactory.cpp |
0 | 113 ${ORTHANC_DATABASES_ROOT}/Framework/Common/StatementLocation.cpp |
114 ${ORTHANC_DATABASES_ROOT}/Framework/Common/Utf8StringValue.cpp | |
115 ) | |
116 | |
117 | |
118 ##################################################################### | |
119 ## Configure SQLite if need be | |
120 ##################################################################### | |
121 | |
122 if (ENABLE_SQLITE_BACKEND) | |
123 list(APPEND DATABASES_SOURCES | |
124 ${ORTHANC_DATABASES_ROOT}/Framework/SQLite/SQLiteDatabase.cpp | |
125 ${ORTHANC_DATABASES_ROOT}/Framework/SQLite/SQLiteResult.cpp | |
126 ${ORTHANC_DATABASES_ROOT}/Framework/SQLite/SQLiteStatement.cpp | |
127 ${ORTHANC_DATABASES_ROOT}/Framework/SQLite/SQLiteTransaction.cpp | |
128 ) | |
129 endif() | |
130 | |
131 | |
132 ##################################################################### | |
133 ## Configure MySQL client (MariaDB) if need be | |
134 ##################################################################### | |
135 | |
136 if (ENABLE_MYSQL_BACKEND) | |
137 include(${CMAKE_CURRENT_LIST_DIR}/MariaDBConfiguration.cmake) | |
138 add_definitions(-DORTHANC_ENABLE_MYSQL=1) | |
139 list(APPEND DATABASES_SOURCES | |
140 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLDatabase.cpp | |
141 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLParameters.cpp | |
142 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLResult.cpp | |
143 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLStatement.cpp | |
144 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLTransaction.cpp | |
145 ${MYSQL_CLIENT_SOURCES} | |
146 ) | |
147 else() | |
148 unset(USE_SYSTEM_MYSQL_CLIENT CACHE) | |
149 add_definitions(-DORTHANC_ENABLE_MYSQL=0) | |
150 endif() | |
151 | |
152 | |
153 | |
154 ##################################################################### | |
155 ## Configure PostgreSQL client if need be | |
156 ##################################################################### | |
157 | |
158 if (ENABLE_POSTGRESQL_BACKEND) | |
159 include(${CMAKE_CURRENT_LIST_DIR}/PostgreSQLConfiguration.cmake) | |
160 add_definitions(-DORTHANC_ENABLE_POSTGRESQL=1) | |
161 list(APPEND DATABASES_SOURCES | |
162 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLDatabase.cpp | |
163 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLLargeObject.cpp | |
164 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLParameters.cpp | |
165 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLResult.cpp | |
166 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLStatement.cpp | |
167 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLTransaction.cpp | |
168 ${LIBPQ_SOURCES} | |
169 ) | |
170 else() | |
171 unset(USE_SYSTEM_LIBPQ CACHE) | |
172 add_definitions(-DORTHANC_ENABLE_POSTGRESQL=0) | |
173 endif() |