diff options
Diffstat (limited to 'comments/build.zig')
-rw-r--r-- | comments/build.zig | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/comments/build.zig b/comments/build.zig index c978095..958fb6d 100644 --- a/comments/build.zig +++ b/comments/build.zig @@ -29,10 +29,8 @@ pub fn build(b: *std.Build) void { const zws = b.dependency("zigwebserver", opts); exe.root_module.addImport("zws", zws.module("zigwebserver")); - const pq = b.dependency("pq", opts); - exe.root_module.addImport("pq", pq.module("pq")); - exe.linkLibC(); - exe.linkSystemLibrary("pq"); + const pg = b.dependency("pg", opts); + exe.root_module.addImport("pg", pg.module("pg")); const mustache = b.dependency("mustache", opts); exe.root_module.addImport("mustache", mustache.module("mustache")); |