-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
50 lines (41 loc) · 1.25 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 std = @import("std");
const tests = @import("tests/build.zig");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const dep_chipz = b.dependency("chipz", .{
.target = target,
.optimize = optimize,
});
const mod_chips = b.addModule("chips", .{
.root_source_file = b.path("src/chips/chips.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "chipz", .module = dep_chipz.module("chipz") },
},
});
const exe_mod = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
const exe = b.addExecutable(.{
.name = "mz800-emuz",
.root_module = exe_mod,
});
b.installArtifact(exe);
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);
tests.build(b, .{
.src_dir = "tests",
.target = target,
.optimize = optimize,
.mod_chips = mod_chips,
});
}