Mercurial > hg > orthanc-databases
annotate Resources/CMake/DatabasesFrameworkConfiguration.cmake @ 285:f2e160b2dc3e
use openssl-3.x branch while syncing
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 22 Jun 2021 07:47:35 +0200 |
parents | 64bf8914f02e |
children | eb03551d3a5f |
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 | |
167 | 55 include_directories(${ORTHANC_FRAMEWORK_ROOT}) |
56 | |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
57 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
|
58 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
|
59 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
|
60 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
|
61 |
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 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
|
63 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
|
64 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
|
65 |
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 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
|
67 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
|
68 |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
69 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
|
70 |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
71 if (ENABLE_SQLITE_BACKEND) |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
72 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
|
73 endif() |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
74 |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
75 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
|
76 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
|
77 mark_as_advanced(USE_GOOGLE_TEST_DEBIAN_PACKAGE) |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
78 include(${CMAKE_SOURCE_DIR}/../Resources/Orthanc/CMake/GoogleTestConfiguration.cmake) |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
79 |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
80 else() |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
81 # 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
|
82 # with databases |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
83 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
|
84 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
|
85 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
|
86 |
167 | 87 include(${ORTHANC_FRAMEWORK_ROOT}/../Resources/CMake/OrthancFrameworkConfiguration.cmake) |
156
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
88 endif() |
710537acb488
dynamic linking against the system-wide Orthanc framework library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
89 |
0 | 90 |
91 | |
92 ##################################################################### | |
93 ## Common source files for the databases | |
94 ##################################################################### | |
95 | |
96 set(ORTHANC_DATABASES_ROOT ${CMAKE_CURRENT_LIST_DIR}/../..) | |
97 | |
98 set(DATABASES_SOURCES | |
99 ${ORTHANC_DATABASES_ROOT}/Framework/Common/BinaryStringValue.cpp | |
100 ${ORTHANC_DATABASES_ROOT}/Framework/Common/DatabaseManager.cpp | |
101 ${ORTHANC_DATABASES_ROOT}/Framework/Common/Dictionary.cpp | |
102 ${ORTHANC_DATABASES_ROOT}/Framework/Common/GenericFormatter.cpp | |
23
b2ff1cd2907a
handling of implicit transactions in DatabaseManager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3
diff
changeset
|
103 ${ORTHANC_DATABASES_ROOT}/Framework/Common/ImplicitTransaction.cpp |
244
02cd7254c949
separating class InputFileValue from FileValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
226
diff
changeset
|
104 ${ORTHANC_DATABASES_ROOT}/Framework/Common/InputFileValue.cpp |
0 | 105 ${ORTHANC_DATABASES_ROOT}/Framework/Common/Integer64Value.cpp |
106 ${ORTHANC_DATABASES_ROOT}/Framework/Common/NullValue.cpp | |
107 ${ORTHANC_DATABASES_ROOT}/Framework/Common/Query.cpp | |
108 ${ORTHANC_DATABASES_ROOT}/Framework/Common/ResultBase.cpp | |
245
9d00e5e073e8
rename FileValue as ResultFileValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
244
diff
changeset
|
109 ${ORTHANC_DATABASES_ROOT}/Framework/Common/ResultFileValue.cpp |
226
a4918d57435c
DatabaseManager doesn't IDatabaseFactory anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
110 ${ORTHANC_DATABASES_ROOT}/Framework/Common/RetryDatabaseFactory.cpp |
a4918d57435c
DatabaseManager doesn't IDatabaseFactory anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
111 ${ORTHANC_DATABASES_ROOT}/Framework/Common/RetryDatabaseFactory.cpp |
0 | 112 ${ORTHANC_DATABASES_ROOT}/Framework/Common/StatementLocation.cpp |
113 ${ORTHANC_DATABASES_ROOT}/Framework/Common/Utf8StringValue.cpp | |
114 ) | |
115 | |
116 | |
117 ##################################################################### | |
118 ## Configure SQLite if need be | |
119 ##################################################################### | |
120 | |
121 if (ENABLE_SQLITE_BACKEND) | |
122 list(APPEND DATABASES_SOURCES | |
123 ${ORTHANC_DATABASES_ROOT}/Framework/SQLite/SQLiteDatabase.cpp | |
124 ${ORTHANC_DATABASES_ROOT}/Framework/SQLite/SQLiteResult.cpp | |
125 ${ORTHANC_DATABASES_ROOT}/Framework/SQLite/SQLiteStatement.cpp | |
126 ${ORTHANC_DATABASES_ROOT}/Framework/SQLite/SQLiteTransaction.cpp | |
127 ) | |
128 endif() | |
129 | |
130 | |
131 ##################################################################### | |
132 ## Configure MySQL client (MariaDB) if need be | |
133 ##################################################################### | |
134 | |
135 if (ENABLE_MYSQL_BACKEND) | |
136 include(${CMAKE_CURRENT_LIST_DIR}/MariaDBConfiguration.cmake) | |
137 add_definitions(-DORTHANC_ENABLE_MYSQL=1) | |
138 list(APPEND DATABASES_SOURCES | |
139 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLDatabase.cpp | |
140 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLParameters.cpp | |
141 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLResult.cpp | |
142 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLStatement.cpp | |
143 ${ORTHANC_DATABASES_ROOT}/Framework/MySQL/MySQLTransaction.cpp | |
144 ${MYSQL_CLIENT_SOURCES} | |
145 ) | |
146 else() | |
147 unset(USE_SYSTEM_MYSQL_CLIENT CACHE) | |
148 add_definitions(-DORTHANC_ENABLE_MYSQL=0) | |
149 endif() | |
150 | |
151 | |
152 | |
153 ##################################################################### | |
154 ## Configure PostgreSQL client if need be | |
155 ##################################################################### | |
156 | |
157 if (ENABLE_POSTGRESQL_BACKEND) | |
158 include(${CMAKE_CURRENT_LIST_DIR}/PostgreSQLConfiguration.cmake) | |
159 add_definitions(-DORTHANC_ENABLE_POSTGRESQL=1) | |
160 list(APPEND DATABASES_SOURCES | |
161 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLDatabase.cpp | |
162 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLLargeObject.cpp | |
163 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLParameters.cpp | |
164 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLResult.cpp | |
165 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLStatement.cpp | |
166 ${ORTHANC_DATABASES_ROOT}/Framework/PostgreSQL/PostgreSQLTransaction.cpp | |
167 ${LIBPQ_SOURCES} | |
168 ) | |
169 else() | |
170 unset(USE_SYSTEM_LIBPQ CACHE) | |
171 add_definitions(-DORTHANC_ENABLE_POSTGRESQL=0) | |
172 endif() |