mirror of https://github.com/PCSX2/pcsx2.git
cmake: reindent onepad/CMakeLists.txt with space
This commit is contained in:
parent
41990a6402
commit
d3a3a8528f
|
@ -43,65 +43,63 @@ set(onepadFinalFlags "")
|
||||||
|
|
||||||
# onepad sources
|
# onepad sources
|
||||||
set(onepadSources
|
set(onepadSources
|
||||||
controller.cpp
|
controller.cpp
|
||||||
GamePad.cpp
|
GamePad.cpp
|
||||||
SDL/joystick.cpp
|
SDL/joystick.cpp
|
||||||
keyboard.cpp
|
keyboard.cpp
|
||||||
KeyStatus.cpp
|
KeyStatus.cpp
|
||||||
onepad.cpp
|
onepad.cpp
|
||||||
state_management.cpp)
|
state_management.cpp)
|
||||||
|
|
||||||
# onepad headers
|
# onepad headers
|
||||||
set(onepadHeaders
|
set(onepadHeaders
|
||||||
bitwise.h
|
bitwise.h
|
||||||
controller.h
|
controller.h
|
||||||
GamePad.h
|
GamePad.h
|
||||||
SDL/joystick.h
|
SDL/joystick.h
|
||||||
keyboard.h
|
keyboard.h
|
||||||
KeyStatus.h
|
KeyStatus.h
|
||||||
onepad.h
|
onepad.h
|
||||||
state_management.h)
|
state_management.h)
|
||||||
|
|
||||||
# onepad Linux sources
|
# onepad Linux sources
|
||||||
set(onepadLinuxSources
|
set(onepadLinuxSources
|
||||||
${linux_sources}/ini.cpp
|
${linux_sources}/ini.cpp
|
||||||
${linux_sources}/dialog.cpp
|
${linux_sources}/dialog.cpp
|
||||||
${linux_sources}/linux.cpp
|
${linux_sources}/linux.cpp
|
||||||
${linux_sources}/opPanel.cpp
|
${linux_sources}/opPanel.cpp
|
||||||
${linux_sources}/GamepadConfiguration.cpp
|
${linux_sources}/GamepadConfiguration.cpp
|
||||||
${linux_headers}/JoystickConfiguration.cpp)
|
${linux_headers}/JoystickConfiguration.cpp)
|
||||||
|
|
||||||
# onepad Linux headers
|
# onepad Linux headers
|
||||||
set(onepadLinuxHeaders
|
set(onepadLinuxHeaders
|
||||||
${linux_headers}/linux.h
|
${linux_headers}/linux.h
|
||||||
${linux_headers}/opPanel.h
|
${linux_headers}/opPanel.h
|
||||||
${linux_headers}/GamepadConfiguration.h
|
${linux_headers}/GamepadConfiguration.h
|
||||||
${linux_headers}/JoystickConfiguration.h)
|
${linux_headers}/JoystickConfiguration.h)
|
||||||
|
|
||||||
# onepad Windows sources
|
# onepad Windows sources
|
||||||
set(onepadWindowsSources
|
set(onepadWindowsSources)
|
||||||
)
|
|
||||||
|
|
||||||
# onepad Windows headers
|
# onepad Windows headers
|
||||||
set(onepadWindowsHeaders
|
set(onepadWindowsHeaders)
|
||||||
)
|
|
||||||
|
|
||||||
set(onepadFinalLibs ${SDL2_LIBRARIES})
|
set(onepadFinalLibs ${SDL2_LIBRARIES})
|
||||||
add_definitions(-DSDL_BUILD)
|
add_definitions(-DSDL_BUILD)
|
||||||
|
|
||||||
set(onepadFinalLibs
|
set(onepadFinalLibs
|
||||||
${onepadFinalLibs}
|
${onepadFinalLibs}
|
||||||
${wxWidgets_LIBRARIES}
|
${wxWidgets_LIBRARIES}
|
||||||
${GTK2_LIBRARIES}
|
${GTK2_LIBRARIES}
|
||||||
${X11_LIBRARIES}
|
${X11_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
|
||||||
set(onepadFinalSources
|
set(onepadFinalSources
|
||||||
${onepadSources}
|
${onepadSources}
|
||||||
${onepadHeaders}
|
${onepadHeaders}
|
||||||
${onepadLinuxSources}
|
${onepadLinuxSources}
|
||||||
${onepadLinuxHeaders}
|
${onepadLinuxHeaders}
|
||||||
${onepadGuiResources}
|
${onepadGuiResources}
|
||||||
)
|
)
|
||||||
|
|
||||||
include_directories(
|
include_directories(
|
||||||
|
|
Loading…
Reference in New Issue