mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
9 lines
225 B
Zig
9 lines
225 B
Zig
const Builder = @import("std").build.Builder;
|
|
|
|
pub fn build(b: &Builder) void {
|
|
const obj = b.addObject("test", "test.zig");
|
|
|
|
const test_step = b.step("test", "Test the program");
|
|
test_step.dependOn(&obj.step);
|
|
}
|