2017-01-30 03:50:17 +00:00
|
|
|
set(SRCS InputConfig.cpp
|
2017-03-01 12:43:43 +00:00
|
|
|
ControllerEmu/ControllerEmu.cpp
|
|
|
|
ControllerEmu/Control/Control.cpp
|
|
|
|
ControllerEmu/Control/Input.cpp
|
|
|
|
ControllerEmu/Control/Output.cpp
|
|
|
|
ControllerEmu/ControlGroup/AnalogStick.cpp
|
|
|
|
ControllerEmu/ControlGroup/Buttons.cpp
|
|
|
|
ControllerEmu/ControlGroup/ControlGroup.cpp
|
|
|
|
ControllerEmu/ControlGroup/Cursor.cpp
|
|
|
|
ControllerEmu/ControlGroup/Extension.cpp
|
|
|
|
ControllerEmu/ControlGroup/Force.cpp
|
|
|
|
ControllerEmu/ControlGroup/MixedTriggers.cpp
|
|
|
|
ControllerEmu/ControlGroup/ModifySettingsButton.cpp
|
|
|
|
ControllerEmu/ControlGroup/Slider.cpp
|
|
|
|
ControllerEmu/ControlGroup/Tilt.cpp
|
|
|
|
ControllerEmu/ControlGroup/Triggers.cpp
|
2017-02-26 20:00:24 +00:00
|
|
|
ControllerEmu/Setting/BooleanSetting.cpp
|
|
|
|
ControllerEmu/Setting/NumericSetting.cpp
|
2017-03-01 12:43:43 +00:00
|
|
|
ControllerInterface/ControllerInterface.cpp
|
|
|
|
ControllerInterface/Device.cpp
|
|
|
|
ControlReference/ControlReference.cpp
|
|
|
|
ControlReference/ExpressionParser.cpp
|
2016-10-12 00:48:38 +00:00
|
|
|
)
|
2017-01-30 03:50:17 +00:00
|
|
|
set(LIBS common)
|
2014-08-02 06:23:52 +00:00
|
|
|
|
2010-11-01 15:47:02 +00:00
|
|
|
if(WIN32)
|
2017-01-30 03:50:17 +00:00
|
|
|
set(SRCS ${SRCS}
|
2017-03-01 12:43:43 +00:00
|
|
|
ControllerInterface/DInput/DInput.cpp
|
|
|
|
ControllerInterface/DInput/DInputJoystick.cpp
|
|
|
|
ControllerInterface/DInput/DInputKeyboardMouse.cpp
|
|
|
|
ControllerInterface/DInput/XInputFilter.cpp
|
|
|
|
ControllerInterface/XInput/XInput.cpp
|
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp
|
|
|
|
)
|
2015-01-03 12:17:57 +00:00
|
|
|
elseif(APPLE)
|
2017-01-30 03:50:17 +00:00
|
|
|
find_library(COREFOUNDATION_LIBRARY CoreFoundation)
|
|
|
|
find_library(CARBON_LIBRARY Carbon)
|
|
|
|
find_library(COCOA_LIBRARY Cocoa)
|
|
|
|
set(SRCS ${SRCS}
|
2017-03-01 12:43:43 +00:00
|
|
|
ControllerInterface/OSX/OSX.mm
|
|
|
|
ControllerInterface/OSX/OSXJoystick.mm
|
|
|
|
ControllerInterface/Quartz/Quartz.mm
|
|
|
|
ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm
|
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp
|
|
|
|
)
|
2017-01-30 03:50:17 +00:00
|
|
|
set(LIBS ${LIBS} ${COREFOUNDATION_LIBRARY} ${CARBON_LIBRARY} ${COCOA_LIBRARY})
|
2010-11-01 15:47:02 +00:00
|
|
|
elseif(X11_FOUND)
|
2017-01-30 03:50:17 +00:00
|
|
|
set(SRCS ${SRCS}
|
2017-03-01 12:43:43 +00:00
|
|
|
ControllerInterface/Xlib/XInput2.cpp
|
|
|
|
)
|
2017-01-30 03:50:17 +00:00
|
|
|
set(LIBS ${LIBS} ${X11_LIBRARIES} ${X11_INPUT_LIBRARIES})
|
2013-04-15 04:02:53 +00:00
|
|
|
elseif(ANDROID)
|
2017-01-30 03:50:17 +00:00
|
|
|
add_definitions(-DCIFACE_USE_ANDROID)
|
|
|
|
set(SRCS ${SRCS}
|
2017-03-01 12:43:43 +00:00
|
|
|
ControllerInterface/Android/Android.cpp
|
|
|
|
)
|
2010-11-01 15:47:02 +00:00
|
|
|
endif()
|
|
|
|
|
2016-09-28 17:32:13 +00:00
|
|
|
if(ANDROID)
|
2017-01-30 03:50:17 +00:00
|
|
|
set(SRCS ${SRCS} GCAdapter_Android.cpp)
|
2016-01-06 06:57:08 +00:00
|
|
|
else()
|
2017-01-30 03:50:17 +00:00
|
|
|
set(SRCS ${SRCS} GCAdapter.cpp)
|
|
|
|
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
2016-09-28 17:32:13 +00:00
|
|
|
endif()
|
2015-12-31 16:27:51 +00:00
|
|
|
|
2015-06-29 00:17:35 +00:00
|
|
|
if(LIBEVDEV_FOUND AND LIBUDEV_FOUND)
|
2017-01-30 03:50:17 +00:00
|
|
|
set(SRCS ${SRCS} ControllerInterface/evdev/evdev.cpp)
|
|
|
|
set(LIBS ${LIBS} ${LIBEVDEV_LIBRARY} ${LIBUDEV_LIBRARY})
|
2015-06-29 00:17:35 +00:00
|
|
|
endif()
|
|
|
|
|
2015-10-25 03:20:03 +00:00
|
|
|
if(UNIX)
|
2017-01-30 03:50:17 +00:00
|
|
|
set(SRCS ${SRCS} ControllerInterface/Pipes/Pipes.cpp)
|
2015-10-25 03:20:03 +00:00
|
|
|
endif()
|
|
|
|
|
2017-02-07 04:59:56 +00:00
|
|
|
if(ENABLE_SDL)
|
2017-01-30 03:50:17 +00:00
|
|
|
find_package(SDL2)
|
|
|
|
if(SDL2_FOUND)
|
|
|
|
message(STATUS "Using shared SDL2")
|
|
|
|
set(SDL_TARGET SDL2::SDL2)
|
|
|
|
else()
|
|
|
|
# SDL2 not found, try SDL
|
|
|
|
find_package(SDL)
|
|
|
|
if(SDL_FOUND)
|
|
|
|
message(STATUS "Using shared SDL")
|
|
|
|
add_library(System_SDL INTERFACE)
|
|
|
|
target_include_directories(System_SDL INTERFACE ${SDL_INCLUDE_DIR})
|
|
|
|
target_link_libraries(System_SDL INTERFACE ${SDL_LIBRARY})
|
|
|
|
set(SDL_TARGET System_SDL)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(SDL_TARGET AND TARGET ${SDL_TARGET})
|
|
|
|
set(SRCS ${SRCS} ControllerInterface/SDL/SDL.cpp)
|
|
|
|
set(LIBS ${LIBS} ${SDL_TARGET})
|
|
|
|
add_definitions(-DHAVE_SDL=1)
|
|
|
|
else()
|
|
|
|
message(STATUS "SDL NOT found, disabling SDL input")
|
|
|
|
endif()
|
2017-01-25 23:21:54 +00:00
|
|
|
endif()
|
2014-05-05 00:41:02 +00:00
|
|
|
|
2014-08-02 06:23:52 +00:00
|
|
|
add_dolphin_library(inputcommon "${SRCS}" "${LIBS}")
|