2018-03-24 14:13:48 -04:00
|
|
|
add_library(inputcommon
|
|
|
|
InputConfig.cpp
|
2018-04-13 23:51:32 -05:00
|
|
|
InputProfile.cpp
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerEmu/ControllerEmu.cpp
|
2018-12-21 16:11:00 -06:00
|
|
|
ControllerEmu/StickGate.cpp
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerEmu/Control/Control.cpp
|
|
|
|
ControllerEmu/Control/Input.cpp
|
|
|
|
ControllerEmu/Control/Output.cpp
|
|
|
|
ControllerEmu/ControlGroup/AnalogStick.cpp
|
2019-01-01 08:32:39 -06:00
|
|
|
ControllerEmu/ControlGroup/Attachments.cpp
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerEmu/ControlGroup/Buttons.cpp
|
|
|
|
ControllerEmu/ControlGroup/ControlGroup.cpp
|
|
|
|
ControllerEmu/ControlGroup/Cursor.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 12:00:24 -08:00
|
|
|
ControllerEmu/Setting/NumericSetting.cpp
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerInterface/ControllerInterface.cpp
|
|
|
|
ControllerInterface/Device.cpp
|
|
|
|
ControlReference/ControlReference.cpp
|
|
|
|
ControlReference/ExpressionParser.cpp
|
2016-10-11 17:48:38 -07:00
|
|
|
)
|
2018-03-24 14:13:48 -04:00
|
|
|
|
|
|
|
target_link_libraries(inputcommon PUBLIC
|
|
|
|
common
|
|
|
|
)
|
2014-08-01 23:23:52 -07:00
|
|
|
|
2010-11-01 15:47:02 +00:00
|
|
|
if(WIN32)
|
2018-03-24 14:13:48 -04:00
|
|
|
target_sources(inputcommon PRIVATE
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerInterface/DInput/DInput.cpp
|
|
|
|
ControllerInterface/DInput/DInputJoystick.cpp
|
|
|
|
ControllerInterface/DInput/DInputKeyboardMouse.cpp
|
|
|
|
ControllerInterface/DInput/XInputFilter.cpp
|
2017-11-10 09:56:13 -08:00
|
|
|
ControllerInterface/Win32/Win32.cpp
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerInterface/XInput/XInput.cpp
|
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp
|
|
|
|
)
|
2015-01-03 13:17:57 +01:00
|
|
|
elseif(APPLE)
|
2018-03-24 14:13:48 -04:00
|
|
|
target_sources(inputcommon PRIVATE
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerInterface/OSX/OSX.mm
|
|
|
|
ControllerInterface/OSX/OSXJoystick.mm
|
|
|
|
ControllerInterface/Quartz/Quartz.mm
|
|
|
|
ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm
|
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp
|
|
|
|
)
|
2018-03-29 11:53:19 -04:00
|
|
|
target_link_libraries(inputcommon PRIVATE
|
2018-03-24 14:13:48 -04:00
|
|
|
${COREFOUNDATION_LIBRARY}
|
|
|
|
${CARBON_LIBRARY}
|
|
|
|
${COCOA_LIBRARY}
|
2018-03-29 11:53:19 -04:00
|
|
|
${FORCEFEEDBACK_LIBRARY}
|
2018-03-30 15:43:49 -04:00
|
|
|
${IOK_LIBRARY}
|
2018-03-24 14:13:48 -04:00
|
|
|
)
|
2010-11-01 15:47:02 +00:00
|
|
|
elseif(X11_FOUND)
|
2018-03-24 14:13:48 -04:00
|
|
|
target_sources(inputcommon PRIVATE
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerInterface/Xlib/XInput2.cpp
|
|
|
|
)
|
2018-03-24 14:13:48 -04:00
|
|
|
target_link_libraries(inputcommon PUBLIC
|
|
|
|
${X11_LIBRARIES}
|
|
|
|
${X11_INPUT_LIBRARIES}
|
|
|
|
)
|
2013-04-14 23:02:53 -05:00
|
|
|
elseif(ANDROID)
|
2018-03-24 14:13:48 -04:00
|
|
|
target_compile_definitions(inputcommon PRIVATE -DCIFACE_USE_ANDROID)
|
|
|
|
target_sources(inputcommon PRIVATE
|
2017-03-01 07:43:43 -05:00
|
|
|
ControllerInterface/Android/Android.cpp
|
|
|
|
)
|
2010-11-01 15:47:02 +00:00
|
|
|
endif()
|
|
|
|
|
2016-09-28 13:32:13 -04:00
|
|
|
if(ANDROID)
|
2018-03-24 14:13:48 -04:00
|
|
|
target_sources(inputcommon PRIVATE GCAdapter_Android.cpp)
|
2016-01-06 00:57:08 -06:00
|
|
|
else()
|
2018-03-24 14:13:48 -04:00
|
|
|
target_sources(inputcommon PRIVATE GCAdapter.cpp)
|
|
|
|
target_link_libraries(inputcommon PUBLIC ${LIBUSB_LIBRARIES})
|
2016-09-28 13:32:13 -04:00
|
|
|
endif()
|
2015-12-31 10:27:51 -06:00
|
|
|
|
2015-06-29 12:17:35 +12:00
|
|
|
if(LIBEVDEV_FOUND AND LIBUDEV_FOUND)
|
2018-04-10 09:53:08 -04:00
|
|
|
target_sources(inputcommon
|
|
|
|
PRIVATE
|
2018-03-24 14:13:48 -04:00
|
|
|
ControllerInterface/evdev/evdev.cpp
|
|
|
|
)
|
2018-04-10 09:33:00 -04:00
|
|
|
target_include_directories(inputcommon
|
|
|
|
PRIVATE
|
|
|
|
${LIBEVDEV_INCLUDE_DIR}
|
|
|
|
${LIBUDEV_INCLUDE_DIR}
|
|
|
|
)
|
2018-04-10 09:53:08 -04:00
|
|
|
target_link_libraries(inputcommon
|
|
|
|
PRIVATE
|
2018-03-24 14:13:48 -04:00
|
|
|
${LIBEVDEV_LIBRARY}
|
|
|
|
${LIBUDEV_LIBRARY}
|
|
|
|
)
|
2015-06-29 12:17:35 +12:00
|
|
|
endif()
|
|
|
|
|
2015-10-24 20:20:03 -07:00
|
|
|
if(UNIX)
|
2018-03-24 14:13:48 -04:00
|
|
|
target_sources(inputcommon PRIVATE
|
|
|
|
ControllerInterface/Pipes/Pipes.cpp
|
|
|
|
)
|
2015-10-24 20:20:03 -07:00
|
|
|
endif()
|
|
|
|
|
2017-02-06 20:59:56 -08:00
|
|
|
if(ENABLE_SDL)
|
2017-01-29 22:50:17 -05: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})
|
2018-03-24 14:13:48 -04:00
|
|
|
target_sources(inputcommon PRIVATE ControllerInterface/SDL/SDL.cpp)
|
2017-11-09 13:52:33 -08:00
|
|
|
target_link_libraries(inputcommon PRIVATE ${SDL_TARGET})
|
|
|
|
target_compile_definitions(inputcommon PRIVATE "CIFACE_USE_SDL=1")
|
2017-01-29 22:50:17 -05:00
|
|
|
else()
|
|
|
|
message(STATUS "SDL NOT found, disabling SDL input")
|
|
|
|
endif()
|
2017-01-26 00:21:54 +01:00
|
|
|
endif()
|