Mercurial > hg > orthanc
annotate OrthancFramework/Resources/CMake/SQLiteConfiguration.cmake @ 5278:ed7257b61bd7
back to mainline
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 14 Apr 2023 17:43:54 +0200 |
parents | c5f243ad7103 |
children | aa1c09fa6632 |
rev | line source |
---|---|
4120
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
1 # Orthanc - A Lightweight, RESTful DICOM Store |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
2 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
3 # Department, University Hospital of Liege, Belgium |
5185
0ea402b4d901
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4870
diff
changeset
|
4 # Copyright (C) 2017-2023 Osimis S.A., Belgium |
0ea402b4d901
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4870
diff
changeset
|
5 # Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4120
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
6 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
7 # This program is free software: you can redistribute it and/or |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
8 # modify it under the terms of the GNU Lesser General Public License |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
9 # as published by the Free Software Foundation, either version 3 of |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
10 # the License, or (at your option) any later version. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
11 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
12 # This program is distributed in the hope that it will be useful, but |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
13 # WITHOUT ANY WARRANTY; without even the implied warranty of |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
15 # Lesser General Public License for more details. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
16 # |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
17 # You should have received a copy of the GNU Lesser General Public |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
18 # License along with this program. If not, see |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
19 # <http://www.gnu.org/licenses/>. |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
20 |
304842a0d152
adding missing license headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
21 |
1475 | 22 if (APPLE) |
23 # Under OS X, the binaries must always be linked against the | |
24 # system-wide version of SQLite. Otherwise, if some Orthanc plugin | |
25 # also uses its own version of SQLite (such as orthanc-webviewer), | |
26 # this results in a crash in "sqlite3_mutex_enter(db->mutex);" (the | |
27 # mutex is not initialized), probably because the EXE and the DYNLIB | |
28 # share the same memory location for this mutex. | |
29 set(SQLITE_STATIC OFF) | |
30 | |
31 elseif (STATIC_BUILD OR NOT USE_SYSTEM_SQLITE) | |
32 set(SQLITE_STATIC ON) | |
33 else() | |
34 set(SQLITE_STATIC OFF) | |
35 endif() | |
36 | |
37 | |
38 if (SQLITE_STATIC) | |
3291
508fa367c493
upgrade to sqlite amalgamation 3.27.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3133
diff
changeset
|
39 SET(SQLITE_SOURCES_DIR ${CMAKE_BINARY_DIR}/sqlite-amalgamation-3270100) |
508fa367c493
upgrade to sqlite amalgamation 3.27.1
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3133
diff
changeset
|
40 SET(SQLITE_MD5 "16717b26358ba81f0bfdac07addc77da") |
5271
c5f243ad7103
switch third party downloads to UCLouvain which provides faster network
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
41 SET(SQLITE_URL "https://orthanc.uclouvain.be/third-party-downloads/sqlite-amalgamation-3270100.zip") |
1537
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1475
diff
changeset
|
42 |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
43 set(ORTHANC_SQLITE_VERSION 3027001) |
2302
f31dfb131dee
fix backward compatibility with SQLite < 3.19.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2186
diff
changeset
|
44 |
1537
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1475
diff
changeset
|
45 DownloadPackage(${SQLITE_MD5} ${SQLITE_URL} "${SQLITE_SOURCES_DIR}") |
735 | 46 |
1414 | 47 set(SQLITE_SOURCES |
735 | 48 ${SQLITE_SOURCES_DIR}/sqlite3.c |
49 ) | |
50 | |
51 add_definitions( | |
52 # For SQLite to run in the "Serialized" thread-safe mode | |
53 # http://www.sqlite.org/threadsafe.html | |
54 -DSQLITE_THREADSAFE=1 | |
55 -DSQLITE_OMIT_LOAD_EXTENSION # Disable SQLite plugins | |
56 ) | |
57 | |
58 include_directories( | |
59 ${SQLITE_SOURCES_DIR} | |
60 ) | |
61 | |
62 source_group(ThirdParty\\SQLite REGULAR_EXPRESSION ${SQLITE_SOURCES_DIR}/.*) | |
63 | |
64 else() | |
3833
a3e38994d95a
compilation on mips qemu
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3291
diff
changeset
|
65 CHECK_INCLUDE_FILE(sqlite3.h HAVE_SQLITE_H) |
735 | 66 if (NOT HAVE_SQLITE_H) |
67 message(FATAL_ERROR "Please install the libsqlite3-dev package") | |
68 endif() | |
69 | |
3833
a3e38994d95a
compilation on mips qemu
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3291
diff
changeset
|
70 find_path(SQLITE_INCLUDE_DIR |
a3e38994d95a
compilation on mips qemu
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3291
diff
changeset
|
71 NAMES sqlite3.h |
a3e38994d95a
compilation on mips qemu
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3291
diff
changeset
|
72 PATHS |
1335
4bed63189508
enhanced header lookup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1334
diff
changeset
|
73 /usr/include |
4bed63189508
enhanced header lookup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1334
diff
changeset
|
74 /usr/local/include |
4bed63189508
enhanced header lookup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1334
diff
changeset
|
75 ) |
1334 | 76 message("SQLite include dir: ${SQLITE_INCLUDE_DIR}") |
77 | |
735 | 78 # Autodetection of the version of SQLite |
1334 | 79 file(STRINGS "${SQLITE_INCLUDE_DIR}/sqlite3.h" SQLITE_VERSION_NUMBER1 REGEX "#define SQLITE_VERSION_NUMBER.*$") |
2302
f31dfb131dee
fix backward compatibility with SQLite < 3.19.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2186
diff
changeset
|
80 string(REGEX REPLACE "#define SQLITE_VERSION_NUMBER(.*)$" "\\1" SQLITE_VERSION_NUMBER2 ${SQLITE_VERSION_NUMBER1}) |
f31dfb131dee
fix backward compatibility with SQLite < 3.19.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2186
diff
changeset
|
81 |
f31dfb131dee
fix backward compatibility with SQLite < 3.19.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2186
diff
changeset
|
82 # Remove the trailing spaces to convert the string to a proper integer |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
83 string(STRIP ${SQLITE_VERSION_NUMBER2} ORTHANC_SQLITE_VERSION) |
735 | 84 |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
85 message("Detected version of SQLite: ${ORTHANC_SQLITE_VERSION}") |
735 | 86 |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
87 IF (${ORTHANC_SQLITE_VERSION} LESS 3007000) |
735 | 88 # "sqlite3_create_function_v2" is not defined in SQLite < 3.7.0 |
89 message(FATAL_ERROR "SQLite version must be above 3.7.0. Please set the CMake variable USE_SYSTEM_SQLITE to OFF.") | |
90 ENDIF() | |
91 | |
92 link_libraries(sqlite3) | |
93 endif() | |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
94 |
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
95 |
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
96 add_definitions( |
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
97 -DORTHANC_SQLITE_VERSION=${ORTHANC_SQLITE_VERSION} |
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3833
diff
changeset
|
98 ) |