forked from zig-gamedev/zig-gamedev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
84 lines (72 loc) · 2.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
const std = @import("std");
pub const Options = struct {
api: enum {
raw,
wrapper,
},
};
pub const Package = struct {
options: Options,
zopengl: *std.Build.Module,
zopengl_options: *std.Build.Module,
pub fn link(pkg: Package, exe: *std.Build.CompileStep) void {
exe.addModule("zopengl", pkg.zopengl);
}
};
pub fn package(
b: *std.Build,
_: std.zig.CrossTarget,
_: std.builtin.Mode,
args: struct {
options: Options = .{
.api = .raw,
},
},
) Package {
const options_step = b.addOptions();
inline for (std.meta.fields(Options)) |option_field| {
const option_val = @field(args.options, option_field.name);
options_step.addOption(@TypeOf(option_val), option_field.name, option_val);
}
const options = options_step.createModule();
const zopengl = b.createModule(.{
.source_file = .{ .path = thisDir() ++ "/src/zopengl.zig" },
.dependencies = &.{
.{ .name = "zopengl_options", .module = options },
},
});
return .{
.options = args.options,
.zopengl = zopengl,
.zopengl_options = options,
};
}
pub fn runTests(
b: *std.Build,
optimize: std.builtin.Mode,
target: std.zig.CrossTarget,
) *std.Build.Step {
const tests = b.addTest(.{
.name = "zopengl-tests",
.root_source_file = .{ .path = thisDir() ++ "/src/zopengl.zig" },
.target = target,
.optimize = optimize,
});
const zopengl_pkg = package(b, target, optimize, .{
.options = .{
.api = .wrapper,
},
});
tests.addModule("zopengl_options", zopengl_pkg.zopengl_options);
zopengl_pkg.link(tests);
return &b.addRunArtifact(tests).step;
}
pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(.{});
const test_step = b.step("test", "Run zopengl tests");
test_step.dependOn(runTests(b, optimize, target));
}
inline fn thisDir() []const u8 {
return comptime std.fs.path.dirname(@src().file) orelse ".";
}