2013-12-07 15:14:29 -05:00
|
|
|
set(SRCS ControllerEmu.cpp
|
|
|
|
InputConfig.cpp
|
|
|
|
ControllerInterface/ControllerInterface.cpp
|
|
|
|
ControllerInterface/Device.cpp
|
|
|
|
ControllerInterface/ExpressionParser.cpp)
|
2014-08-01 23:23:52 -07:00
|
|
|
set(LIBS common)
|
|
|
|
|
2010-11-01 15:47:02 +00:00
|
|
|
if(WIN32)
|
|
|
|
set(SRCS ${SRCS}
|
2013-12-07 15:14:29 -05:00
|
|
|
ControllerInterface/DInput/DInput.cpp
|
|
|
|
ControllerInterface/DInput/DInputJoystick.cpp
|
|
|
|
ControllerInterface/DInput/DInputKeyboardMouse.cpp
|
2017-01-21 02:37:01 +01:00
|
|
|
ControllerInterface/DInput/XInputFilter.cpp
|
2014-02-05 19:28:32 +09:00
|
|
|
ControllerInterface/XInput/XInput.cpp
|
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp)
|
2015-01-03 13:17:57 +01: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 15:14:29 -05:00
|
|
|
ControllerInterface/OSX/OSX.mm
|
|
|
|
ControllerInterface/OSX/OSXKeyboard.mm
|
|
|
|
ControllerInterface/OSX/OSXJoystick.mm
|
2016-08-08 09:38:22 -07:00
|
|
|
ControllerInterface/Quartz/Quartz.mm
|
|
|
|
ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm
|
2014-01-29 08:11:51 +09:00
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp)
|
2014-10-31 13:40:27 -04:00
|
|
|
set(LIBS ${LIBS} ${COREFOUNDATION_LIBRARY} ${CARBON_LIBRARY} ${COCOA_LIBRARY})
|
2010-11-01 15:47:02 +00:00
|
|
|
elseif(X11_FOUND)
|
|
|
|
set(SRCS ${SRCS}
|
2016-09-03 15:23:34 -07:00
|
|
|
ControllerInterface/Xlib/XInput2.cpp)
|
2017-01-21 02:35:46 +01:00
|
|
|
set(LIBS ${LIBS} ${X11_LIBRARIES} ${X11_INPUT_LIBRARIES})
|
2013-04-14 23:02:53 -05:00
|
|
|
elseif(ANDROID)
|
2016-02-05 10:54:17 -06:00
|
|
|
add_definitions(-DCIFACE_USE_ANDROID)
|
2016-01-06 01:00:02 -06:00
|
|
|
set(SRCS ${SRCS}
|
|
|
|
ControllerInterface/Android/Android.cpp)
|
2010-11-01 15:47:02 +00:00
|
|
|
endif()
|
|
|
|
|
2016-09-28 13:32:13 -04:00
|
|
|
if(ANDROID)
|
|
|
|
set(SRCS ${SRCS} GCAdapter_Android.cpp)
|
2016-01-06 00:57:08 -06:00
|
|
|
else()
|
2016-09-28 13:32:13 -04:00
|
|
|
set(SRCS ${SRCS} GCAdapter.cpp)
|
|
|
|
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
|
|
|
endif()
|
2015-12-31 10:27:51 -06:00
|
|
|
|
2015-06-29 12:17:35 +12:00
|
|
|
if(LIBEVDEV_FOUND AND LIBUDEV_FOUND)
|
|
|
|
set(SRCS ${SRCS} ControllerInterface/evdev/evdev.cpp)
|
|
|
|
set(LIBS ${LIBS} ${LIBEVDEV_LIBRARY} ${LIBUDEV_LIBRARY})
|
|
|
|
endif()
|
|
|
|
|
2015-10-24 20:20:03 -07:00
|
|
|
if(UNIX)
|
|
|
|
set(SRCS ${SRCS} ControllerInterface/Pipes/Pipes.cpp)
|
|
|
|
endif()
|
|
|
|
|
2014-05-04 19:41:02 -05:00
|
|
|
if(SDL_FOUND OR SDL2_FOUND)
|
|
|
|
set(SRCS ${SRCS} ControllerInterface/SDL/SDL.cpp)
|
2014-08-01 23:23:52 -07:00
|
|
|
if (SDL2_FOUND)
|
|
|
|
set(LIBS ${LIBS} ${SDL2_LIBRARY})
|
|
|
|
elseif(SDL_FOUND)
|
|
|
|
set(LIBS ${LIBS} ${SDL_LIBRARY})
|
|
|
|
endif()
|
2014-05-04 19:41:02 -05:00
|
|
|
endif()
|
|
|
|
|
2014-08-01 23:23:52 -07:00
|
|
|
add_dolphin_library(inputcommon "${SRCS}" "${LIBS}")
|