19 lines
515 B
Zig
19 lines
515 B
Zig
const Builder = @import("std").build.Builder;
|
|
|
|
pub fn build(b: *Builder) void {
|
|
const mode = b.standardReleaseOptions();
|
|
|
|
const foo = b.addStaticLibrary("foo", null);
|
|
foo.addCSourceFile("foo.c", &[_][]const u8{});
|
|
foo.setBuildMode(mode);
|
|
foo.addIncludeDir(".");
|
|
|
|
const test_exe = b.addTest("foo.zig");
|
|
test_exe.setBuildMode(mode);
|
|
test_exe.linkLibrary(foo);
|
|
test_exe.addIncludeDir(".");
|
|
|
|
const test_step = b.step("test", "Test it");
|
|
test_step.dependOn(&test_exe.step);
|
|
}
|