mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-14 11:35:48 +00:00
7 lines
184 B
Swift
7 lines
184 B
Swift
import Foundation
|
|
|
|
/// True if we appear to be running in Xcode.
|
|
func isRunningInXcode() -> Bool {
|
|
ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] != nil
|
|
}
|