Mercurial > hg > orthanc-databases
annotate MySQL/CMakeLists.txt @ 316:1c2cd90418c9
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 19 Jul 2021 14:59:36 +0200 |
parents | 11641063ddb2 |
children | be8b0ac774e2 |
rev | line source |
---|---|
0 | 1 cmake_minimum_required(VERSION 2.8) |
2 project(OrthancMySQL) | |
3 | |
293 | 4 set(ORTHANC_PLUGIN_VERSION "mainline") |
0 | 5 |
129
534759b0cf14
use of macros to report performance warnings
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
123
diff
changeset
|
6 set(ORTHANC_OPTIMAL_VERSION_MAJOR 1) |
275
b6ddd7b7e8ca
updated ORTHANC_OPTIMAL_VERSION macros
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
272
diff
changeset
|
7 set(ORTHANC_OPTIMAL_VERSION_MINOR 9) |
b6ddd7b7e8ca
updated ORTHANC_OPTIMAL_VERSION macros
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
272
diff
changeset
|
8 set(ORTHANC_OPTIMAL_VERSION_REVISION 2) |
129
534759b0cf14
use of macros to report performance warnings
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
123
diff
changeset
|
9 |
0 | 10 if (ORTHANC_PLUGIN_VERSION STREQUAL "mainline") |
11 set(ORTHANC_FRAMEWORK_VERSION "mainline") | |
12 set(ORTHANC_FRAMEWORK_DEFAULT_SOURCE "hg") | |
13 else() | |
287 | 14 set(ORTHANC_FRAMEWORK_VERSION "1.9.4") |
0 | 15 set(ORTHANC_FRAMEWORK_DEFAULT_SOURCE "web") |
16 endif() | |
17 | |
18 include(${CMAKE_SOURCE_DIR}/../Resources/CMake/DatabasesPluginParameters.cmake) | |
19 | |
20 set(ENABLE_MYSQL_BACKEND ON) | |
183
2f94b2046d7c
upgrade to openssl 1.1.1, fix build if using MinGW 32bits
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
182
diff
changeset
|
21 set(OPENSSL_STATIC_VERSION "1.1.1" CACHE STRING "Force the use of OpenSSL 1.1.1" FORCE) |
0 | 22 |
23 include(${CMAKE_SOURCE_DIR}/../Resources/CMake/DatabasesPluginConfiguration.cmake) | |
24 | |
38 | 25 |
26 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
27 execute_process( | |
28 COMMAND | |
167 | 29 ${PYTHON_EXECUTABLE} ${ORTHANC_FRAMEWORK_ROOT}/../Resources/WindowsResources.py |
38 | 30 ${ORTHANC_PLUGIN_VERSION} "MySQL storage area plugin" OrthancMySQLStorage.dll |
31 "MySQL as a database back-end to Orthanc (storage area)" | |
32 ERROR_VARIABLE Failure | |
33 OUTPUT_FILE ${AUTOGENERATED_DIR}/StorageVersion.rc | |
34 ) | |
35 | |
36 if (Failure) | |
37 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
38 endif() | |
39 | |
40 execute_process( | |
41 COMMAND | |
167 | 42 ${PYTHON_EXECUTABLE} ${ORTHANC_FRAMEWORK_ROOT}/../Resources/WindowsResources.py |
38 | 43 ${ORTHANC_PLUGIN_VERSION} "MySQL index plugin" OrthancMySQLIndex.dll |
44 "MySQL as a database back-end to Orthanc (index)" | |
45 ERROR_VARIABLE Failure | |
46 OUTPUT_FILE ${AUTOGENERATED_DIR}/IndexVersion.rc | |
47 ) | |
48 | |
49 if (Failure) | |
50 message(FATAL_ERROR "Error while computing the version information: ${Failure}") | |
51 endif() | |
52 | |
53 set(INDEX_RESOURCES ${AUTOGENERATED_DIR}/IndexVersion.rc) | |
54 set(STORAGE_RESOURCES ${AUTOGENERATED_DIR}/StorageVersion.rc) | |
55 endif() | |
56 | |
57 | |
0 | 58 EmbedResources( |
87
48d445f756db
new extension implemented for MySQL: GetLastChangeIndex
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
69
diff
changeset
|
59 MYSQL_PREPARE_INDEX ${CMAKE_SOURCE_DIR}/Plugins/PrepareIndex.sql |
48d445f756db
new extension implemented for MySQL: GetLastChangeIndex
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
69
diff
changeset
|
60 MYSQL_GET_LAST_CHANGE_INDEX ${CMAKE_SOURCE_DIR}/Plugins/GetLastChangeIndex.sql |
110
441a472bfd93
new extension implemented for MySQL: CreateInstance
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
61 MYSQL_CREATE_INSTANCE ${CMAKE_SOURCE_DIR}/Plugins/CreateInstance.sql |
0 | 62 ) |
63 | |
155
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
64 add_custom_target( |
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
65 AutogeneratedTarget |
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
66 DEPENDS |
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
67 ${AUTOGENERATED_SOURCES} |
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
68 ) |
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
69 |
315
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
70 add_library(FrameworkForPlugins STATIC |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
71 ${AUTOGENERATED_SOURCES} |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
72 ${DATABASES_SOURCES} |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
73 ${ORTHANC_DATABASES_ROOT}/Framework/Plugins/PluginInitialization.cpp |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
74 Plugins/MySQLIndex.cpp |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
75 Plugins/MySQLStorageArea.cpp |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
76 ) |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
77 |
316 | 78 set_target_properties(FrameworkForPlugins PROPERTIES |
79 POSITION_INDEPENDENT_CODE ON | |
80 COMPILE_FLAGS -DORTHANC_ENABLE_LOGGING_PLUGIN=1 | |
315
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
81 ) |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
82 |
0 | 83 add_library(OrthancMySQLIndex SHARED |
38 | 84 ${INDEX_RESOURCES} |
24
17f849b2af34
sharing plugin initialization code
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
85 Plugins/IndexPlugin.cpp |
315
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
86 ) |
24
17f849b2af34
sharing plugin initialization code
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
87 |
315
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
88 add_library(OrthancMySQLStorage SHARED |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
89 ${STORAGE_RESOURCES} |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
90 Plugins/StoragePlugin.cpp |
0 | 91 ) |
92 | |
315
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
93 target_link_libraries(OrthancMySQLIndex FrameworkForPlugins) |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
94 target_link_libraries(OrthancMySQLStorage FrameworkForPlugins) |
11641063ddb2
speed up compilation by sharing library between plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
301
diff
changeset
|
95 |
155
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
96 add_dependencies(OrthancMySQLIndex AutogeneratedTarget) |
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
97 add_dependencies(OrthancMySQLStorage AutogeneratedTarget) |
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
98 |
0 | 99 message("Setting the version of the libraries to ${ORTHANC_PLUGIN_VERSION}") |
100 | |
101 add_definitions( | |
102 -DORTHANC_PLUGIN_VERSION="${ORTHANC_PLUGIN_VERSION}" | |
103 ) | |
104 | |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
105 set_target_properties(OrthancMySQLStorage PROPERTIES |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
106 VERSION ${ORTHANC_PLUGIN_VERSION} |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
107 SOVERSION ${ORTHANC_PLUGIN_VERSION} |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
108 COMPILE_FLAGS -DORTHANC_ENABLE_LOGGING_PLUGIN=1 |
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
109 ) |
0 | 110 |
111 set_target_properties(OrthancMySQLIndex PROPERTIES | |
112 VERSION ${ORTHANC_PLUGIN_VERSION} | |
113 SOVERSION ${ORTHANC_PLUGIN_VERSION} | |
114 COMPILE_FLAGS -DORTHANC_ENABLE_LOGGING_PLUGIN=1 | |
115 ) | |
116 | |
117 install( | |
2
17bce6a07b2b
storage plugin skeletons
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
118 TARGETS OrthancMySQLIndex OrthancMySQLStorage |
0 | 119 RUNTIME DESTINATION lib # Destination for Windows |
120 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
121 ) | |
122 | |
123 | |
124 add_executable(UnitTests | |
125 Plugins/MySQLIndex.cpp | |
17 | 126 Plugins/MySQLStorageArea.cpp |
0 | 127 UnitTests/UnitTestsMain.cpp |
17 | 128 |
0 | 129 ${DATABASES_SOURCES} |
130 ${GOOGLE_TEST_SOURCES} | |
131 ${AUTOGENERATED_SOURCES} | |
132 ) | |
133 | |
155
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
134 add_dependencies(UnitTests AutogeneratedTarget) |
23cf7def8e44
use of OrthancPluginsExports.cmake, avoid race conditions with EmbedResources.py
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
135 |
0 | 136 target_link_libraries(UnitTests ${GOOGLE_TEST_LIBRARIES}) |
137 set_target_properties(UnitTests PROPERTIES | |
138 COMPILE_FLAGS -DORTHANC_ENABLE_LOGGING_PLUGIN=0 | |
139 ) | |
294
adb5e86645a6
fix lsb build on the continuous integration server in release mode
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
292
diff
changeset
|
140 |
adb5e86645a6
fix lsb build on the continuous integration server in release mode
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
292
diff
changeset
|
141 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
295 | 142 # Explicitly adding "-lstdc++ -lm" during linking for LSB had to be |
294
adb5e86645a6
fix lsb build on the continuous integration server in release mode
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
292
diff
changeset
|
143 # introduced on the BuildBot server for LSB Release builds between |
adb5e86645a6
fix lsb build on the continuous integration server in release mode
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
292
diff
changeset
|
144 # "OrthancMySQL-4.0" and "OrthancMySQL-4.1", for unclear |
adb5e86645a6
fix lsb build on the continuous integration server in release mode
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
292
diff
changeset
|
145 # reasons. Without this option, many symbols are left undefined |
adb5e86645a6
fix lsb build on the continuous integration server in release mode
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
292
diff
changeset
|
146 # while linking "UnitTests" in release mode. Similar to: |
adb5e86645a6
fix lsb build on the continuous integration server in release mode
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
292
diff
changeset
|
147 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=14001 |
301 | 148 # |
149 # NB: This will be automatically added in Orthanc Framework > 1.9.5 | |
295 | 150 target_link_libraries(UnitTests stdc++ m) |
294
adb5e86645a6
fix lsb build on the continuous integration server in release mode
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
292
diff
changeset
|
151 endif() |