mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
build the ios app
* import the build config * clean the build * build the app * codesign the emulator core dynamic libraries * package the app into an IPA with the preferenced mobile provisioning
This commit is contained in:
parent
80678332ec
commit
56c1a5e0f1
15
ios/script/build_app
Executable file
15
ios/script/build_app
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
. script/build.config
|
||||
|
||||
xcodebuild clean
|
||||
rm -rf build
|
||||
|
||||
xcodebuild -verbose -sdk iphoneos -configuration Release
|
||||
|
||||
codesign -fs "$CODE_SIGN_IDENTITY" "$BUILD_PATH/RetroArch.app/modules/snes9x_next_libretro.dylib"
|
||||
codesign -fs "$CODE_SIGN_IDENTITY" "$BUILD_PATH/RetroArch.app/modules/nestopia_libretro.dylib"
|
||||
|
||||
xcrun -sdk iphoneos PackageApplication "$BUILD_PATH/RetroArch.app" -o "$BUILD_PATH/RetroArch.ipa" --sign "$CODE_SIGN_IDENTITY" --embed "$PROVISIONING"
|
Loading…
x
Reference in New Issue
Block a user