summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cmake/macros/ConfigureApplications.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cmake/macros/ConfigureApplications.cmake b/src/cmake/macros/ConfigureApplications.cmake
index 38009eb18c..623c3f9faa 100644
--- a/src/cmake/macros/ConfigureApplications.cmake
+++ b/src/cmake/macros/ConfigureApplications.cmake
@@ -71,12 +71,12 @@ function(CheckApplicationsBuildList)
if (APPS_BUILD MATCHES "-only")
set(BUILD_APPS_USE_WHITELIST ON)
- if (APPS_BUILD STREQUAL "servers-only")
- list(APPEND BUILD_APPS_WHITELIST authserver worldserver)
+ if (APPS_BUILD STREQUAL "auth-only")
+ list(APPEND BUILD_APPS_WHITELIST authserver)
endif()
- if (APPS_BUILD STREQUAL "dbimport-only")
- list(APPEND BUILD_APPS_WHITELIST dbimport)
+ if (APPS_BUILD STREQUAL "world-only")
+ list(APPEND BUILD_APPS_WHITELIST worldserver)
endif()
endif()