2014-04-01 02:26:50 +00:00
|
|
|
set(SRCS
|
2014-04-11 00:50:10 +00:00
|
|
|
bootmanager.cpp
|
2014-04-23 02:42:29 +00:00
|
|
|
debugger/callstack.cpp
|
|
|
|
debugger/disassembler.cpp
|
|
|
|
debugger/ramview.cpp
|
|
|
|
debugger/registers.cpp
|
2014-04-11 00:50:10 +00:00
|
|
|
hotkeys.cpp
|
|
|
|
main.cpp
|
|
|
|
config/controller_config.cpp
|
|
|
|
config/controller_config_util.cpp)
|
2014-04-29 02:40:39 +00:00
|
|
|
set (HEADS
|
|
|
|
bootmanager.hxx
|
|
|
|
debugger/callstack.hxx
|
|
|
|
debugger/disassembler.hxx
|
|
|
|
debugger/ramview.hxx
|
|
|
|
debugger/registers.hxx
|
|
|
|
hotkeys.hxx
|
|
|
|
main.hxx
|
|
|
|
ui_callstack.h
|
|
|
|
ui_controller_config.h
|
|
|
|
ui_disassembler.h
|
|
|
|
ui_hotkeys.h
|
|
|
|
ui_main.h
|
|
|
|
ui_registers.h
|
|
|
|
version.h
|
|
|
|
config/controller_config.hxx
|
|
|
|
config/controller_config_util.hxx)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
qt4_wrap_ui(UI_HDRS
|
2014-04-23 02:42:29 +00:00
|
|
|
debugger/callstack.ui
|
|
|
|
debugger/disassembler.ui
|
|
|
|
debugger/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
|
2014-04-23 02:42:29 +00:00
|
|
|
debugger/callstack.hxx
|
|
|
|
debugger/disassembler.hxx
|
|
|
|
debugger/registers.hxx
|
|
|
|
debugger/ramview.hxx
|
2014-04-11 00:50:10 +00:00
|
|
|
hotkeys.hxx
|
|
|
|
main.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
|
|
|
|
2014-04-29 02:40:39 +00:00
|
|
|
add_executable(citra-qt ${SRCS} ${HEADS} ${MOC_SRCS} ${UI_HDRS})
|
|
|
|
if (APPLE)
|
2014-04-30 23:56:25 +00:00
|
|
|
target_link_libraries(citra-qt core common video_core qhexedit iconv ${COREFOUNDATION_LIBRARY} ${QT_LIBRARIES} ${GLEW_LIBRARY} ${OPENGL_LIBRARIES})
|
2014-04-29 02:40:39 +00:00
|
|
|
else()
|
2014-05-01 01:44:48 +00:00
|
|
|
target_link_libraries(citra-qt core common video_core qhexedit ${QT_LIBRARIES} ${OPENGL_LIBRARIES} ${SDL2_LIBRARY} rt GLEW ${GLFW_LIBRARIES})
|
2014-04-29 02:40:39 +00:00
|
|
|
endif()
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir})
|