forked from kubkon/bold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
50 lines (38 loc) · 1.83 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
const Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
// Standard target options allows the person running `zig build` to choose
// what target to build for. Here we do not override the defaults, which
// means any target is allowed, and the default is native. Other options
// for restricting supported target set are available.
const target = b.standardTargetOptions(.{});
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
const mode = b.standardReleaseOptions();
const enable_logging = b.option(bool, "log", "Whether to enable logging") orelse false;
const is_qemu_enabled = b.option(bool, "enable-qemu", "Use QEMU to run cross compiled foreign architecture tests") orelse false;
const lib = b.addStaticLibrary("zld", "src/Zld.zig");
lib.setBuildMode(mode);
const exe = b.addExecutable("zld", "src/main.zig");
exe.setTarget(target);
exe.setBuildMode(mode);
const exe_opts = b.addOptions();
exe.addOptions("build_options", exe_opts);
exe_opts.addOption(bool, "enable_logging", enable_logging);
exe.install();
const run_cmd = exe.run();
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
const tests = b.addTest("src/test.zig");
tests.setBuildMode(mode);
tests.addPackagePath("end_to_end_tests", "test/test.zig");
const test_opts = b.addOptions();
tests.addOptions("build_options", test_opts);
test_opts.addOption(bool, "enable_qemu", is_qemu_enabled);
const test_step = b.step("test", "Run library and end-to-end tests");
test_step.dependOn(&exe.step);
test_step.dependOn(&tests.step);
}