vibetunnel/ios/VibeTunnel/Shared.xcconfig
2025-06-22 15:55:02 +02:00

26 lines
807 B
Text

// Shared Configuration for iOS App
// This file contains settings shared across all configurations
// Include version configuration
#include "version.xcconfig"
// Include local development settings (if exists)
// This file is ignored by git and contains personal development team settings
#include? "Local.xcconfig"
// Default values (can be overridden in Local.xcconfig)
// These will be used if Local.xcconfig doesn't exist or doesn't define them
DEVELOPMENT_TEAM = $(inherited)
CODE_SIGN_STYLE = $(inherited)
// Swift version and concurrency settings
SWIFT_VERSION = 6.0
SWIFT_STRICT_CONCURRENCY = complete
// iOS deployment target
IPHONEOS_DEPLOYMENT_TARGET = 18.0
// Other iOS-specific settings
TARGETED_DEVICE_FAMILY = 1,2
SUPPORTS_MACCATALYST = YES
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES