diff options
| author | 2025-01-28 23:39:08 +0100 | |
|---|---|---|
| committer | 2025-02-16 00:02:44 +0100 | |
| commit | 91a4ce31717be608bd838a58de865bd9c427725a (patch) | |
| tree | ffe273951dd860dae09990ca9878128509cfea74 | |
| parent | stop vendoring the sqlite C code, rework the build (diff) | |
| download | zig-sqlite-91a4ce31717be608bd838a58de865bd9c427725a.tar.gz zig-sqlite-91a4ce31717be608bd838a58de865bd9c427725a.tar.xz zig-sqlite-91a4ce31717be608bd838a58de865bd9c427725a.zip | |
build: install the sqlite library artifact
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -185,7 +185,7 @@ pub fn build(b: *std.Build) !void { | |||
| 185 | 185 | ||
| 186 | break :blk .{ lib, mod }; | 186 | break :blk .{ lib, mod }; |
| 187 | }; | 187 | }; |
| 188 | _ = sqlite_lib; | 188 | b.installArtifact(sqlite_lib); |
| 189 | 189 | ||
| 190 | const sqliteext_mod = blk: { | 190 | const sqliteext_mod = blk: { |
| 191 | const lib = makeSQLiteLib(b, sqlite_dep, c_flags, target, optimize, .without); | 191 | const lib = makeSQLiteLib(b, sqlite_dep, c_flags, target, optimize, .without); |