diff options
| author | Fuwn <[email protected]> | 2026-02-18 10:43:14 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-18 10:43:14 -0800 |
| commit | 8d2979095aae4b349271f610fb1d7371515c1aac (patch) | |
| tree | 1de38a4b29a1b5e7b1baa726619c761d0f18011a /justfile | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-8d2979095aae4b349271f610fb1d7371515c1aac.tar.xz sora-testing-8d2979095aae4b349271f610fb1d7371515c1aac.zip | |
feat: Development commit
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -18,12 +18,15 @@ format: build destination="platform=macOS" configuration="Release": command -v xcbeautify >/dev/null 2>&1 \ - && xcodebuild -configuration {{configuration}} -scheme {{target}} -destination '{{destination}}' build | xcbeautify \ + && xcodebuild -project Sora.xcodeproj -configuration {{configuration}} -scheme {{target}} -destination '{{destination}}' build | xcbeautify \ || just _build {{target}} build_ios configuration="Release": just build "platform=iOS,arch=arm64,name={{device_name}}" "{{configuration}}" +build_ios_simulator configuration="Release": + just build "platform=iOS Simulator,name=iPhone 17 Pro" "{{configuration}}" + run: just _open {{target}} |