forked from slimsag/mach-glfw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig
40 lines (35 loc) · 1.38 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
const builtin = @import("builtin");
const std = @import("std");
pub fn build(b: *std.Build) !void {
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(.{});
var module = b.addModule("mach-glfw", .{
.target = target,
.optimize = optimize,
.root_source_file = b.path("src/main.zig"),
});
const test_step = b.step("test", "Run library tests");
const main_tests = b.addTest(.{
.name = "glfw-tests",
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
b.installArtifact(main_tests);
test_step.dependOn(&b.addRunArtifact(main_tests).step);
if (b.lazyDependency("glfw", .{
.target = target,
.optimize = optimize,
})) |dep| {
module.linkLibrary(dep.artifact("glfw"));
@import("glfw").addPaths(module);
main_tests.linkLibrary(dep.artifact("glfw"));
@import("glfw").addPaths(&main_tests.root_module);
}
}
// comptime {
// const supported_zig = std.SemanticVersion.parse("0.13.0-dev.351+64ef45eb0") catch unreachable;
// if (builtin.zig_version.order(supported_zig) != .eq) {
// @compileError(std.fmt.comptimePrint("unsupported Zig version ({}). Required Zig version 2024.5.0-mach: https://machengine.org/about/nominated-zig/#202450-mach", .{builtin.zig_version}));
// }
// }