macos: use xcodeproj

This commit is contained in:
Mitchell Hashimoto
2023-02-14 08:32:43 -08:00
parent 8035865596
commit 8fedbf84d4
18 changed files with 127 additions and 48 deletions

View File

@@ -0,0 +1,13 @@
import SwiftUI
import GhosttyKit
@main
struct GhosttyApp: App {
@State private var num = ghostty_hello()
var body: some Scene {
WindowGroup {
Text(String(num)).font(.largeTitle)
}
}
}