-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
build.zig
55 lines (48 loc) · 1.78 KB
/
build.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const builtin = @import("builtin");
const std = @import("std");
pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(.{});
const module = b.addModule("mecha", .{ .root_source_file = b.path("mecha.zig") });
const test_step = b.step("test", "Run all tests in all modes.");
for ([_][]const u8{
"mecha.zig",
"example/rgb.zig",
"example/json.zig",
}) |test_file| {
const tests = b.addTest(.{
.root_source_file = b.path(test_file),
.optimize = optimize,
.target = target,
});
const run_tests = b.addRunArtifact(tests);
tests.root_module.addImport("mecha", module);
test_step.dependOn(&run_tests.step);
}
const readme_step = b.step("readme", "Remake README.");
const readme = readMeStep(b);
readme_step.dependOn(readme);
const all_step = b.step("all", "Build everything and runs all tests");
all_step.dependOn(readme_step);
all_step.dependOn(test_step);
b.default_step.dependOn(all_step);
}
fn readMeStep(b: *std.Build) *std.Build.Step {
const s = b.allocator.create(std.Build.Step) catch unreachable;
s.* = std.Build.Step.init(.{
.id = .custom,
.name = "ReadMeStep",
.owner = b,
.makeFn = struct {
fn make(_: *std.Build.Step, _: std.Build.Step.MakeOptions) anyerror!void {
@setEvalBranchQuota(10000);
const file = try std.fs.cwd().createFile("README.md", .{});
const writer = file.writer();
try writer.print(@embedFile("example/README.md.template"), .{
@embedFile("example/rgb.zig"),
});
}
}.make,
});
return s;
}