-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
62 lines (54 loc) · 1.84 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
56
57
58
59
60
61
62
// SPDX-License-Identifier: BSD-2-Clause
// SPDX-FileCopyrightText: 2025 Lee Cannon <[email protected]>
pub fn build(b: *std.Build) void {
const devicetree_mod = b.addModule("DeviceTree", .{
.root_source_file = b.path("src/DeviceTree.zig"),
});
_ = devicetree_mod;
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(.{});
// docs
{
const docs_step = b.step("docs", "Build the package documentation");
const docs_obj = b.addObject(.{
.name = "DeviceTree",
.root_module = b.createModule(.{
.root_source_file = b.path("src/DeviceTree.zig"),
.target = target,
.optimize = optimize,
}),
});
const install_docs = b.addInstallDirectory(.{
.source_dir = docs_obj.getEmittedDocs(),
.install_dir = .prefix,
.install_subdir = "docs",
});
docs_step.dependOn(&install_docs.step);
}
// tests
{
const test_exe = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("src/DeviceTree.zig"),
.target = target,
.optimize = optimize,
}),
});
const run_test_exe = b.addRunArtifact(test_exe);
const test_step = b.step("test", "Run tests");
test_step.dependOn(&run_test_exe.step);
}
// check
{
const check_test_exe = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("src/DeviceTree.zig"),
.target = target,
.optimize = optimize,
}),
});
const check_test_step = b.step("check", "");
check_test_step.dependOn(&check_test_exe.step);
}
}
const std = @import("std");