mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
12 lines
377 B
Bash
Executable File
12 lines
377 B
Bash
Executable File
# Build script for iOS app store
|
|
|
|
mkdir build-ios
|
|
pushd build-ios
|
|
|
|
cmake .. -DIOS_APP_STORE=ON -DCMAKE_TOOLCHAIN_FILE=cmake/Toolchains/ios.cmake -DDEVELOPMENT_TEAM_ID=97NS59EENG -DIOS_PLATFORM=OS -GXcode
|
|
# TODO: Get a MoltenVK somewhere.
|
|
#cp ../MoltenVK/iOS/Frameworks/libMoltenVK.dylib PPSSPP.app/Frameworks
|
|
popd
|
|
|
|
# To open the xcode project:
|
|
# open build-ios/PPSSPP.xcodeproj |