From 739165a19778b47f34a28c18dc5ac4f5681c0bb5 Mon Sep 17 00:00:00 2001 From: Winfidonarleyan Date: Sun, 15 Jan 2023 21:22:53 +0700 Subject: fix(Cmake/Build): correct build single app (#12202) --- src/cmake/macros/ConfigureApplications.cmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cmake') 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() -- cgit v1.2.3