2013-12-07 20:14:29 +00:00
|
|
|
set(SRCS ControllerEmu.cpp
|
|
|
|
InputConfig.cpp
|
|
|
|
ControllerInterface/ControllerInterface.cpp
|
|
|
|
ControllerInterface/Device.cpp
|
|
|
|
ControllerInterface/ExpressionParser.cpp)
|
2010-11-01 15:47:02 +00:00
|
|
|
|
2014-08-02 06:23:52 +00:00
|
|
|
|
|
|
|
set(LIBS common)
|
|
|
|
|
2010-11-01 15:47:02 +00:00
|
|
|
if(WIN32)
|
|
|
|
set(SRCS ${SRCS}
|
2013-12-07 20:14:29 +00:00
|
|
|
ControllerInterface/DInput/DInput.cpp
|
|
|
|
ControllerInterface/DInput/DInputJoystick.cpp
|
|
|
|
ControllerInterface/DInput/DInputKeyboardMouse.cpp
|
2014-02-05 10:28:32 +00:00
|
|
|
ControllerInterface/XInput/XInput.cpp
|
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp)
|
2015-01-03 12:17:57 +00:00
|
|
|
elseif(APPLE)
|
|
|
|
find_library(COREFOUNDATION_LIBRARY CoreFoundation)
|
|
|
|
find_library(CARBON_LIBRARY Carbon)
|
|
|
|
find_library(COCOA_LIBRARY Cocoa)
|
2010-11-01 15:47:02 +00:00
|
|
|
set(SRCS ${SRCS}
|
2013-12-07 20:14:29 +00:00
|
|
|
ControllerInterface/OSX/OSX.mm
|
|
|
|
ControllerInterface/OSX/OSXKeyboard.mm
|
|
|
|
ControllerInterface/OSX/OSXJoystick.mm
|
2014-01-28 23:11:51 +00:00
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp)
|
2014-10-31 17:40:27 +00:00
|
|
|
set(LIBS ${LIBS} ${COREFOUNDATION_LIBRARY} ${CARBON_LIBRARY} ${COCOA_LIBRARY})
|
2010-11-01 15:47:02 +00:00
|
|
|
elseif(X11_FOUND)
|
|
|
|
set(SRCS ${SRCS}
|
2013-12-07 20:14:29 +00:00
|
|
|
ControllerInterface/Xlib/Xlib.cpp)
|
2013-07-21 04:50:50 +00:00
|
|
|
if(XINPUT2_FOUND)
|
2013-07-10 06:49:58 +00:00
|
|
|
set(SRCS ${SRCS}
|
2013-12-07 20:14:29 +00:00
|
|
|
ControllerInterface/Xlib/XInput2.cpp)
|
2013-07-10 06:49:58 +00:00
|
|
|
endif()
|
2014-08-02 06:23:52 +00:00
|
|
|
set(LIBS ${LIBS} ${X11_LIBRARIES} ${XINPUT2_LIBRARIES})
|
2013-04-15 04:02:53 +00:00
|
|
|
elseif(ANDROID)
|
|
|
|
set(SRCS ${SRCS}
|
2013-12-07 20:14:29 +00:00
|
|
|
ControllerInterface/Android/Android.cpp)
|
2010-11-01 15:47:02 +00:00
|
|
|
endif()
|
|
|
|
|
2014-05-05 00:41:02 +00:00
|
|
|
if(SDL_FOUND OR SDL2_FOUND)
|
|
|
|
set(SRCS ${SRCS} ControllerInterface/SDL/SDL.cpp)
|
2014-08-02 06:23:52 +00:00
|
|
|
if (SDL2_FOUND)
|
|
|
|
set(LIBS ${LIBS} ${SDL2_LIBRARY})
|
|
|
|
elseif(SDL_FOUND)
|
|
|
|
set(LIBS ${LIBS} ${SDL_LIBRARY})
|
|
|
|
endif()
|
2014-05-05 00:41:02 +00:00
|
|
|
endif()
|
|
|
|
|
2014-08-02 06:23:52 +00:00
|
|
|
add_dolphin_library(inputcommon "${SRCS}" "${LIBS}")
|