Remove SDL from Externals.

This commit is contained in:
Jordan Woyak
2014-05-04 19:41:02 -05:00
parent 4321951987
commit 9af18d1b96
144 changed files with 11 additions and 51795 deletions

View File

@ -11,7 +11,6 @@ if(WIN32)
ControllerInterface/DInput/DInput.cpp
ControllerInterface/DInput/DInputJoystick.cpp
ControllerInterface/DInput/DInputKeyboardMouse.cpp
ControllerInterface/SDL/SDL.cpp
ControllerInterface/XInput/XInput.cpp
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp)
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
@ -19,11 +18,9 @@ elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
ControllerInterface/OSX/OSX.mm
ControllerInterface/OSX/OSXKeyboard.mm
ControllerInterface/OSX/OSXJoystick.mm
ControllerInterface/SDL/SDL.cpp
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp)
elseif(X11_FOUND)
set(SRCS ${SRCS}
ControllerInterface/SDL/SDL.cpp
ControllerInterface/Xlib/Xlib.cpp)
if(XINPUT2_FOUND)
set(SRCS ${SRCS}
@ -34,4 +31,8 @@ elseif(ANDROID)
ControllerInterface/Android/Android.cpp)
endif()
if(SDL_FOUND OR SDL2_FOUND)
set(SRCS ${SRCS} ControllerInterface/SDL/SDL.cpp)
endif()
add_dolphin_library(inputcommon "${SRCS}" "")