cmake: ENABLE_DEDICATED_ROOM --> ENABLE_ROOM

This commit is contained in:
OpenSauce04 2025-03-04 21:02:44 +00:00
parent 7622a7fcb5
commit 56e96dea6c
2 changed files with 3 additions and 3 deletions

View File

@ -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()

View File

@ -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()