yuzu-fork/src/citra_qt/CMakeLists.txt

65 lines
1.7 KiB
CMake
Raw Normal View History

2014-08-18 05:35:44 +01:00
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
2014-04-01 03:26:50 +01:00
set(SRCS
config/controller_config.cpp
config/controller_config_util.cpp
config.cpp
2014-04-23 03:42:29 +01:00
debugger/callstack.cpp
debugger/disassembler.cpp
debugger/graphics.cpp
2014-05-18 16:52:22 +01:00
debugger/graphics_cmdlists.cpp
2014-04-23 03:42:29 +01:00
debugger/ramview.cpp
debugger/registers.cpp
bootmanager.cpp
2014-04-11 01:50:10 +01:00
hotkeys.cpp
main.cpp
)
2014-08-18 05:35:44 +01:00
2014-08-19 12:34:00 +01:00
set(HEADERS
config/controller_config.hxx
config/controller_config_util.hxx
config.h
2014-04-29 03:40:39 +01:00
debugger/callstack.hxx
debugger/disassembler.hxx
debugger/graphics.hxx
debugger/graphics_cmdlists.hxx
2014-04-29 03:40:39 +01:00
debugger/ramview.hxx
debugger/registers.hxx
bootmanager.hxx
2014-04-29 03:40:39 +01:00
hotkeys.hxx
main.hxx
version.h
)
2014-04-01 03:26:50 +01:00
2014-08-19 12:34:00 +01:00
set(UIS
config/controller_config.ui
2014-08-19 12:34:00 +01:00
debugger/callstack.ui
debugger/disassembler.ui
debugger/registers.ui
hotkeys.ui
main.ui
)
create_directory_groups(${SRCS} ${HEADERS} ${UIS})
2014-04-01 03:26:50 +01:00
if (Qt5_FOUND)
2014-08-19 12:34:00 +01:00
qt5_wrap_ui(UI_HDRS ${UIS})
else()
qt4_wrap_ui(UI_HDRS ${UIS})
endif()
2014-04-01 03:26:50 +01:00
2014-08-19 12:34:00 +01:00
add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS})
target_link_libraries(citra-qt core common video_core qhexedit)
target_link_libraries(citra-qt ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS})
2014-04-01 03:26:50 +01:00
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 12:34:00 +01:00
endif()
2014-08-18 05:35:44 +01:00
2014-04-01 03:26:50 +01:00
#install(TARGETS citra-qt RUNTIME DESTINATION ${bindir})