1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

Apple fixes

This commit is contained in:
Brian Fiete 2019-10-29 05:01:04 -07:00
parent 43b69023f6
commit 9f3fded709
23 changed files with 847 additions and 425 deletions

15
bin/build_ios.sh Executable file
View file

@ -0,0 +1,15 @@
# 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