comparison Orthanc/Resources/CMake/SQLiteConfiguration.cmake @ 78:d6da56f86e5a

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 25 Sep 2015 11:29:17 +0200
parents
children 08f30c8962a7
comparison
equal deleted inserted replaced
77:f44ebb25691c 78:d6da56f86e5a
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-3071300)
19 SET(SQLITE_MD5 "5fbeff9645ab035a1f580e90b279a16d")
20 SET(SQLITE_URL "http://www.montefiore.ulg.ac.be/~jodogne/Orthanc/ThirdPartyDownloads/sqlite-amalgamation-3071300.zip")
21
22 DownloadPackage(${SQLITE_MD5} ${SQLITE_URL} "${SQLITE_SOURCES_DIR}")
23
24 set(SQLITE_SOURCES
25 ${SQLITE_SOURCES_DIR}/sqlite3.c
26 )
27
28 add_definitions(
29 # For SQLite to run in the "Serialized" thread-safe mode
30 # http://www.sqlite.org/threadsafe.html
31 -DSQLITE_THREADSAFE=1
32 -DSQLITE_OMIT_LOAD_EXTENSION # Disable SQLite plugins
33 )
34
35 include_directories(
36 ${SQLITE_SOURCES_DIR}
37 )
38
39 source_group(ThirdParty\\SQLite REGULAR_EXPRESSION ${SQLITE_SOURCES_DIR}/.*)
40
41 else()
42 CHECK_INCLUDE_FILE_CXX(sqlite3.h HAVE_SQLITE_H)
43 if (NOT HAVE_SQLITE_H)
44 message(FATAL_ERROR "Please install the libsqlite3-dev package")
45 endif()
46
47 find_path(SQLITE_INCLUDE_DIR sqlite3.h
48 /usr/include
49 /usr/local/include
50 )
51 message("SQLite include dir: ${SQLITE_INCLUDE_DIR}")
52
53 # Autodetection of the version of SQLite
54 file(STRINGS "${SQLITE_INCLUDE_DIR}/sqlite3.h" SQLITE_VERSION_NUMBER1 REGEX "#define SQLITE_VERSION_NUMBER.*$")
55 string(REGEX REPLACE "#define SQLITE_VERSION_NUMBER(.*)$" "\\1" SQLITE_VERSION_NUMBER ${SQLITE_VERSION_NUMBER1})
56
57 message("Detected version of SQLite: ${SQLITE_VERSION_NUMBER}")
58
59 IF (${SQLITE_VERSION_NUMBER} LESS 3007000)
60 # "sqlite3_create_function_v2" is not defined in SQLite < 3.7.0
61 message(FATAL_ERROR "SQLite version must be above 3.7.0. Please set the CMake variable USE_SYSTEM_SQLITE to OFF.")
62 ENDIF()
63
64 link_libraries(sqlite3)
65 endif()