mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-31 18:46:29 +03:00
25 lines
669 B
Bash
Executable File
25 lines
669 B
Bash
Executable File
#!/bin/sh
|
|
cd $(dirname "$0")
|
|
|
|
if [ ! -f ../../libs/ios/libSDL2.a ]; then
|
|
|
|
cd ../../src/thirdparty/SDL2-2.0.12/build-scripts
|
|
./iosbuild.sh
|
|
cp lib/libSDL2.a ../../../../libs/ios/
|
|
cd ../../../../projects/ios
|
|
|
|
fi
|
|
|
|
./compile-arm64.sh $@
|
|
./compile-x86_64.sh $@
|
|
|
|
cd ../../libs/ios/
|
|
|
|
if [ -f arm64/libeepp-static-debug.a ] && [ -f x86_64/libeepp-static-debug.a ]; then
|
|
lipo -create -arch arm64 arm64/libeepp-static-debug.a -arch x86_64 x86_64/libeepp-static-debug.a -output ./libeepp-debug.a
|
|
fi
|
|
|
|
if [ -f arm64/libeepp-static.a ] && [ -f x86_64/libeepp-static.a ]; then
|
|
lipo -create -arch arm64 arm64/libeepp-static.a -arch x86_64 x86_64/libeepp-static.a -output ./libeepp.a
|
|
fi
|