summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ShizZy2014-04-22 18:35:40 -0400
committerGravatar ShizZy2014-04-22 18:35:40 -0400
commit5c89324809f3753e143638acee1168d98ff7db6c (patch)
treedb2df30e5ad3e627e07d1802a0b6156ba1b1948c /src
parentRe-enable toggling window mode. (diff)
downloadyuzu-5c89324809f3753e143638acee1168d98ff7db6c.tar.gz
yuzu-5c89324809f3753e143638acee1168d98ff7db6c.tar.xz
yuzu-5c89324809f3753e143638acee1168d98ff7db6c.zip
updated CMakeLists for missing files
Diffstat (limited to 'src')
-rw-r--r--src/citra_qt/CMakeLists.txt12
-rw-r--r--src/common/CMakeLists.txt1
-rw-r--r--src/core/CMakeLists.txt10
3 files changed, 16 insertions, 7 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt
index 21b85e5b8..2b9d4b93c 100644
--- a/src/citra_qt/CMakeLists.txt
+++ b/src/citra_qt/CMakeLists.txt
@@ -1,8 +1,8 @@
1set(SRCS 1set(SRCS
2 bootmanager.cpp 2 bootmanager.cpp
3 callstack.cpp 3 callstack.cpp
4 disasm.cpp 4 disassembler.cpp
5 cpu_regs.cpp 5 registers.cpp
6 hotkeys.cpp 6 hotkeys.cpp
7 main.cpp 7 main.cpp
8 ramview.cpp 8 ramview.cpp
@@ -11,8 +11,8 @@ set(SRCS
11 11
12qt4_wrap_ui(UI_HDRS 12qt4_wrap_ui(UI_HDRS
13 callstack.ui 13 callstack.ui
14 disasm.ui 14 disassembler.ui
15 cpu_regs.ui 15 registers.ui
16 hotkeys.ui 16 hotkeys.ui
17 main.ui 17 main.ui
18 config/controller_config.ui) 18 config/controller_config.ui)
@@ -20,8 +20,8 @@ qt4_wrap_ui(UI_HDRS
20qt4_wrap_cpp(MOC_SRCS 20qt4_wrap_cpp(MOC_SRCS
21 bootmanager.hxx 21 bootmanager.hxx
22 callstack.hxx 22 callstack.hxx
23 disasm.hxx 23 disassembler.hxx
24 cpu_regs.hxx 24 registers.hxx
25 hotkeys.hxx 25 hotkeys.hxx
26 main.hxx 26 main.hxx
27 ramview.hxx 27 ramview.hxx
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 6cf0e61c8..738144927 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -11,6 +11,7 @@ set(SRCS break_points.cpp
11 misc.cpp 11 misc.cpp
12 msg_handler.cpp 12 msg_handler.cpp
13 string_util.cpp 13 string_util.cpp
14 symbols.cpp
14 thread.cpp 15 thread.cpp
15 timer.cpp 16 timer.cpp
16 utf8.cpp 17 utf8.cpp
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index 9cfb9b1c8..3ba3afa70 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -17,7 +17,15 @@ set(SRCS core.cpp
17 elf/elf_reader.cpp 17 elf/elf_reader.cpp
18 file_sys/directory_file_system.cpp 18 file_sys/directory_file_system.cpp
19 file_sys/meta_file_system.cpp 19 file_sys/meta_file_system.cpp
20 hle/hle.cpp
21 hle/syscall.cpp
22 hle/service/apt.cpp
23 hle/service/gsp.cpp
24 hle/service/hid.cpp
25 hle/service/service.cpp
26 hle/service/srv.cpp
20 hw/hw.cpp 27 hw/hw.cpp
21 hw/hw_lcd.cpp) 28 hw/lcd.cpp
29 hw/ndma.cpp)
22 30
23add_library(core STATIC ${SRCS}) 31add_library(core STATIC ${SRCS})