mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-18 13:25:52 +00:00
- Implement smooth window size animations when switching Settings tabs - Add Xcode build phase to automatically build tty-fwd universal binary - Configure build script with proper input/output dependencies for efficiency - Fix Settings window animation using NSViewAnimation API - Update project configuration for optimized builds
18 lines
No EOL
602 B
Text
18 lines
No EOL
602 B
Text
// Shared Configuration
|
|
// 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 |