2017-01-29 20:50:17 -07:00
|
|
|
set(SRCS InputConfig.cpp
|
2017-03-01 05:43:43 -07: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
|
|
|
|
ControllerInterface/ControllerInterface.cpp
|
|
|
|
ControllerInterface/Device.cpp
|
|
|
|
ControlReference/ControlReference.cpp
|
|
|
|
ControlReference/ExpressionParser.cpp
|
2016-10-11 18:48:38 -06:00
|
|
|
)
|
2017-01-29 20:50:17 -07:00
|
|
|
set(LIBS common)
|
2014-08-02 00:23:52 -06:00
|
|
|
|
2010-11-01 09:47:02 -06:00
|
|
|
if(WIN32)
|
2017-01-29 20:50:17 -07:00
|
|
|
set(SRCS ${SRCS}
|
2017-03-01 05:43:43 -07: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 05:17:57 -07:00
|
|
|
elseif(APPLE)
|
2017-01-29 20:50:17 -07:00
|
|
|
find_library(COREFOUNDATION_LIBRARY CoreFoundation)
|
|
|
|
find_library(CARBON_LIBRARY Carbon)
|
|
|
|
find_library(COCOA_LIBRARY Cocoa)
|
|
|
|
set(SRCS ${SRCS}
|
2017-03-01 05:43:43 -07:00
|
|
|
ControllerInterface/OSX/OSX.mm
|
|
|
|
ControllerInterface/OSX/OSXKeyboard.mm
|
|
|
|
ControllerInterface/OSX/OSXJoystick.mm
|
|
|
|
ControllerInterface/Quartz/Quartz.mm
|
|
|
|
ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm
|
|
|
|
ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp
|
|
|
|
)
|
2017-01-29 20:50:17 -07:00
|
|
|
set(LIBS ${LIBS} ${COREFOUNDATION_LIBRARY} ${CARBON_LIBRARY} ${COCOA_LIBRARY})
|
2010-11-01 09:47:02 -06:00
|
|
|
elseif(X11_FOUND)
|
2017-01-29 20:50:17 -07:00
|
|
|
set(SRCS ${SRCS}
|
2017-03-01 05:43:43 -07:00
|
|
|
ControllerInterface/Xlib/XInput2.cpp
|
|
|
|
)
|
2017-01-29 20:50:17 -07:00
|
|
|
set(LIBS ${LIBS} ${X11_LIBRARIES} ${X11_INPUT_LIBRARIES})
|
2013-04-14 22:02:53 -06:00
|
|
|
elseif(ANDROID)
|
2017-01-29 20:50:17 -07:00
|
|
|
add_definitions(-DCIFACE_USE_ANDROID)
|
|
|
|
set(SRCS ${SRCS}
|
2017-03-01 05:43:43 -07:00
|
|
|
ControllerInterface/Android/Android.cpp
|
|
|
|
)
|
2010-11-01 09:47:02 -06:00
|
|
|
endif()
|
|
|
|
|
2016-09-28 11:32:13 -06:00
|
|
|
if(ANDROID)
|
2017-01-29 20:50:17 -07:00
|
|
|
set(SRCS ${SRCS} GCAdapter_Android.cpp)
|
2016-01-05 23:57:08 -07:00
|
|
|
else()
|
2017-01-29 20:50:17 -07:00
|
|
|
set(SRCS ${SRCS} GCAdapter.cpp)
|
|
|
|
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
2016-09-28 11:32:13 -06:00
|
|
|
endif()
|
2015-12-31 09:27:51 -07:00
|
|
|
|
2015-06-28 18:17:35 -06:00
|
|
|
if(LIBEVDEV_FOUND AND LIBUDEV_FOUND)
|
2017-01-29 20:50:17 -07:00
|
|
|
set(SRCS ${SRCS} ControllerInterface/evdev/evdev.cpp)
|
|
|
|
set(LIBS ${LIBS} ${LIBEVDEV_LIBRARY} ${LIBUDEV_LIBRARY})
|
2015-06-28 18:17:35 -06:00
|
|
|
endif()
|
|
|
|
|
2015-10-24 21:20:03 -06:00
|
|
|
if(UNIX)
|
2017-01-29 20:50:17 -07:00
|
|
|
set(SRCS ${SRCS} ControllerInterface/Pipes/Pipes.cpp)
|
2015-10-24 21:20:03 -06:00
|
|
|
endif()
|
|
|
|
|
2017-02-06 21:59:56 -07:00
|
|
|
if(ENABLE_SDL)
|
2017-01-29 20:50:17 -07: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 16:21:54 -07:00
|
|
|
endif()
|
2014-05-04 18:41:02 -06:00
|
|
|
|
2014-08-02 00:23:52 -06:00
|
|
|
add_dolphin_library(inputcommon "${SRCS}" "${LIBS}")
|