2014-04-01 02:26:50 +00:00
|
|
|
set(SRCS
|
2014-04-11 00:50:10 +00:00
|
|
|
bootmanager.cpp
|
|
|
|
callstack.cpp
|
2014-04-22 22:35:40 +00:00
|
|
|
disassembler.cpp
|
|
|
|
registers.cpp
|
2014-04-11 00:50:10 +00:00
|
|
|
hotkeys.cpp
|
|
|
|
main.cpp
|
|
|
|
ramview.cpp
|
|
|
|
config/controller_config.cpp
|
|
|
|
config/controller_config_util.cpp)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
qt4_wrap_ui(UI_HDRS
|
2014-04-11 00:50:10 +00:00
|
|
|
callstack.ui
|
2014-04-22 22:35:40 +00:00
|
|
|
disassembler.ui
|
|
|
|
registers.ui
|
2014-04-11 00:50:10 +00:00
|
|
|
hotkeys.ui
|
|
|
|
main.ui
|
|
|
|
config/controller_config.ui)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
qt4_wrap_cpp(MOC_SRCS
|
2014-04-11 00:50:10 +00:00
|
|
|
bootmanager.hxx
|
|
|
|
callstack.hxx
|
2014-04-22 22:35:40 +00:00
|
|
|
disassembler.hxx
|
|
|
|
registers.hxx
|
2014-04-11 00:50:10 +00:00
|
|
|
hotkeys.hxx
|
|
|
|
main.hxx
|
|
|
|
ramview.hxx
|
|
|
|
config/controller_config.hxx
|
|
|
|
config/controller_config_util.hxx)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
# add uic results to include directories
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
2014-04-11 00:50:10 +00:00
|
|
|
include_directories(./)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
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})
|