Skip to content

Commit

Permalink
readd makefile commands as they are used by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Nov 25, 2021
1 parent 63fb5c2 commit e8576f7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/ios/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ boot-sim:
install: xcodebuild-simulator boot-sim
xcrun simctl install $(DEVICE) build/Build/Products/Debug-iphonesimulator/bevy_ios_example.app

xcodebuild-simulator:
IOS_TARGETS=x86_64-apple-ios xcodebuild -scheme bevy_ios_example -configuration Debug -derivedDataPath build -destination "id=$(DEVICE)"

xcodebuild-iphone:
IOS_TARGETS=aarch64-apple-ios xcodebuild -scheme bevy_ios_example -configuration Debug -derivedDataPath build -arch arm64

clean:
rm -r build
cargo clean

0 comments on commit e8576f7

Please sign in to comment.