forked from zig-gamedev/zig-gamedev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
84 lines (73 loc) · 2.13 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 Package = struct {
zstbi: *std.Build.Module,
zstbi_c_cpp: *std.Build.CompileStep,
pub fn link(pkg: Package, exe: *std.Build.CompileStep) void {
exe.linkLibrary(pkg.zstbi_c_cpp);
exe.addModule("zstbi", pkg.zstbi);
}
};
pub fn package(
b: *std.Build,
target: std.zig.CrossTarget,
optimize: std.builtin.Mode,
_: struct {},
) Package {
const zstbi = b.createModule(.{
.source_file = .{ .path = thisDir() ++ "/src/zstbi.zig" },
});
const zstbi_c_cpp = b.addStaticLibrary(.{
.name = "zstbi",
.target = target,
.optimize = optimize,
});
if (optimize == .Debug) {
// TODO: Workaround for Zig bug.
zstbi_c_cpp.addCSourceFile(.{
.file = .{ .path = thisDir() ++ "/libs/stbi/stb_image.c" },
.flags = &.{
"-std=c99",
"-fno-sanitize=undefined",
"-g",
"-O0",
},
});
} else {
zstbi_c_cpp.addCSourceFile(.{
.file = .{ .path = thisDir() ++ "/libs/stbi/stb_image.c" },
.flags = &.{
"-std=c99",
"-fno-sanitize=undefined",
},
});
}
zstbi_c_cpp.linkLibC();
return .{
.zstbi = zstbi,
.zstbi_c_cpp = zstbi_c_cpp,
};
}
pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(.{});
const test_step = b.step("test", "Run zstbi tests");
test_step.dependOn(runTests(b, optimize, target));
}
pub fn runTests(
b: *std.Build,
optimize: std.builtin.Mode,
target: std.zig.CrossTarget,
) *std.Build.Step {
const tests = b.addTest(.{
.name = "zstbi-tests",
.root_source_file = .{ .path = thisDir() ++ "/src/zstbi.zig" },
.target = target,
.optimize = optimize,
});
const zstbi_pkg = package(b, target, optimize, .{});
zstbi_pkg.link(tests);
return &b.addRunArtifact(tests).step;
}
inline fn thisDir() []const u8 {
return comptime std.fs.path.dirname(@src().file) orelse ".";
}