summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon
diff options
context:
space:
mode:
authorMarkus Wick <degasus@users.noreply.github.com>2017-03-02 11:51:06 +0100
committerGitHub <noreply@github.com>2017-03-02 11:51:06 +0100
commit7982ba120ffb2ca04006d040af33080ad5300404 (patch)
tree4e67e179feedc96863381c2a48a200aedd9d784d /Source/Core/InputCommon
parent521a777ade79e1f8d7c49f521c7cc060ef64b7e3 (diff)
parentee61bd6f2e4db8df8e92be6f92c02b808aa92234 (diff)
Merge pull request #4995 from lioncash/normalize
CMakeLists: Normalize whitespace
Diffstat (limited to 'Source/Core/InputCommon')
-rw-r--r--Source/Core/InputCommon/CMakeLists.txt70
1 files changed, 37 insertions, 33 deletions
diff --git a/Source/Core/InputCommon/CMakeLists.txt b/Source/Core/InputCommon/CMakeLists.txt
index b86c0500de..697845c494 100644
--- a/Source/Core/InputCommon/CMakeLists.txt
+++ b/Source/Core/InputCommon/CMakeLists.txt
@@ -1,54 +1,58 @@
set(SRCS InputConfig.cpp
- 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
+ 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
)
set(LIBS common)
if(WIN32)
set(SRCS ${SRCS}
- ControllerInterface/DInput/DInput.cpp
- ControllerInterface/DInput/DInputJoystick.cpp
- ControllerInterface/DInput/DInputKeyboardMouse.cpp
- ControllerInterface/DInput/XInputFilter.cpp
- ControllerInterface/XInput/XInput.cpp
- ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp)
+ ControllerInterface/DInput/DInput.cpp
+ ControllerInterface/DInput/DInputJoystick.cpp
+ ControllerInterface/DInput/DInputKeyboardMouse.cpp
+ ControllerInterface/DInput/XInputFilter.cpp
+ ControllerInterface/XInput/XInput.cpp
+ ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp
+ )
elseif(APPLE)
find_library(COREFOUNDATION_LIBRARY CoreFoundation)
find_library(CARBON_LIBRARY Carbon)
find_library(COCOA_LIBRARY Cocoa)
set(SRCS ${SRCS}
- ControllerInterface/OSX/OSX.mm
- ControllerInterface/OSX/OSXKeyboard.mm
- ControllerInterface/OSX/OSXJoystick.mm
- ControllerInterface/Quartz/Quartz.mm
- ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm
- ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp)
+ ControllerInterface/OSX/OSX.mm
+ ControllerInterface/OSX/OSXKeyboard.mm
+ ControllerInterface/OSX/OSXJoystick.mm
+ ControllerInterface/Quartz/Quartz.mm
+ ControllerInterface/Quartz/QuartzKeyboardAndMouse.mm
+ ControllerInterface/ForceFeedback/ForceFeedbackDevice.cpp
+ )
set(LIBS ${LIBS} ${COREFOUNDATION_LIBRARY} ${CARBON_LIBRARY} ${COCOA_LIBRARY})
elseif(X11_FOUND)
set(SRCS ${SRCS}
- ControllerInterface/Xlib/XInput2.cpp)
+ ControllerInterface/Xlib/XInput2.cpp
+ )
set(LIBS ${LIBS} ${X11_LIBRARIES} ${X11_INPUT_LIBRARIES})
elseif(ANDROID)
add_definitions(-DCIFACE_USE_ANDROID)
set(SRCS ${SRCS}
- ControllerInterface/Android/Android.cpp)
+ ControllerInterface/Android/Android.cpp
+ )
endif()
if(ANDROID)