updated CMakeLists for missing files
This commit is contained in:
parent
81f6062c85
commit
5c89324809
@ -1,8 +1,8 @@
|
|||||||
set(SRCS
|
set(SRCS
|
||||||
bootmanager.cpp
|
bootmanager.cpp
|
||||||
callstack.cpp
|
callstack.cpp
|
||||||
disasm.cpp
|
disassembler.cpp
|
||||||
cpu_regs.cpp
|
registers.cpp
|
||||||
hotkeys.cpp
|
hotkeys.cpp
|
||||||
main.cpp
|
main.cpp
|
||||||
ramview.cpp
|
ramview.cpp
|
||||||
@ -11,8 +11,8 @@ set(SRCS
|
|||||||
|
|
||||||
qt4_wrap_ui(UI_HDRS
|
qt4_wrap_ui(UI_HDRS
|
||||||
callstack.ui
|
callstack.ui
|
||||||
disasm.ui
|
disassembler.ui
|
||||||
cpu_regs.ui
|
registers.ui
|
||||||
hotkeys.ui
|
hotkeys.ui
|
||||||
main.ui
|
main.ui
|
||||||
config/controller_config.ui)
|
config/controller_config.ui)
|
||||||
@ -20,8 +20,8 @@ qt4_wrap_ui(UI_HDRS
|
|||||||
qt4_wrap_cpp(MOC_SRCS
|
qt4_wrap_cpp(MOC_SRCS
|
||||||
bootmanager.hxx
|
bootmanager.hxx
|
||||||
callstack.hxx
|
callstack.hxx
|
||||||
disasm.hxx
|
disassembler.hxx
|
||||||
cpu_regs.hxx
|
registers.hxx
|
||||||
hotkeys.hxx
|
hotkeys.hxx
|
||||||
main.hxx
|
main.hxx
|
||||||
ramview.hxx
|
ramview.hxx
|
||||||
|
@ -11,6 +11,7 @@ set(SRCS break_points.cpp
|
|||||||
misc.cpp
|
misc.cpp
|
||||||
msg_handler.cpp
|
msg_handler.cpp
|
||||||
string_util.cpp
|
string_util.cpp
|
||||||
|
symbols.cpp
|
||||||
thread.cpp
|
thread.cpp
|
||||||
timer.cpp
|
timer.cpp
|
||||||
utf8.cpp
|
utf8.cpp
|
||||||
|
@ -17,7 +17,15 @@ set(SRCS core.cpp
|
|||||||
elf/elf_reader.cpp
|
elf/elf_reader.cpp
|
||||||
file_sys/directory_file_system.cpp
|
file_sys/directory_file_system.cpp
|
||||||
file_sys/meta_file_system.cpp
|
file_sys/meta_file_system.cpp
|
||||||
|
hle/hle.cpp
|
||||||
|
hle/syscall.cpp
|
||||||
|
hle/service/apt.cpp
|
||||||
|
hle/service/gsp.cpp
|
||||||
|
hle/service/hid.cpp
|
||||||
|
hle/service/service.cpp
|
||||||
|
hle/service/srv.cpp
|
||||||
hw/hw.cpp
|
hw/hw.cpp
|
||||||
hw/hw_lcd.cpp)
|
hw/lcd.cpp
|
||||||
|
hw/ndma.cpp)
|
||||||
|
|
||||||
add_library(core STATIC ${SRCS})
|
add_library(core STATIC ${SRCS})
|
||||||
|
Loading…
Reference in New Issue
Block a user