yuzu: Add UI tab to configure BCAT services

Also displays current events if boxcat is selected.
This commit is contained in:
Zach Hilman
2019-04-28 19:01:23 -04:00
parent 102db206e0
commit f0551aef09
6 changed files with 302 additions and 0 deletions

View File

@ -66,6 +66,8 @@ add_executable(yuzu
configuration/configure_profile_manager.cpp
configuration/configure_profile_manager.h
configuration/configure_profile_manager.ui
configuration/configure_service.cpp
configuration/configure_service.h
configuration/configure_system.cpp
configuration/configure_system.h
configuration/configure_system.ui
@ -186,6 +188,10 @@ if (YUZU_USE_QT_WEB_ENGINE)
target_compile_definitions(yuzu PRIVATE -DYUZU_USE_QT_WEB_ENGINE)
endif ()
if (YUZU_ENABLE_BOXCAT)
target_compile_definitions(yuzu PRIVATE -DYUZU_ENABLE_BOXCAT)
endif ()
if(UNIX AND NOT APPLE)
install(TARGETS yuzu RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
endif()