mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Pandora port. Thanks to ptitSeb.
This commit is contained in:
parent
60f9da3926
commit
4d67f9af28
@ -24,7 +24,7 @@ else() # Assume x86
|
||||
set(X86 ON)
|
||||
endif()
|
||||
|
||||
if(ANDROID OR BLACKBERRY OR IOS)
|
||||
if(ANDROID OR BLACKBERRY OR IOS OR PANDORA)
|
||||
set(HEADLESS OFF)
|
||||
elseif(NOT DEFINED HEADLESS)
|
||||
set(HEADLESS ON)
|
||||
@ -35,6 +35,7 @@ option(ARM "Set to ON if targeting an ARM processor" ${ARM})
|
||||
option(X86 "Set to ON if targeting an X86 processor" ${X86})
|
||||
option(ANDROID "Set to ON if targeting an Android device" ${ANDROID})
|
||||
option(BLACKBERRY "Set to ON if targeting a Blackberry device" ${BLACKBERRY})
|
||||
option(PANDORA "Set to ON if targeting an OpenPandora device" ${PANDORA})
|
||||
option(IOS "Set to ON if targeting an iOS device" ${IOS})
|
||||
option(USING_GLES2 "Set to ON if target device uses OpenGL ES 2.0" ${USING_GLES2})
|
||||
option(USING_QT_UI "Set to ON if you wish to use the Qt frontend wrapper" ${USING_QT_UI})
|
||||
@ -95,6 +96,10 @@ if(IOS)
|
||||
add_definitions(-DIOS)
|
||||
endif()
|
||||
|
||||
if(PANDORA)
|
||||
add_definitions(-DPANDORA)
|
||||
endif()
|
||||
|
||||
if(ARM)
|
||||
add_definitions(-DARM)
|
||||
endif()
|
||||
@ -415,6 +420,8 @@ elseif(SDL_FOUND)
|
||||
if(APPLE)
|
||||
set(nativeExtra ${nativeExtra} SDL/SDLMain.h SDL/SDLMain.mm)
|
||||
set(nativeExtraLibs ${nativeExtraLibs} ${COCOA_LIBRARY})
|
||||
elseif(PANDORA)
|
||||
set(nativeExtraLibs ${nativeExtraLibs} pthread EGL X11)
|
||||
endif()
|
||||
if(NOT IOS) # No target
|
||||
set(TargetBin PPSSPPSDL)
|
||||
|
@ -26,6 +26,14 @@
|
||||
#include <signal.h>
|
||||
#endif
|
||||
|
||||
#ifdef PANDORA
|
||||
#ifdef __USE_POSIX
|
||||
extern "C"
|
||||
int kill (__pid_t __pid, int __sig) __THROW;
|
||||
#endif
|
||||
#define SIGINT 2
|
||||
#endif
|
||||
|
||||
#undef _SP
|
||||
|
||||
namespace ArmGen
|
||||
|
Loading…
Reference in New Issue
Block a user