diff options
| author | 2023-12-30 20:51:23 -0500 | |
|---|---|---|
| committer | 2024-01-29 18:43:45 -0500 | |
| commit | 7de6b410305fcfcd34078e62fbe0ceedb43663f9 (patch) | |
| tree | b5f3dc0d7631852a64466f3765e62e0707b8d0c8 /src/core/CMakeLists.txt | |
| parent | Merge pull request #12846 from german77/mii_const (diff) | |
| download | yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.tar.gz yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.tar.xz yuzu-7de6b410305fcfcd34078e62fbe0ceedb43663f9.zip | |
service: split am into components
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index ea6b2c285..3a2ba9ed4 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -392,6 +392,7 @@ add_library(core STATIC | |||
| 392 | hle/service/acc/profile_manager.h | 392 | hle/service/acc/profile_manager.h |
| 393 | hle/service/am/am.cpp | 393 | hle/service/am/am.cpp |
| 394 | hle/service/am/am.h | 394 | hle/service/am/am.h |
| 395 | hle/service/am/am_results.h | ||
| 395 | hle/service/am/applet_ae.cpp | 396 | hle/service/am/applet_ae.cpp |
| 396 | hle/service/am/applet_ae.h | 397 | hle/service/am/applet_ae.h |
| 397 | hle/service/am/applet_oe.cpp | 398 | hle/service/am/applet_oe.cpp |
| @@ -417,12 +418,56 @@ add_library(core STATIC | |||
| 417 | hle/service/am/applets/applet_web_browser_types.h | 418 | hle/service/am/applets/applet_web_browser_types.h |
| 418 | hle/service/am/applets/applets.cpp | 419 | hle/service/am/applets/applets.cpp |
| 419 | hle/service/am/applets/applets.h | 420 | hle/service/am/applets/applets.h |
| 421 | hle/service/am/applet_common_functions.cpp | ||
| 422 | hle/service/am/applet_common_functions.h | ||
| 423 | hle/service/am/applet_message_queue.cpp | ||
| 424 | hle/service/am/applet_message_queue.h | ||
| 425 | hle/service/am/application_creator.cpp | ||
| 426 | hle/service/am/application_creator.h | ||
| 427 | hle/service/am/application_functions.cpp | ||
| 428 | hle/service/am/application_functions.h | ||
| 429 | hle/service/am/application_proxy.cpp | ||
| 430 | hle/service/am/application_proxy.h | ||
| 431 | hle/service/am/audio_controller.cpp | ||
| 432 | hle/service/am/audio_controller.h | ||
| 433 | hle/service/am/common_state_getter.cpp | ||
| 434 | hle/service/am/common_state_getter.h | ||
| 435 | hle/service/am/debug_functions.cpp | ||
| 436 | hle/service/am/debug_functions.h | ||
| 437 | hle/service/am/display_controller.cpp | ||
| 438 | hle/service/am/display_controller.h | ||
| 439 | hle/service/am/global_state_controller.cpp | ||
| 440 | hle/service/am/global_state_controller.h | ||
| 441 | hle/service/am/home_menu_functions.cpp | ||
| 442 | hle/service/am/home_menu_functions.h | ||
| 420 | hle/service/am/idle.cpp | 443 | hle/service/am/idle.cpp |
| 421 | hle/service/am/idle.h | 444 | hle/service/am/idle.h |
| 445 | hle/service/am/library_applet_accessor.cpp | ||
| 446 | hle/service/am/library_applet_accessor.h | ||
| 447 | hle/service/am/library_applet_creator.cpp | ||
| 448 | hle/service/am/library_applet_creator.h | ||
| 449 | hle/service/am/library_applet_proxy.cpp | ||
| 450 | hle/service/am/library_applet_proxy.h | ||
| 451 | hle/service/am/library_applet_self_accessor.cpp | ||
| 452 | hle/service/am/library_applet_self_accessor.h | ||
| 453 | hle/service/am/lock_accessor.cpp | ||
| 454 | hle/service/am/lock_accessor.h | ||
| 422 | hle/service/am/omm.cpp | 455 | hle/service/am/omm.cpp |
| 423 | hle/service/am/omm.h | 456 | hle/service/am/omm.h |
| 457 | hle/service/am/process_winding_controller.cpp | ||
| 458 | hle/service/am/process_winding_controller.h | ||
| 459 | hle/service/am/self_controller.cpp | ||
| 460 | hle/service/am/self_controller.h | ||
| 461 | hle/service/am/system_applet_proxy.cpp | ||
| 462 | hle/service/am/system_applet_proxy.h | ||
| 424 | hle/service/am/spsm.cpp | 463 | hle/service/am/spsm.cpp |
| 425 | hle/service/am/spsm.h | 464 | hle/service/am/spsm.h |
| 465 | hle/service/am/storage_accessor.cpp | ||
| 466 | hle/service/am/storage_accessor.h | ||
| 467 | hle/service/am/storage.cpp | ||
| 468 | hle/service/am/storage.h | ||
| 469 | hle/service/am/window_controller.cpp | ||
| 470 | hle/service/am/window_controller.h | ||
| 426 | hle/service/aoc/aoc_u.cpp | 471 | hle/service/aoc/aoc_u.cpp |
| 427 | hle/service/aoc/aoc_u.h | 472 | hle/service/aoc/aoc_u.h |
| 428 | hle/service/apm/apm.cpp | 473 | hle/service/apm/apm.cpp |