summaryrefslogtreecommitdiff
path: root/build.zig.zon
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2025-01-12 18:31:10 +0100
committerGravatar Vincent Rischmann2025-02-13 18:40:57 +0100
commitb1e1bc8ef8d8a039a45be998e9c15e086ae4c52d (patch)
treee535f062fae139c4ed568f0788c4ce0b031971a7 /build.zig.zon
parentfix tests for latest zig (diff)
downloadzig-sqlite-b1e1bc8ef8d8a039a45be998e9c15e086ae4c52d.tar.gz
zig-sqlite-b1e1bc8ef8d8a039a45be998e9c15e086ae4c52d.tar.xz
zig-sqlite-b1e1bc8ef8d8a039a45be998e9c15e086ae4c52d.zip
stop vendoring the sqlite C code, rework the build
* Use the zig package manager to fetch sqlite directly from upstream * Integrate the preprocessing tool directly into the build script This makes it simpler to upgrade the SQLite source code: * use `zig fetch` * run `zig build preprocess-headers`
Diffstat (limited to 'build.zig.zon')
-rw-r--r--build.zig.zon8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.zig.zon b/build.zig.zon
index edf75fe..3513d15 100644
--- a/build.zig.zon
+++ b/build.zig.zon
@@ -1,5 +1,11 @@
1.{ 1.{
2 .name = "sqlite", 2 .name = "sqlite",
3 .version = "3.47.2", 3 .version = "3.48.0",
4 .dependencies = .{
5 .sqlite = .{
6 .url = "https://sqlite.org/2025/sqlite-amalgamation-3480000.zip",
7 .hash = "1220972595d70da33d69d519392742482cb9762935cecb99924e31f3898d2a330861",
8 },
9 },
4 .paths = .{"."}, 10 .paths = .{"."},
5} 11}