diff Resources/CMake/SQLiteConfiguration.cmake @ 0:3959d33612cc

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 19 Jul 2012 14:32:22 +0200
parents
children 3a584803783e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Resources/CMake/SQLiteConfiguration.cmake	Thu Jul 19 14:32:22 2012 +0200
@@ -0,0 +1,17 @@
+SET(SQLITE_SOURCES_DIR ${CMAKE_BINARY_DIR}/sqlite-amalgamation-3071300)
+DownloadPackage("http://www.sqlite.org/sqlite-amalgamation-3071300.zip" "${SQLITE_SOURCES_DIR}" "" "")
+
+list(APPEND THIRD_PARTY_SOURCES
+  ${SQLITE_SOURCES_DIR}/sqlite3.c
+  )
+
+add_definitions(
+  # For SQLite to run in the "Serialized" thread-safe mode
+  # http://www.sqlite.org/threadsafe.html
+  -DSQLITE_THREADSAFE=1  
+  -DSQLITE_OMIT_LOAD_EXTENSION  # Disable SQLite plugins
+  )
+
+include_directories(
+  ${SQLITE_SOURCES_DIR}
+  )