-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.zig
92 lines (83 loc) · 3.03 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
85
86
87
88
89
90
91
92
const builtin = @import("builtin");
const std = @import("std");
const allocator = std.testing.allocator;
const freetype = @import("mach_freetype");
const glfw = @import("mach_glfw");
pub fn build(b: *std.build.Builder) !void {
const optimize = b.standardOptimizeOption(.{});
const target = b.standardTargetOptions(.{});
const config = b.addOptions();
config.addOption(
[]const u8,
"home_path",
b.option([]const u8, "home-path", "") orelse "/home/jamie/",
);
config.addOption(
[]const u8,
"projects_file_path",
b.option([]const u8, "projects-file-path", "") orelse "/home/jamie/secret/projects",
);
const exe = b.addExecutable(.{
.name = "focus-dev",
.root_source_file = .{ .path = "./bin/focus.zig" },
.target = target,
.optimize = optimize,
.main_pkg_path = .{ .path = "./" },
});
exe.linkLibC();
exe.linkSystemLibrary("GL");
freetypeLink(b, exe);
glfwLink(b, exe);
exe.omit_frame_pointer = false;
exe.addOptions("focus_config", config);
b.installArtifact(exe);
const exe_step = b.step("build", "Build");
exe_step.dependOn(&exe.step);
const run = b.addRunArtifact(exe);
const run_step = b.step("run", "Run");
run_step.dependOn(&run.step);
}
fn freetypeLink(b: *std.Build, step: *std.build.CompileStep) void {
const mach_freetype_dep = b.dependency("mach_freetype", .{
.target = step.target,
.optimize = step.optimize,
});
const freetype_dep = b.dependency("mach_freetype.freetype", .{
.target = step.target,
.optimize = step.optimize,
});
const harfbuzz_dep = b.dependency("mach_freetype.harfbuzz", .{
.target = step.target,
.optimize = step.optimize,
});
const brotli_dep = b.dependency("mach_freetype.freetype.brotli", .{
.target = step.target,
.optimize = step.optimize,
});
step.addModule("mach-freetype", mach_freetype_dep.module("mach-freetype"));
step.addModule("mach-harfbuzz", mach_freetype_dep.module("mach-harfbuzz"));
step.linkLibrary(freetype_dep.artifact("freetype"));
step.linkLibrary(harfbuzz_dep.artifact("harfbuzz"));
step.linkLibrary(brotli_dep.artifact("brotli"));
}
fn glfwLink(b: *std.Build, step: *std.build.CompileStep) void {
const mach_glfw_dep = b.dependency("mach_glfw", .{
.target = step.target,
.optimize = step.optimize,
});
step.linkLibrary(mach_glfw_dep.artifact("mach-glfw"));
step.addModule("glfw", mach_glfw_dep.module("mach-glfw"));
@import("glfw").addPaths(step);
step.linkLibrary(b.dependency("vulkan_headers", .{
.target = step.target,
.optimize = step.optimize,
}).artifact("vulkan-headers"));
step.linkLibrary(b.dependency("x11_headers", .{
.target = step.target,
.optimize = step.optimize,
}).artifact("x11-headers"));
step.linkLibrary(b.dependency("wayland_headers", .{
.target = step.target,
.optimize = step.optimize,
}).artifact("wayland-headers"));
}