mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
13 lines
251 B
Bash
13 lines
251 B
Bash
|
#!/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
|