2014-08-18 10:05:44 +05:30
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
set(SRCS
|
2014-08-24 06:52:05 +05:30
|
|
|
config/controller_config.cpp
|
|
|
|
config/controller_config_util.cpp
|
2014-04-23 08:12:29 +05:30
|
|
|
debugger/callstack.cpp
|
|
|
|
debugger/disassembler.cpp
|
2014-05-18 02:08:10 +05:30
|
|
|
debugger/graphics.cpp
|
2014-05-18 21:22:22 +05:30
|
|
|
debugger/graphics_cmdlists.cpp
|
2014-04-23 08:12:29 +05:30
|
|
|
debugger/ramview.cpp
|
|
|
|
debugger/registers.cpp
|
2014-08-24 06:52:05 +05:30
|
|
|
bootmanager.cpp
|
2014-04-11 06:20:10 +05:30
|
|
|
hotkeys.cpp
|
|
|
|
main.cpp
|
2014-08-24 06:52:05 +05:30
|
|
|
)
|
2014-08-18 10:05:44 +05:30
|
|
|
|
2014-08-19 17:04:00 +05:30
|
|
|
set(HEADERS
|
2014-08-24 06:52:05 +05:30
|
|
|
config/controller_config.hxx
|
|
|
|
config/controller_config_util.hxx
|
2014-04-29 08:10:39 +05:30
|
|
|
debugger/callstack.hxx
|
|
|
|
debugger/disassembler.hxx
|
2014-08-24 06:52:05 +05:30
|
|
|
debugger/graphics.hxx
|
|
|
|
debugger/graphics_cmdlists.hxx
|
2014-04-29 08:10:39 +05:30
|
|
|
debugger/ramview.hxx
|
|
|
|
debugger/registers.hxx
|
2014-08-24 06:52:05 +05:30
|
|
|
bootmanager.hxx
|
2014-04-29 08:10:39 +05:30
|
|
|
hotkeys.hxx
|
|
|
|
main.hxx
|
|
|
|
version.h
|
2014-08-24 06:52:05 +05:30
|
|
|
)
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-08-19 17:04:00 +05:30
|
|
|
set(UIS
|
2014-08-24 06:52:05 +05:30
|
|
|
config/controller_config.ui
|
2014-08-19 17:04:00 +05:30
|
|
|
debugger/callstack.ui
|
|
|
|
debugger/disassembler.ui
|
|
|
|
debugger/registers.ui
|
|
|
|
hotkeys.ui
|
|
|
|
main.ui
|
2014-08-24 06:52:05 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS} ${UIS})
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-08-24 06:52:05 +05:30
|
|
|
if (Qt5_FOUND)
|
2014-08-19 17:04:00 +05:30
|
|
|
qt5_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
else()
|
|
|
|
qt4_wrap_ui(UI_HDRS ${UIS})
|
|
|
|
endif()
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-08-19 17:04:00 +05:30
|
|
|
add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS})
|
2014-08-24 06:52:05 +05:30
|
|
|
target_link_libraries(citra-qt core common video_core qhexedit)
|
|
|
|
target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS})
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-08-24 06:52:05 +05:30
|
|
|
if (APPLE)
|
|
|
|
target_link_libraries(citra-qt iconv ${COREFOUNDATION_LIBRARY})
|
|
|
|
elseif (WIN32)
|
|
|
|
target_link_libraries(citra-qt winmm)
|
|
|
|
else() # Unix
|
|
|
|
target_link_libraries(citra-qt rt)
|
2014-08-19 17:04:00 +05:30
|
|
|
endif()
|
2014-08-18 10:05:44 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir})
|