aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/sqlite3/vcpkg.json
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/sqlite3/vcpkg.json
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/sqlite3/vcpkg.json')
-rw-r--r--vcpkg/ports/sqlite3/vcpkg.json86
1 files changed, 86 insertions, 0 deletions
diff --git a/vcpkg/ports/sqlite3/vcpkg.json b/vcpkg/ports/sqlite3/vcpkg.json
new file mode 100644
index 0000000..7b0982e
--- /dev/null
+++ b/vcpkg/ports/sqlite3/vcpkg.json
@@ -0,0 +1,86 @@
+{
+ "name": "sqlite3",
+ "version": "3.51.0",
+ "description": "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.",
+ "homepage": "https://sqlite.org/",
+ "license": "blessing",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ],
+ "default-features": [
+ "json1"
+ ],
+ "features": {
+ "dbpage-vtab": {
+ "description": "Enable the recovery extension"
+ },
+ "dbstat": {
+ "description": "Enable the DBSTAT virtual table"
+ },
+ "fts3": {
+ "description": "Enable the FTS3 extension"
+ },
+ "fts4": {
+ "description": "Enable the FTS4 extension"
+ },
+ "fts5": {
+ "description": "Enable the FTS5 extension"
+ },
+ "geopoly": {
+ "description": "Enable geopoly functionality for sqlite3"
+ },
+ "json1": {
+ "description": "Enable JSON functionality for sqlite3"
+ },
+ "limit": {
+ "description": "Enable the UPDATE/DELETE LIMIT clause"
+ },
+ "math": {
+ "description": "Enable math functions"
+ },
+ "memsys3": {
+ "description": "Enable MEMSYS3"
+ },
+ "memsys5": {
+ "description": "Enable MEMSYS5"
+ },
+ "omit-load-extension": {
+ "description": "Enable loading of external extensions"
+ },
+ "rtree": {
+ "description": "Enable the RTREE extension"
+ },
+ "session": {
+ "description": "Enable the SESSION extension"
+ },
+ "snapshot": {
+ "description": "Enable the snapshot function"
+ },
+ "soundex": {
+ "description": "Enable the SOUNDEX scalar function"
+ },
+ "tool": {
+ "description": "Build sqlite3 executable",
+ "supports": "!uwp"
+ },
+ "unicode": {
+ "description": "Enable unicode support",
+ "dependencies": [
+ "icu"
+ ]
+ },
+ "zlib": {
+ "description": "Build sqlite3 command line tool with zlib support; has no effect on the library itself",
+ "dependencies": [
+ "zlib"
+ ]
+ }
+ }
+}