cmake: ENABLE_DEDICATED_ROOM --> ENABLE_ROOM
This commit is contained in:
parent
7622a7fcb5
commit
56e96dea6c
2 changed files with 3 additions and 3 deletions
|
|
@ -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_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_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_WEB_SERVICE "Enable web services (telemetry, etc.)" ON)
|
||||||
option(ENABLE_SCRIPTING "Enable RPC server for scripting" ON)
|
option(ENABLE_SCRIPTING "Enable RPC server for scripting" ON)
|
||||||
|
|
@ -451,7 +451,7 @@ if (NOT ANDROID AND NOT IOS)
|
||||||
bundle_target(citra_meta)
|
bundle_target(citra_meta)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (ENABLE_DEDICATED_ROOM)
|
if (ENABLE_ROOM)
|
||||||
bundle_target(citra_room)
|
bundle_target(citra_room)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
|
||||||
|
|
@ -192,7 +192,7 @@ if (ENABLE_QT OR ENABLE_SDL2_FRONTEND)
|
||||||
add_subdirectory(citra_meta)
|
add_subdirectory(citra_meta)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (ENABLE_DEDICATED_ROOM)
|
if (ENABLE_ROOM)
|
||||||
add_subdirectory(citra_room)
|
add_subdirectory(citra_room)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue