-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.zig
More file actions
73 lines (62 loc) · 2.05 KB
/
build.zig
File metadata and controls
73 lines (62 loc) · 2.05 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
const std = @import("std");
const sdl = @import("sdl");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
// declare modules
const exe_mod = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
const exe = b.addExecutable(.{
.name = "zvoxels",
.root_module = exe_mod,
});
// dependencies
const tracy_enable = b.option(bool, "tracy_enable", "Enable profiling") orelse false;
const tracy = b.dependency("tracy", .{
.target = target,
.optimize = optimize,
.tracy_enable = tracy_enable,
});
exe_mod.addImport("tracy", tracy.module("tracy"));
exe.linkLibrary(tracy.artifact("tracy"));
exe.linkLibCpp();
const zgl = b.dependency("zgl", .{
.target = target,
.optimize = optimize,
});
exe_mod.addImport("zgl", zgl.module("zgl"));
const zlm = b.dependency("zlm", .{
.target = target,
.optimize = optimize,
});
exe_mod.addImport("zlm", zlm.module("zlm"));
const sdl_sdk = sdl.init(b, .{});
sdl_sdk.link(exe, .dynamic, sdl.Library.SDL2);
exe_mod.addImport("sdl2", sdl_sdk.getWrapperModule());
// install step
b.installArtifact(exe);
// add a run step
const run_cmd = b.addRunArtifact(exe);
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);
// add a testing step
const unit_tests = b.addTest(.{
.root_module = exe_mod,
});
const run_unit_tests = b.addRunArtifact(unit_tests);
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_unit_tests.step);
const exe_check = b.addExecutable(.{
.name = "zvoxels",
.root_module = exe_mod,
});
const check = b.step("check", "Check if the app compiles");
check.dependOn(&exe_check.step);
}