mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-06 02:36:04 -04:00
Merge pull request #300 Update SQLite3 from 3.32.3 to 3.33.0 (2020-08-14) from catalogm/update_sqlite3
This commit is contained in:
commit
adb7e7c489
@ -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)
|
||||
|
@ -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"))
|
||||
|
19230
sqlite3/sqlite3.c
19230
sqlite3/sqlite3.c
File diff suppressed because it is too large
Load Diff
1378
sqlite3/sqlite3.h
1378
sqlite3/sqlite3.h
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user