fix(Cmake/Build): correct build single app (#12202)

This commit is contained in:
Winfidonarleyan
2023-01-15 21:22:53 +07:00
committed by GitHub
parent aecf278cbe
commit 739165a197
+4 -4
View File
@@ -71,12 +71,12 @@ function(CheckApplicationsBuildList)
if (APPS_BUILD MATCHES "-only") if (APPS_BUILD MATCHES "-only")
set(BUILD_APPS_USE_WHITELIST ON) set(BUILD_APPS_USE_WHITELIST ON)
if (APPS_BUILD STREQUAL "servers-only") if (APPS_BUILD STREQUAL "auth-only")
list(APPEND BUILD_APPS_WHITELIST authserver worldserver) list(APPEND BUILD_APPS_WHITELIST authserver)
endif() endif()
if (APPS_BUILD STREQUAL "dbimport-only") if (APPS_BUILD STREQUAL "world-only")
list(APPEND BUILD_APPS_WHITELIST dbimport) list(APPEND BUILD_APPS_WHITELIST worldserver)
endif() endif()
endif() endif()