mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-22 18:36:18 +00:00
src: Move control to input directory
This commit is contained in:
parent
5e2ac6c72b
commit
0a94899c86
5 changed files with 24 additions and 19 deletions
|
@ -274,8 +274,8 @@ set(VIDEO_CORE src/core/PS4/HLE/Graphics/video_out.cpp
|
|||
src/vulkan_util.h
|
||||
)
|
||||
|
||||
set(HOST_SOURCES src/Emulator/Host/controller.cpp
|
||||
src/Emulator/Host/controller.h
|
||||
set(INPUT src/input/controller.cpp
|
||||
src/input/controller.h
|
||||
)
|
||||
|
||||
# the above is shared in sdl and qt version (TODO share them all)
|
||||
|
@ -312,14 +312,19 @@ endif()
|
|||
|
||||
if(ENABLE_QT_GUI)
|
||||
qt_add_executable(shadps4
|
||||
${AUDIO_CORE}
|
||||
${INPUT}
|
||||
${QT_GUI}
|
||||
${COMMON}
|
||||
${CORE}
|
||||
${VIDEO_CORE}
|
||||
src/emulator.cpp
|
||||
src/emulator.h
|
||||
)
|
||||
else()
|
||||
add_executable(shadps4
|
||||
${AUDIO_CORE}
|
||||
${HOST_SOURCES}
|
||||
${INPUT}
|
||||
${COMMON}
|
||||
${CORE}
|
||||
${VIDEO_CORE}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue