Skip to content

Commit

Permalink
Updated SQLite3 from 3.32.3 to 3.33.0 (2020-08-14)
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinhammond committed Sep 10, 2020
1 parent 4e3d36a commit 9875a75
Show file tree
Hide file tree
Showing 4 changed files with 10,681 additions and 9,936 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
6 changes: 6 additions & 0 deletions sqlite3/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
Loading

0 comments on commit 9875a75

Please sign in to comment.