blob: 9f268d4cb864cf7ea6a405ddf238f2b040af7c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
const std = @import("std");
pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test the program");
b.default_step = test_step;
const optimize = std.builtin.OptimizeMode.Debug;
const target = b.graph.host;
const main = b.addExecutable(.{
.name = "main",
.root_module = b.createModule(.{
.root_source_file = b.path("main.zig"),
.optimize = optimize,
.target = target,
.strip = true,
}),
});
// TODO: actually check the output
_ = main.getEmittedBin();
test_step.dependOn(&main.step);
}
|