diff --git a/build.zig b/build.zig index 3999754b7..4d340a61a 100644 --- a/build.zig +++ b/build.zig @@ -133,7 +133,11 @@ pub fn build(b: *std.build.Builder) !void { // Mac App based on Swift { - // Build the swift binary (TODO: debug vs release modes) + // Build the swift binary + // + // TODO: + // - debug vs release modes) + // - arch (arm64 vs x86_64) const swift_build = b.addSystemCommand(&.{ "swift", "build" }); swift_build.cwd = "macos"; diff --git a/macos/Sources/Ghostty/main.swift b/macos/Sources/Ghostty/entry.swift similarity index 100% rename from macos/Sources/Ghostty/main.swift rename to macos/Sources/Ghostty/entry.swift