diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-23 04:42:29 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-23 04:42:29 +0200 |
commit | 7a136b8a84f9b21e120efe734f86725c46b8531b (patch) | |
tree | 23102d673fb6ab5a84e033d4360654d459fc41eb /src/citra_qt/CMakeLists.txt | |
parent | removed duplicate rotl/rotr functions (diff) | |
download | yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.tar yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.tar.gz yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.tar.bz2 yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.tar.lz yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.tar.xz yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.tar.zst yuzu-7a136b8a84f9b21e120efe734f86725c46b8531b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/citra_qt/CMakeLists.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index 2b9d4b93c..594460a71 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt @@ -1,30 +1,30 @@ set(SRCS bootmanager.cpp - callstack.cpp - disassembler.cpp - registers.cpp + debugger/callstack.cpp + debugger/disassembler.cpp + debugger/ramview.cpp + debugger/registers.cpp hotkeys.cpp main.cpp - ramview.cpp config/controller_config.cpp config/controller_config_util.cpp) qt4_wrap_ui(UI_HDRS - callstack.ui - disassembler.ui - registers.ui + debugger/callstack.ui + debugger/disassembler.ui + debugger/registers.ui hotkeys.ui main.ui config/controller_config.ui) qt4_wrap_cpp(MOC_SRCS bootmanager.hxx - callstack.hxx - disassembler.hxx - registers.hxx + debugger/callstack.hxx + debugger/disassembler.hxx + debugger/registers.hxx + debugger/ramview.hxx hotkeys.hxx main.hxx - ramview.hxx config/controller_config.hxx config/controller_config_util.hxx) @@ -33,6 +33,6 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) include_directories(./) add_executable(citra-qt ${SRCS} ${MOC_SRCS} ${UI_HDRS}) -target_link_libraries(citra-qt core common qhexedit ${QT_LIBRARIES} ${OPENGL_LIBRARIES} ${SDL2_LIBRARY} rt GLEW ${GLFW_LIBRARIES}) +target_link_libraries(citra-qt core common video_core qhexedit ${QT_LIBRARIES} ${OPENGL_LIBRARIES} ${SDL2_LIBRARY} rt GLEW ${GLFW_LIBRARIES}) #install(TARGETS citra-qt RUNTIME DESTINATION ${bindir}) |