XcodeGen-managed project (project.yml), SwiftUI single-window app 1280x800 / min 1100x700, dark theme tokens from docs/21, 270pt sidebar with logo/preset select/Calibrate/stepper 1-5, notice banner, five stage placeholders, ICCeryCore SPM package with AppPaths + WizardStage, Swift Testing plumbing. Sandbox off, hardened runtime on, bundle id com.gronod.iccery2. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
81 lines
2.1 KiB
YAML
81 lines
2.1 KiB
YAML
name: ICCery
|
|
options:
|
|
bundleIdPrefix: com.gronod
|
|
deploymentTarget:
|
|
macOS: "14.0"
|
|
groupSortPosition: top
|
|
|
|
packages:
|
|
ICCeryCore:
|
|
path: Packages/ICCeryCore
|
|
|
|
targets:
|
|
ICCery:
|
|
type: application
|
|
platform: macOS
|
|
deploymentTarget: "14.0"
|
|
sources:
|
|
- path: Sources/ICCery
|
|
- path: Resources
|
|
excludes:
|
|
- ICCery.entitlements
|
|
dependencies:
|
|
- package: ICCeryCore
|
|
product: ICCeryCore
|
|
settings:
|
|
base:
|
|
PRODUCT_BUNDLE_IDENTIFIER: com.gronod.iccery2
|
|
PRODUCT_NAME: ICCery
|
|
PRODUCT_BUNDLE_PACKAGE_TYPE: APPL
|
|
GENERATE_INFOPLIST_FILE: YES
|
|
INFOPLIST_KEY_CFBundleDisplayName: ICCery
|
|
INFOPLIST_KEY_LSMinimumSystemVersion: "14.0"
|
|
INFOPLIST_KEY_NSPrincipalClass: NSApplication
|
|
INFOPLIST_KEY_NSHumanReadableCopyright: "Copyright © 2026 Gronod. AGPLv3."
|
|
MARKETING_VERSION: "2.0.0"
|
|
CURRENT_PROJECT_VERSION: "1"
|
|
ENABLE_HARDENED_RUNTIME: YES
|
|
CODE_SIGN_ENTITLEMENTS: Resources/ICCery.entitlements
|
|
CODE_SIGN_IDENTITY: "-"
|
|
CODE_SIGN_STYLE: Automatic
|
|
ENABLE_APP_SANDBOX: NO
|
|
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
|
|
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor
|
|
SWIFT_VERSION: "6.0"
|
|
SWIFT_STRICT_CONCURRENCY: complete
|
|
MACOSX_DEPLOYMENT_TARGET: "14.0"
|
|
ARCHS: "$(ARCHS_STANDARD)"
|
|
|
|
ICCeryCoreTests:
|
|
type: bundle.unit-test
|
|
platform: macOS
|
|
deploymentTarget: "14.0"
|
|
sources:
|
|
- path: Tests/ICCeryCoreTests
|
|
dependencies:
|
|
- package: ICCeryCore
|
|
product: ICCeryCore
|
|
- target: ICCery
|
|
settings:
|
|
base:
|
|
BUNDLE_LOADER: "$(TEST_HOST)"
|
|
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/ICCery.app/Contents/MacOS/ICCery"
|
|
GENERATE_INFOPLIST_FILE: YES
|
|
CODE_SIGN_IDENTITY: "-"
|
|
SWIFT_VERSION: "6.0"
|
|
MACOSX_DEPLOYMENT_TARGET: "14.0"
|
|
|
|
schemes:
|
|
ICCery:
|
|
build:
|
|
targets:
|
|
ICCery: all
|
|
ICCeryCoreTests: [test]
|
|
run:
|
|
config: Debug
|
|
test:
|
|
config: Debug
|
|
gatherCoverageData: false
|
|
targets:
|
|
- ICCeryCoreTests
|