From d6a00762b4202f6567ef694aed31f8d5cd2fae2b Mon Sep 17 00:00:00 2001 From: briaguya <70942617+briaguya-ai@users.noreply.github.com> Date: Sun, 12 Nov 2023 06:11:29 -0500 Subject: [PATCH] cmake remove --- soh/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/soh/CMakeLists.txt b/soh/CMakeLists.txt index fd0c6ac25..4e98ec89d 100644 --- a/soh/CMakeLists.txt +++ b/soh/CMakeLists.txt @@ -167,6 +167,11 @@ else() list(FILTER soh__Enhancements EXCLUDE REGEX "soh/Enhancements/speechsynthesizer/(Darwin|SAPI).*") endif() +# handle accessible audio engine removals +if (CMAKE_SYSTEM_NAME MATCHES "NintendoSwitch|CafeOS") + list(FILTER soh__Enhancements EXCLUDE REGEX "soh/Enhancements/accessible-actors/*") +endif() + source_group("soh\\Enhancements" REGULAR_EXPRESSION "soh/Enhancements/*") source_group("soh\\Enhancements\\audio" REGULAR_EXPRESSION "soh/Enhancements/audio/*") source_group("soh\\Enhancements\\controls" REGULAR_EXPRESSION "soh/Enhancements/controls/*")