Skip to content

Commit 56e96de

Browse files
committed
cmake: ENABLE_DEDICATED_ROOM --> ENABLE_ROOM
1 parent 7622a7f commit 56e96de

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ option(ENABLE_QT_TRANSLATION "Enable translations for the Qt frontend" OFF)
7171
CMAKE_DEPENDENT_OPTION(ENABLE_QT_UPDATER "Enable built-in updater for the Qt frontend" ON "NOT IOS" OFF)
7272

7373
CMAKE_DEPENDENT_OPTION(ENABLE_TESTS "Enable generating tests executable" ON "NOT IOS" OFF)
74-
CMAKE_DEPENDENT_OPTION(ENABLE_DEDICATED_ROOM "Enable generating dedicated room executable" ON "NOT ANDROID AND NOT IOS" OFF)
74+
CMAKE_DEPENDENT_OPTION(ENABLE_ROOM "Enable generating dedicated room executable" ON "NOT ANDROID AND NOT IOS" OFF)
7575

7676
option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" ON)
7777
option(ENABLE_SCRIPTING "Enable RPC server for scripting" ON)
@@ -451,7 +451,7 @@ if (NOT ANDROID AND NOT IOS)
451451
bundle_target(citra_meta)
452452
endif()
453453

454-
if (ENABLE_DEDICATED_ROOM)
454+
if (ENABLE_ROOM)
455455
bundle_target(citra_room)
456456
endif()
457457
endif()

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ if (ENABLE_QT OR ENABLE_SDL2_FRONTEND)
192192
add_subdirectory(citra_meta)
193193
endif()
194194

195-
if (ENABLE_DEDICATED_ROOM)
195+
if (ENABLE_ROOM)
196196
add_subdirectory(citra_room)
197197
endif()
198198

0 commit comments

Comments
 (0)