Updated SQLite3 from 3.32.3 to 3.33.0 (2020-08-14)

This commit is contained in:
Kelvin Hammond 2020-09-10 18:54:32 -04:00
parent 4e3d36af2d
commit 9875a7591a
4 changed files with 10682 additions and 9937 deletions

View File

@ -185,4 +185,7 @@ Version 3.1.0 - August 11 2020
Version 3.1.1 - August 19 2020
- #292 Fix compilation if using SQLITE_HAS_CODEC from sum01/fix_sqlcipher_compile
- #293 Remove FindSQLiteCpp.cmake from sum01/fix_283
- #293 Remove FindSQLiteCpp.cmake from sum01/fix_283
Version 3.2.0 - September 10 2020
- Updated SQLite3 from 3.32.3 to 3.33.0 (2020-08-14)

View File

@ -27,6 +27,12 @@ if (SQLITE_ENABLE_JSON1)
target_compile_definitions(sqlite3 PUBLIC SQLITE_ENABLE_JSON1)
endif (SQLITE_ENABLE_JSON1)
if(SQLITE_ENABLE_RTREE)
# Enable RTree extension when building sqlite3
# See more here: https://sqlite.org/rtree.html
target_compile_definitions(sqlite3 PUBLIC SQLITE_ENABLE_RTREE)
endif (SQLITE_ENABLE_RTREE)
if (UNIX AND (CMAKE_COMPILER_IS_GNUCXX OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang"))
set_target_properties(sqlite3 PROPERTIES COMPILE_FLAGS "-fPIC")
endif (UNIX AND (CMAKE_COMPILER_IS_GNUCXX OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang"))

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff