mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-27 01:10:07 +00:00
Fixed Cmakelists
This commit is contained in:
parent
9b6c4ac77d
commit
53cc3e8f67
@ -5,6 +5,7 @@ set(SRCS
|
||||
debugger/ramview.cpp
|
||||
debugger/registers.cpp
|
||||
hotkeys.cpp
|
||||
key_bindings.cpp
|
||||
main.cpp
|
||||
config/controller_config.cpp
|
||||
config/controller_config_util.cpp)
|
||||
@ -15,11 +16,13 @@ set (HEADERS
|
||||
debugger/ramview.hxx
|
||||
debugger/registers.hxx
|
||||
hotkeys.hxx
|
||||
key_bindings.hxx
|
||||
main.hxx
|
||||
ui_callstack.h
|
||||
ui_controller_config.h
|
||||
ui_disassembler.h
|
||||
ui_hotkeys.h
|
||||
ui_key_bindings.h
|
||||
ui_main.h
|
||||
ui_registers.h
|
||||
version.h
|
||||
@ -31,6 +34,7 @@ qt4_wrap_ui(UI_HDRS
|
||||
debugger/disassembler.ui
|
||||
debugger/registers.ui
|
||||
hotkeys.ui
|
||||
key_bindings.ui
|
||||
main.ui
|
||||
config/controller_config.ui)
|
||||
|
||||
@ -41,6 +45,7 @@ qt4_wrap_cpp(MOC_SRCS
|
||||
debugger/registers.hxx
|
||||
debugger/ramview.hxx
|
||||
hotkeys.hxx
|
||||
key_bindings.hxx
|
||||
main.hxx
|
||||
config/controller_config.hxx
|
||||
config/controller_config_util.hxx)
|
||||
|
@ -99,7 +99,7 @@ public:
|
||||
};
|
||||
|
||||
void GKeyBindingsDialog::updateItem(QTreeWidgetItem * item, int column) {
|
||||
bindings[item->text(1)] = reverseNames[item->text(0)]; //sanitise
|
||||
bindings[item->text(1)] = reverseNames[item->text(0)]; //TODO: sanitise
|
||||
reverseBindings[reverseNames[item->text(0)]] = item->text(1);
|
||||
return;
|
||||
}
|
||||
|
@ -44,7 +44,8 @@ set(SRCS core.cpp
|
||||
hle/service/srv.cpp
|
||||
hw/hw.cpp
|
||||
hw/lcd.cpp
|
||||
hw/ndma.cpp)
|
||||
hw/ndma.cpp
|
||||
hw/hid.cpp)
|
||||
|
||||
set(HEADERS core.h
|
||||
core_timing.h
|
||||
@ -90,6 +91,7 @@ set(HEADERS core.h
|
||||
hle/service/srv.h
|
||||
hw/hw.h
|
||||
hw/lcd.h
|
||||
hw/ndma.h)
|
||||
hw/ndma.h
|
||||
hw/hid.h)
|
||||
|
||||
add_library(core STATIC ${SRCS} ${HEADERS})
|
||||
|
Loading…
Reference in New Issue
Block a user