mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 08:46:08 +03:00
33 lines
1.0 KiB
Zig
33 lines
1.0 KiB
Zig
const std = @import("std");
|
|
const Builder = std.build.Builder;
|
|
const LibExeObjStep = std.build.LibExeObjStep;
|
|
|
|
const glfw = @import("vendor/mach/glfw/build.zig");
|
|
const gpu_dawn = @import("vendor/mach/gpu-dawn/build.zig");
|
|
|
|
pub fn build(b: *std.build.Builder) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const mode = b.standardReleaseOptions();
|
|
|
|
const exe = b.addExecutable("ghostty", "src/main.zig");
|
|
exe.setTarget(target);
|
|
exe.setBuildMode(mode);
|
|
exe.install();
|
|
exe.addPackagePath("glfw", "vendor/mach/glfw/src/main.zig");
|
|
glfw.link(b, exe, .{});
|
|
gpu_dawn.link(b, exe, if (target.getCpuArch() == .aarch64) .{
|
|
// We only need to do this until there is an aarch64 binary build.
|
|
.separate_libs = true,
|
|
.from_source = true,
|
|
} else .{});
|
|
|
|
const run_cmd = exe.run();
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
|
if (b.args) |args| {
|
|
run_cmd.addArgs(args);
|
|
}
|
|
|
|
const run_step = b.step("run", "Run the app");
|
|
run_step.dependOn(&run_cmd.step);
|
|
}
|