summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-18 10:43:14 -0800
committerFuwn <[email protected]>2026-02-18 10:43:14 -0800
commit8d2979095aae4b349271f610fb1d7371515c1aac (patch)
tree1de38a4b29a1b5e7b1baa726619c761d0f18011a
parentfeat: Development commit (diff)
downloadsora-testing-8d2979095aae4b349271f610fb1d7371515c1aac.tar.xz
sora-testing-8d2979095aae4b349271f610fb1d7371515c1aac.zip
feat: Development commit
-rw-r--r--justfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/justfile b/justfile
index 516407d..7edea20 100644
--- a/justfile
+++ b/justfile
@@ -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}}