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>
24 lines
492 B
Makefile
24 lines
492 B
Makefile
SCHEME := ICCery
|
|
DEST := 'platform=macOS'
|
|
|
|
.PHONY: gen build test universal fetch-argyll clean
|
|
|
|
gen:
|
|
xcodegen generate
|
|
|
|
build: gen
|
|
xcodebuild build -scheme $(SCHEME) -destination $(DEST)
|
|
|
|
test: gen
|
|
xcodebuild build test -scheme $(SCHEME) -destination $(DEST)
|
|
|
|
universal: gen
|
|
xcodebuild build -scheme $(SCHEME) -destination $(DEST) \
|
|
ARCHS='arm64 x86_64' ONLY_ACTIVE_ARCH=NO
|
|
|
|
fetch-argyll:
|
|
scripts/fetch-argyll.sh
|
|
|
|
clean:
|
|
rm -rf ICCery.xcodeproj DerivedData Packages/ICCeryCore/.build
|