1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00
Beef/bin/build_ios.sh

15 lines
260 B
Bash
Raw Normal View History

2019-10-29 05:01:04 -07:00
# exit when any command fails
set -e
cd "$(dirname "$0")"
cd ../builds
if [ ! -d ios ]; then
mkdir ios
cd ios
cmake ../../BeefRT -G Xcode -DCMAKE_TOOLCHAIN_FILE=../../bin/ios.toolchain.cmake -DPLATFORM=OS64
cd ..
fi
cd ios
cmake --build . --config Debug