Add a Androind ControllerInterface class for allowing input in a non-hacky way. Add a default GCPad.ini file so it actually works.

This commit is contained in:
Ryan Houdek
2013-04-14 23:02:53 -05:00
parent 37b67971e7
commit 44bbb54a62
11 changed files with 183 additions and 33 deletions

View File

@ -21,6 +21,10 @@ elseif(X11_FOUND)
set(SRCS ${SRCS}
Src/ControllerInterface/SDL/SDL.cpp
Src/ControllerInterface/Xlib/Xlib.cpp)
elseif(ANDROID)
set(SRCS ${SRCS}
Src/ControllerInterface/Android/Android.cpp
Src/Android/ButtonManager.cpp)
endif()
add_library(inputcommon ${SRCS})