Skip to content

Commit

Permalink
Fix behavior of VELOX_BUILD_MINIMAL_WITH_DWIO flag (facebookincubator…
Browse files Browse the repository at this point in the history
…#9576)

Summary:
Pull Request resolved: facebookincubator#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
  • Loading branch information
pedroerp authored and facebook-github-bot committed Apr 23, 2024
1 parent fb9355d commit ba8253b
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 ba8253b

Please sign in to comment.