Skip to content

Commit

Permalink
Fix behavior of VELOX_BUILD_MINIMAL_WITH_DWIO flag
Browse files Browse the repository at this point in the history
Summary:
Fixing the intended behavior of the open source compilation flag
VELOX_BUILD_MINIMAL_WITH_DWIO, which is to compile VELOX_BUILD_MINIMAL, plus
dwio.

Differential Revision: D56453924
  • Loading branch information
pedroerp authored and facebook-github-bot committed Apr 23, 2024
1 parent 3279ebd commit 7e75ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7e75ea8

Please sign in to comment.