From ba8253be8ea78eaad4b366d2aff7b76a7a2338c0 Mon Sep 17 00:00:00 2001 From: Pedro Eugenio Rocha Pedreira Date: Tue, 23 Apr 2024 08:03:05 -0700 Subject: [PATCH] Fix behavior of VELOX_BUILD_MINIMAL_WITH_DWIO flag (#9576) Summary: Pull Request resolved: https://github.com/facebookincubator/velox/pull/9576 Fixing the intended behavior of the open source compilation flag VELOX_BUILD_MINIMAL_WITH_DWIO, which is to compile VELOX_BUILD_MINIMAL, plus dwio. Reviewed By: xiaoxmeng Differential Revision: D56453924 fbshipit-source-id: 11effdd7062ac3ca3dd440e958eb7490ff263b44 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 83feabee3ef7..45eb5ec955ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,7 +123,7 @@ option( option(VELOX_FORCE_COLORED_OUTPUT "Always produce ANSI-colored output (GNU/Clang only)." OFF) -if(${VELOX_BUILD_MINIMAL}) +if(${VELOX_BUILD_MINIMAL} OR ${VELOX_BUILD_MINIMAL_WITH_DWIO}) # Enable and disable components for velox base build set(VELOX_BUILD_TESTING OFF) set(VELOX_ENABLE_PRESTO_FUNCTIONS ON)