18 lines
581 B
Zig
18 lines
581 B
Zig
const Builder = @import("std").build.Builder;
|
|
|
|
pub fn build(b: &Builder) {
|
|
const exe = b.addExecutable("test", "test.zig");
|
|
exe.addPackagePath("my_pkg", "pkg.zig");
|
|
|
|
// This is duplicated to test that you are allowed to call
|
|
// b.standardReleaseOptions() twice.
|
|
exe.setBuildMode(b.standardReleaseOptions());
|
|
exe.setBuildMode(b.standardReleaseOptions());
|
|
|
|
const run = b.addCommand(".", b.env_map, [][]const u8{exe.getOutputPath()});
|
|
run.step.dependOn(&exe.step);
|
|
|
|
const test_step = b.step("test", "Test it");
|
|
test_step.dependOn(&run.step);
|
|
}
|