From 56e96dea6c43d5a93c9a756e3bda70d3babb7dc2 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Tue, 4 Mar 2025 21:02:44 +0000 Subject: [PATCH] cmake: `ENABLE_DEDICATED_ROOM` --> `ENABLE_ROOM` --- CMakeLists.txt | 4 ++-- src/CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 189e27da4..2ef24a730 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,7 @@ option(ENABLE_QT_TRANSLATION "Enable translations for the Qt frontend" OFF) CMAKE_DEPENDENT_OPTION(ENABLE_QT_UPDATER "Enable built-in updater for the Qt frontend" ON "NOT IOS" OFF) CMAKE_DEPENDENT_OPTION(ENABLE_TESTS "Enable generating tests executable" ON "NOT IOS" OFF) -CMAKE_DEPENDENT_OPTION(ENABLE_DEDICATED_ROOM "Enable generating dedicated room executable" ON "NOT ANDROID AND NOT IOS" OFF) +CMAKE_DEPENDENT_OPTION(ENABLE_ROOM "Enable generating dedicated room executable" ON "NOT ANDROID AND NOT IOS" OFF) option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" ON) option(ENABLE_SCRIPTING "Enable RPC server for scripting" ON) @@ -451,7 +451,7 @@ if (NOT ANDROID AND NOT IOS) bundle_target(citra_meta) endif() - if (ENABLE_DEDICATED_ROOM) + if (ENABLE_ROOM) bundle_target(citra_room) endif() endif() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 477cb1ce6..6d41f42d6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -192,7 +192,7 @@ if (ENABLE_QT OR ENABLE_SDL2_FRONTEND) add_subdirectory(citra_meta) endif() -if (ENABLE_DEDICATED_ROOM) +if (ENABLE_ROOM) add_subdirectory(citra_room) endif()