mirror of https://github.com/mgba-emu/mgba.git
Qt: Move input to its own directory
This commit is contained in:
parent
94b756ca9b
commit
495e98a83f
|
@ -26,6 +26,7 @@ endif()
|
|||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/input)
|
||||
|
||||
find_package(Qt5Multimedia)
|
||||
find_package(Qt5OpenGL)
|
||||
|
@ -76,11 +77,6 @@ set(SOURCE_FILES
|
|||
GamepadButtonEvent.cpp
|
||||
GamepadHatEvent.cpp
|
||||
IOViewer.cpp
|
||||
InputController.cpp
|
||||
InputItem.cpp
|
||||
InputIndex.cpp
|
||||
InputModel.cpp
|
||||
InputProfile.cpp
|
||||
KeyEditor.cpp
|
||||
LoadSaveState.cpp
|
||||
LogController.cpp
|
||||
|
@ -105,7 +101,12 @@ set(SOURCE_FILES
|
|||
utils.cpp
|
||||
Window.cpp
|
||||
VFileDevice.cpp
|
||||
VideoView.cpp)
|
||||
VideoView.cpp
|
||||
input/InputController.cpp
|
||||
input/InputIndex.cpp
|
||||
input/InputItem.cpp
|
||||
input/InputModel.cpp
|
||||
input/InputProfile.cpp)
|
||||
|
||||
set(UI_FILES
|
||||
AboutScreen.ui
|
||||
|
|
Loading…
Reference in New Issue