mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
1654eb7f8d
The binary that the cmake script produces is PPSSPPBlackberry, not ppsspp like the old system.
12 lines
448 B
Bash
Executable File
12 lines
448 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TYPE=Device-Release
|
|
DEBUG="-devMode -debugToken ${HOME}/debugtoken.bar"
|
|
PPSSPP_ROOT=${PWD}/..
|
|
WORKSPACE=${PPSSPP_ROOT}/..
|
|
blackberry-nativepackager -package PPSSPP.bar bar-descriptor.xml PPSSPPBlackberry \
|
|
-e icon-114.png icon-114.png $DEBUG \
|
|
-e ../android/assets assets \
|
|
-e ${WORKSPACE}/SDL12/${TYPE}/libSDL12.so lib/libSDL12.so \
|
|
-e ${WORKSPACE}/TouchControlOverlay/${TYPE}/libTouchControlOverlay.so lib/libTouchControlOverlay.so
|