38 lines
1.1 KiB
CMake
38 lines
1.1 KiB
CMake
set(SRCS ControllerEmu.cpp
|
|
InputConfig.cpp
|
|
UDPWiimote.cpp
|
|
UDPWrapper.cpp
|
|
ControllerInterface/ControllerInterface.cpp
|
|
ControllerInterface/Device.cpp
|
|
ControllerInterface/ExpressionParser.cpp)
|
|
|
|
if(WIN32)
|
|
set(SRCS ${SRCS}
|
|
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")
|
|
set(SRCS ${SRCS}
|
|
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}
|
|
ControllerInterface/Xlib/XInput2.cpp)
|
|
endif()
|
|
elseif(ANDROID)
|
|
set(SRCS ${SRCS}
|
|
ControllerInterface/Android/Android.cpp)
|
|
endif()
|
|
|
|
add_dolphin_library(inputcommon "${SRCS}" "")
|