File tree 4 files changed +10681
-9936
lines changed
4 files changed +10681
-9936
lines changed Original file line number Diff line number Diff line change @@ -185,4 +185,7 @@ Version 3.1.0 - August 11 2020
185
185
186
186
Version 3.1.1 - August 19 2020
187
187
- #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)
Original file line number Diff line number Diff line change @@ -27,6 +27,12 @@ if (SQLITE_ENABLE_JSON1)
27
27
target_compile_definitions (sqlite3 PUBLIC SQLITE_ENABLE_JSON1)
28
28
endif (SQLITE_ENABLE_JSON1)
29
29
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
+
30
36
if (UNIX AND (CMAKE_COMPILER_IS_GNUCXX OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" ))
31
37
set_target_properties (sqlite3 PROPERTIES COMPILE_FLAGS "-fPIC" )
32
38
endif (UNIX AND (CMAKE_COMPILER_IS_GNUCXX OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" ))
You can’t perform that action at this time.
0 commit comments