From 6e13565ade12a1a2e60a7a81e141cd3380da9730 Mon Sep 17 00:00:00 2001 From: Jeremy Collins Date: Wed, 5 Aug 2026 22:18:24 -0400 Subject: [PATCH] build: put the vendored SQLite in the package The raster chart reader needs sqlite3.c, and .paths did not list it, so a project that fetched tile57 as a dependency could not build. --- build.zig.zon | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig.zon b/build.zig.zon index b7b45a7b..2d34d204 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -38,6 +38,7 @@ "vendor/lua", "vendor/nanosvg", "vendor/s101", + "vendor/sqlite", "vendor/stb", "LICENSE", "THIRD_PARTY_LICENSES.md",