diff options
author | Winfidonarleyan <dowlandtop@yandex.com> | 2023-01-15 21:22:53 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 15:22:53 +0100 |
commit | 739165a19778b47f34a28c18dc5ac4f5681c0bb5 (patch) | |
tree | e30cfc283959ff951200ec4e57ee79f68d7c7e93 | |
parent | aecf278cbe3f00a80dfac0088d695cbae10e3b87 (diff) |
fix(Cmake/Build): correct build single app (#12202)
-rw-r--r-- | src/cmake/macros/ConfigureApplications.cmake | 8 |
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() |