From f178f4419e1815d514b267c7bc890a4f2c91e9ec Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 21 Aug 2025 10:03:23 -0700 Subject: [PATCH] macos: fix iOS builds --- macos/Sources/Ghostty/Ghostty.Config.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/macos/Sources/Ghostty/Ghostty.Config.swift b/macos/Sources/Ghostty/Ghostty.Config.swift index acc907edb..a223b2a0a 100644 --- a/macos/Sources/Ghostty/Ghostty.Config.swift +++ b/macos/Sources/Ghostty/Ghostty.Config.swift @@ -302,6 +302,7 @@ extension Ghostty { } var macosCustomIcon: String { + #if os(macOS) let homeDirURL = FileManager.default.homeDirectoryForCurrentUser let ghosttyConfigIconPath = homeDirURL.appendingPathComponent( ".config/ghostty/Ghostty.icns", @@ -313,6 +314,9 @@ extension Ghostty { guard ghostty_config_get(config, &v, key, UInt(key.count)) else { return defaultValue } guard let ptr = v else { return defaultValue } return String(cString: ptr) + #else + return "" + #endif } var macosIconFrame: MacOSIconFrame {