-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
build.zig
45 lines (39 loc) · 1.5 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
const builtin = @import("builtin");
const std = @import("std");
pub fn build(b: *std.Build) !void {
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(.{});
const glfw_dep = b.dependency("glfw", .{
.target = target,
.optimize = optimize,
});
var module = b.addModule("mach-glfw", .{
.target = target,
.optimize = optimize,
.root_source_file = b.path("src/main.zig"),
});
module.linkLibrary(glfw_dep.artifact("glfw"));
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,
});
main_tests.linkLibrary(glfw_dep.artifact("glfw"));
b.installArtifact(main_tests);
test_step.dependOn(&b.addRunArtifact(main_tests).step);
if (target.result.isDarwin()) {
if (glfw_dep.builder.lazyDependency("xcode_frameworks", .{
.target = target,
.optimize = optimize,
})) |dep| {
module.addSystemFrameworkPath(dep.path("Frameworks"));
module.addSystemIncludePath(dep.path("include"));
module.addLibraryPath(dep.path("lib"));
main_tests.root_module.addSystemFrameworkPath(dep.path("Frameworks"));
main_tests.root_module.addSystemIncludePath(dep.path("include"));
main_tests.root_module.addLibraryPath(dep.path("lib"));
}
}
}