chore(core): update build config for QLaunch services

- Add application_observer and system_process_common_functions to CMakeLists

- Add enable_home_menu setting option
This commit is contained in:
Zephyron
2026-01-28 16:43:07 +10:00
parent a5632d7576
commit 5600aefcd5
2 changed files with 7 additions and 0 deletions

View File

@@ -169,6 +169,9 @@ struct Values {
Setting<AppletMode> my_page_applet_mode{linkage, AppletMode::LLE, "my_page_applet_mode",
Category::LibraryApplet};
// System Applet
Setting<bool> qlaunch_enabled{linkage, true, "qlaunch_enabled", Category::System};
// Audio
SwitchableSetting<AudioEngine> sink_id{linkage, AudioEngine::Auto, "output_engine",
Category::Audio, Specialization::RuntimeList};

View File

@@ -467,6 +467,8 @@ add_library(core STATIC
hle/service/am/service/application_creator.h
hle/service/am/service/application_functions.cpp
hle/service/am/service/application_functions.h
hle/service/am/service/application_observer.cpp
hle/service/am/service/application_observer.h
hle/service/am/service/application_proxy.cpp
hle/service/am/service/application_proxy.h
hle/service/am/service/application_proxy_service.cpp
@@ -509,6 +511,8 @@ add_library(core STATIC
hle/service/am/service/system_applet_proxy.h
hle/service/am/service/system_application_proxy.cpp
hle/service/am/service/system_application_proxy.h
hle/service/am/service/system_process_common_functions.cpp
hle/service/am/service/system_process_common_functions.h
hle/service/am/service/window_controller.cpp
hle/service/am/service/window_controller.h
hle/service/am/window_system.cpp