diff options
author | Martin Ashby <martin@ashbysoft.com> | 2024-05-26 14:58:19 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2024-05-26 14:58:19 +0100 |
commit | 8efa8343dc942378694c251dc0afdf0d849bc9c1 (patch) | |
tree | 7e25fbad96fa4f972a1c125f42171535f0a08406 /build.zig | |
parent | bf5dfce3b5e49259ef7b11dea2ea364347d459d6 (diff) | |
download | pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.gz pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.bz2 pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.tar.xz pq-zig-8efa8343dc942378694c251dc0afdf0d849bc9c1.zip |
Plus an extremely basic test
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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); |