Skip to content

Commit adb7e7c

Browse files
authored
Merge pull request #300 Update SQLite3 from 3.32.3 to 3.33.0 (2020-08-14) from catalogm/update_sqlite3
2 parents 4e3d36a + 9875a75 commit adb7e7c

File tree

4 files changed

+10681
-9936
lines changed

4 files changed

+10681
-9936
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,7 @@ Version 3.1.0 - August 11 2020
185185

186186
Version 3.1.1 - August 19 2020
187187
- #292 Fix compilation if using SQLITE_HAS_CODEC from sum01/fix_sqlcipher_compile
188-
- #293 Remove FindSQLiteCpp.cmake from sum01/fix_283
188+
- #293 Remove FindSQLiteCpp.cmake from sum01/fix_283
189+
190+
Version 3.2.0 - September 10 2020
191+
- Updated SQLite3 from 3.32.3 to 3.33.0 (2020-08-14)

sqlite3/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ if (SQLITE_ENABLE_JSON1)
2727
target_compile_definitions(sqlite3 PUBLIC SQLITE_ENABLE_JSON1)
2828
endif (SQLITE_ENABLE_JSON1)
2929

30+
if(SQLITE_ENABLE_RTREE)
31+
# Enable RTree extension when building sqlite3
32+
# See more here: https://sqlite.org/rtree.html
33+
target_compile_definitions(sqlite3 PUBLIC SQLITE_ENABLE_RTREE)
34+
endif (SQLITE_ENABLE_RTREE)
35+
3036
if (UNIX AND (CMAKE_COMPILER_IS_GNUCXX OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang"))
3137
set_target_properties(sqlite3 PROPERTIES COMPILE_FLAGS "-fPIC")
3238
endif (UNIX AND (CMAKE_COMPILER_IS_GNUCXX OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang"))

0 commit comments

Comments
 (0)