zig/test/standalone/static_c_lib/build.zig

26 lines
705 B
Zig
Raw Normal View History

const std = @import("std");
pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test it");
b.default_step = test_step;
const optimize: std.builtin.OptimizeMode = .Debug;
2023-01-31 04:39:43 +00:00
const foo = b.addStaticLibrary(.{
.name = "foo",
.optimize = optimize,
.target = b.graph.host,
2023-01-31 04:39:43 +00:00
});
foo.addCSourceFile(.{ .file = b.path("foo.c"), .flags = &[_][]const u8{} });
foo.addIncludePath(b.path("."));
2023-01-31 04:39:43 +00:00
const test_exe = b.addTest(.{
.root_source_file = b.path("foo.zig"),
2023-01-31 04:39:43 +00:00
.optimize = optimize,
});
test_exe.linkLibrary(foo);
test_exe.addIncludePath(b.path("."));
test_step.dependOn(&b.addRunArtifact(test_exe).step);
}