mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
Remove SDL from Externals.
This commit is contained in:
@ -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}" "")
|
||||
|
Reference in New Issue
Block a user