mirror of
https://github.com/bevyengine/bevy
synced 2024-11-14 00:47:32 +00:00
9cc6368b28
An example of bevy using xcode
12 lines
251 B
Bash
Executable file
12 lines
251 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
PATH=$PATH:$HOME/.cargo/bin
|
|
|
|
# If you want your build to run faster, add a "--targets x86_64-apple-ios" for just using the ios simulator.
|
|
if [ -n ${IOS_TARGETS} ]; then
|
|
cargo lipo --targets ${IOS_TARGETS}
|
|
else
|
|
cargo lipo
|
|
fi
|