mirror of
https://github.com/ziglang/zig.git
synced 2024-12-02 18:12:34 +00:00
0f633167c5
closes #339
9 lines
220 B
Zig
9 lines
220 B
Zig
const Builder = @import("std").build.Builder;
|
|
|
|
pub fn build(b: &Builder) {
|
|
const obj = b.addObject("test", "test.zig");
|
|
|
|
const test_step = b.step("test", "Test the program");
|
|
test_step.dependOn(&obj.step);
|
|
}
|