aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2024-05-26 14:58:19 +0100
committerMartin Ashby <martin@ashbysoft.com>2024-05-26 14:58:19 +0100
commit8efa8343dc942378694c251dc0afdf0d849bc9c1 (patch)
tree7e25fbad96fa4f972a1c125f42171535f0a08406 /build.zig
parentbf5dfce3b5e49259ef7b11dea2ea364347d459d6 (diff)
downloadpq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.gz
pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.bz2
pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.xz
pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.zip
Changes for latest zigHEADmain
Plus an extremely basic test
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig9
1 files changed, 5 insertions, 4 deletions
diff --git a/build.zig b/build.zig
index bf8170b..5e773f9 100644
--- a/build.zig
+++ b/build.zig
@@ -6,24 +6,25 @@ pub fn build(b: *std.Build) void {
const lib = b.addStaticLibrary(.{
.name = "pq",
- .root_source_file = .{ .path = "src/main.zig" },
+ .root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
lib.linkLibC();
lib.linkSystemLibrary("libpq");
- lib.addIncludePath(.{ .path = "/usr/include" });
// for zig package manager
- _ = b.addModule("pq", .{ .root_source_file = .{ .path = "src/main.zig" } });
+ _ = b.addModule("pq", .{ .root_source_file = b.path("src/main.zig") });
b.installArtifact(lib);
const main_tests = b.addTest(.{
- .root_source_file = .{ .path = "src/main.zig" },
+ .root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
+ main_tests.linkLibC();
+ main_tests.linkSystemLibrary("libpq");
const run_main_tests = b.addRunArtifact(main_tests);