|
const Builder = @import("std").build.Builder;
|
|
|
|
pub fn build(b: &Builder) -> %void {
|
|
b.addCIncludePath(".");
|
|
|
|
const main = b.addTest("main.zig");
|
|
main.setBuildMode(b.standardReleaseOptions());
|
|
|
|
const test_step = b.step("test", "Test it");
|
|
test_step.dependOn(&main.step);
|
|
}
|