2014-08-18 04:35:44 +00:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
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
|
2014-05-17 20:38:10 +00:00
|
|
|
debugger/graphics.cpp
|
2014-05-18 15:52:22 +00:00
|
|
|
debugger/graphics_cmdlists.cpp
|
2014-04-23 02:42:29 +00:00
|
|
|
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-08-18 04:35:44 +00:00
|
|
|
|
2014-08-19 11:34:00 +00:00
|
|
|
set(HEADERS
|
2014-04-29 02:40:39 +00:00
|
|
|
bootmanager.hxx
|
|
|
|
debugger/callstack.hxx
|
|
|
|
debugger/disassembler.hxx
|
|
|
|
debugger/ramview.hxx
|
|
|
|
debugger/registers.hxx
|
|
|
|
hotkeys.hxx
|
|
|
|
main.hxx
|
|
|
|
version.h
|
|
|
|
config/controller_config.hxx
|
|
|
|
config/controller_config_util.hxx)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-08-19 11:34:00 +00:00
|
|
|
set(UIS
|
|
|
|
debugger/callstack.ui
|
|
|
|
debugger/disassembler.ui
|
|
|
|
debugger/registers.ui
|
|
|
|
hotkeys.ui
|
|
|
|
main.ui
|
|
|
|
config/controller_config.ui)
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-08-19 11:34:00 +00:00
|
|
|
if(USE_QT5)
|
|
|
|
qt5_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
else()
|
|
|
|
qt4_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
endif()
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-08-19 11:34:00 +00:00
|
|
|
add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS})
|
|
|
|
if(APPLE)
|
2014-08-18 04:35:44 +00:00
|
|
|
set(ICONV_LIBRARY iconv)
|
2014-04-29 02:40:39 +00:00
|
|
|
else()
|
2014-08-18 04:35:44 +00:00
|
|
|
set(RT_LIBRARY rt)
|
2014-04-29 02:40:39 +00:00
|
|
|
endif()
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-08-19 11:34:00 +00:00
|
|
|
target_link_libraries(citra-qt core common video_core qhexedit ${ICONV_LIBRARY} ${COREFOUNDATION_LIBRARY} ${QT_LIBRARIES} ${OPENGL_LIBRARIES} ${RT_LIBRARY} ${GLEW_LIBRARY})
|
|
|
|
if(USE_QT5)
|
|
|
|
target_link_libraries(citra-qt Qt5::Gui Qt5::Widgets Qt5::OpenGL)
|
|
|
|
endif()
|
2014-08-18 04:35:44 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir})
|