comparison OrthancFramework/Resources/CMake/SQLiteConfiguration.cmake @ 4044:d25f4c0fa160 framework

splitting code into OrthancFramework and OrthancServer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Jun 2020 20:30:34 +0200
parents Resources/CMake/SQLiteConfiguration.cmake@f9863630ec7f
children 304842a0d152
comparison
equal deleted inserted replaced
4043:6c6239aec462 4044:d25f4c0fa160
1 if (APPLE)
2 # Under OS X, the binaries must always be linked against the
3 # system-wide version of SQLite. Otherwise, if some Orthanc plugin
4 # also uses its own version of SQLite (such as orthanc-webviewer),
5 # this results in a crash in "sqlite3_mutex_enter(db->mutex);" (the
6 # mutex is not initialized), probably because the EXE and the DYNLIB
7 # share the same memory location for this mutex.
8 set(SQLITE_STATIC OFF)
9
10 elseif (STATIC_BUILD OR NOT USE_SYSTEM_SQLITE)
11 set(SQLITE_STATIC ON)
12 else()
13 set(SQLITE_STATIC OFF)
14 endif()
15
16
17 if (SQLITE_STATIC)
18 SET(SQLITE_SOURCES_DIR ${CMAKE_BINARY_DIR}/sqlite-amalgamation-3270100)
19 SET(SQLITE_MD5 "16717b26358ba81f0bfdac07addc77da")
20 SET(SQLITE_URL "http://orthanc.osimis.io/ThirdPartyDownloads/sqlite-amalgamation-3270100.zip")
21
22 set(ORTHANC_SQLITE_VERSION 3027001)
23
24 DownloadPackage(${SQLITE_MD5} ${SQLITE_URL} "${SQLITE_SOURCES_DIR}")
25
26 set(SQLITE_SOURCES
27 ${SQLITE_SOURCES_DIR}/sqlite3.c
28 )
29
30 add_definitions(
31 # For SQLite to run in the "Serialized" thread-safe mode
32 # http://www.sqlite.org/threadsafe.html
33 -DSQLITE_THREADSAFE=1
34 -DSQLITE_OMIT_LOAD_EXTENSION # Disable SQLite plugins
35 )
36
37 include_directories(
38 ${SQLITE_SOURCES_DIR}
39 )
40
41 source_group(ThirdParty\\SQLite REGULAR_EXPRESSION ${SQLITE_SOURCES_DIR}/.*)
42
43 else()
44 CHECK_INCLUDE_FILE(sqlite3.h HAVE_SQLITE_H)
45 if (NOT HAVE_SQLITE_H)
46 message(FATAL_ERROR "Please install the libsqlite3-dev package")
47 endif()
48
49 find_path(SQLITE_INCLUDE_DIR
50 NAMES sqlite3.h
51 PATHS
52 /usr/include
53 /usr/local/include
54 )
55 message("SQLite include dir: ${SQLITE_INCLUDE_DIR}")
56
57 # Autodetection of the version of SQLite
58 file(STRINGS "${SQLITE_INCLUDE_DIR}/sqlite3.h" SQLITE_VERSION_NUMBER1 REGEX "#define SQLITE_VERSION_NUMBER.*$")
59 string(REGEX REPLACE "#define SQLITE_VERSION_NUMBER(.*)$" "\\1" SQLITE_VERSION_NUMBER2 ${SQLITE_VERSION_NUMBER1})
60
61 # Remove the trailing spaces to convert the string to a proper integer
62 string(STRIP ${SQLITE_VERSION_NUMBER2} ORTHANC_SQLITE_VERSION)
63
64 message("Detected version of SQLite: ${ORTHANC_SQLITE_VERSION}")
65
66 IF (${ORTHANC_SQLITE_VERSION} LESS 3007000)
67 # "sqlite3_create_function_v2" is not defined in SQLite < 3.7.0
68 message(FATAL_ERROR "SQLite version must be above 3.7.0. Please set the CMake variable USE_SYSTEM_SQLITE to OFF.")
69 ENDIF()
70
71 link_libraries(sqlite3)
72 endif()
73
74
75 add_definitions(
76 -DORTHANC_SQLITE_VERSION=${ORTHANC_SQLITE_VERSION}
77 )