New SQLite Only Unbundled Option (#4983)

* New SQLite Only Unbundled Option

A new option to use an unbundled (external) SQLite but all other dependencies internal.

* Match Other Option Styles

Force the POCO_SQLITE_UNBUNDLED option to ON when POCO_UNBUNDLED is on. Switching to this style to match the rest of the Poco cmake options.
This commit is contained in:
Andrew Auclair
2025-08-12 02:47:20 -04:00
committed by GitHub
parent 8e295ca01d
commit 20c993b819
9 changed files with 22 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
include(CMakeFindDependencyMacro)
find_dependency(PocoFoundation)
find_dependency(PocoData)
if(@POCO_UNBUNDLED@)
if(@POCO_SQLITE_UNBUNDLED@)
if(CMAKE_VERSION VERSION_LESS "3.14")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/V313")
endif()