mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Remove unnecessary Src/ folders
This commit is contained in:
@ -1,35 +1,35 @@
|
||||
set(SRCS Src/ControllerEmu.cpp
|
||||
Src/InputConfig.cpp
|
||||
Src/UDPWiimote.cpp
|
||||
Src/UDPWrapper.cpp
|
||||
Src/ControllerInterface/ControllerInterface.cpp
|
||||
Src/ControllerInterface/Device.cpp
|
||||
Src/ControllerInterface/ExpressionParser.cpp)
|
||||
set(SRCS ControllerEmu.cpp
|
||||
InputConfig.cpp
|
||||
UDPWiimote.cpp
|
||||
UDPWrapper.cpp
|
||||
ControllerInterface/ControllerInterface.cpp
|
||||
ControllerInterface/Device.cpp
|
||||
ControllerInterface/ExpressionParser.cpp)
|
||||
|
||||
if(WIN32)
|
||||
set(SRCS ${SRCS}
|
||||
Src/ControllerInterface/DInput/DInput.cpp
|
||||
Src/ControllerInterface/DInput/DInputJoystick.cpp
|
||||
Src/ControllerInterface/DInput/DInputKeyboardMouse.cpp
|
||||
Src/ControllerInterface/SDL/SDL.cpp
|
||||
Src/ControllerInterface/XInput/XInput.cpp)
|
||||
ControllerInterface/DInput/DInput.cpp
|
||||
ControllerInterface/DInput/DInputJoystick.cpp
|
||||
ControllerInterface/DInput/DInputKeyboardMouse.cpp
|
||||
ControllerInterface/SDL/SDL.cpp
|
||||
ControllerInterface/XInput/XInput.cpp)
|
||||
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
set(SRCS ${SRCS}
|
||||
Src/ControllerInterface/OSX/OSX.mm
|
||||
Src/ControllerInterface/OSX/OSXKeyboard.mm
|
||||
Src/ControllerInterface/OSX/OSXJoystick.mm
|
||||
Src/ControllerInterface/SDL/SDL.cpp)
|
||||
ControllerInterface/OSX/OSX.mm
|
||||
ControllerInterface/OSX/OSXKeyboard.mm
|
||||
ControllerInterface/OSX/OSXJoystick.mm
|
||||
ControllerInterface/SDL/SDL.cpp)
|
||||
elseif(X11_FOUND)
|
||||
set(SRCS ${SRCS}
|
||||
Src/ControllerInterface/SDL/SDL.cpp
|
||||
Src/ControllerInterface/Xlib/Xlib.cpp)
|
||||
ControllerInterface/SDL/SDL.cpp
|
||||
ControllerInterface/Xlib/Xlib.cpp)
|
||||
if(XINPUT2_FOUND)
|
||||
set(SRCS ${SRCS}
|
||||
Src/ControllerInterface/Xlib/XInput2.cpp)
|
||||
ControllerInterface/Xlib/XInput2.cpp)
|
||||
endif()
|
||||
elseif(ANDROID)
|
||||
set(SRCS ${SRCS}
|
||||
Src/ControllerInterface/Android/Android.cpp)
|
||||
ControllerInterface/Android/Android.cpp)
|
||||
endif()
|
||||
|
||||
add_dolphin_library(inputcommon "${SRCS}" "")
|
||||
|
Reference in New Issue
Block a user