add TODO notes about arch

This commit is contained in:
Mitchell Hashimoto
2023-02-12 22:06:41 -08:00
parent 1f70181032
commit b49634a57c
2 changed files with 5 additions and 1 deletions

View File

@ -133,7 +133,11 @@ pub fn build(b: *std.build.Builder) !void {
// Mac App based on Swift // 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" }); const swift_build = b.addSystemCommand(&.{ "swift", "build" });
swift_build.cwd = "macos"; swift_build.cwd = "macos";