From 03f5fc2b0bcd749daff03bee2393ea147d71c75c Mon Sep 17 00:00:00 2001 From: Adonis Ling Date: Mon, 7 Feb 2022 16:06:42 +0800 Subject: [PATCH] [chore] Make build setting BUILD_META_TOOL optional. (#7948) --- be/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/CMakeLists.txt b/be/CMakeLists.txt index 9a9f0f182a..6bf98132f1 100644 --- a/be/CMakeLists.txt +++ b/be/CMakeLists.txt @@ -769,7 +769,7 @@ add_subdirectory(${SRC_DIR}/runtime) add_subdirectory(${SRC_DIR}/service) add_subdirectory(${SRC_DIR}/udf) -if (${BUILD_META_TOOL} STREQUAL "ON") +if (BUILD_META_TOOL AND BUILD_META_TOOL STREQUAL "ON") add_subdirectory(${SRC_DIR}/tools) endif()