From 05be8d2f0c58f5de56bbf920743f91bd8584b4f2 Mon Sep 17 00:00:00 2001 From: Mathieu Vaillancourt Date: Mon, 31 Mar 2014 22:26:50 -0400 Subject: Basic QT window --- src/citra_qt/CMakeLists.txt | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/citra_qt/CMakeLists.txt (limited to 'src/citra_qt/CMakeLists.txt') diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt new file mode 100644 index 00000000..facb99e9 --- /dev/null +++ b/src/citra_qt/CMakeLists.txt @@ -0,0 +1,38 @@ +set(SRCS + src/bootmanager.cpp + src/callstack.cpp + src/disasm.cpp + src/cpu_regs.cpp + src/hotkeys.cpp + src/main.cpp + src/ramview.cpp + src/config/controller_config.cpp + src/config/controller_config_util.cpp) + +qt4_wrap_ui(UI_HDRS + src/callstack.ui + src/disasm.ui + src/cpu_regs.ui + src/hotkeys.ui + src/main.ui + src/config/controller_config.ui) + +qt4_wrap_cpp(MOC_SRCS + src/bootmanager.hxx + src/callstack.hxx + src/disasm.hxx + src/cpu_regs.hxx + src/hotkeys.hxx + src/main.hxx + src/ramview.hxx + src/config/controller_config.hxx + src/config/controller_config_util.hxx) + +# add uic results to include directories +include_directories(${CMAKE_CURRENT_BINARY_DIR}) +include_directories(./src/) + +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}) + +#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir}) -- cgit v1.2.3