File tree Expand file tree Collapse file tree 4 files changed +10681
-9936
lines changed Expand file tree Collapse file tree 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
185185
186186Version 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)
Original file line number Diff line number Diff line change @@ -27,6 +27,12 @@ if (SQLITE_ENABLE_JSON1)
2727 target_compile_definitions (sqlite3 PUBLIC SQLITE_ENABLE_JSON1)
2828endif (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+
3036if (UNIX AND (CMAKE_COMPILER_IS_GNUCXX OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" ))
3137 set_target_properties (sqlite3 PROPERTIES COMPILE_FLAGS "-fPIC" )
3238endif (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