Skip to content

Commit

Permalink
MINOR: [C++] Fix CMake options ordering
Browse files Browse the repository at this point in the history
The ARROW_ACERO option was breaking alphabetical ordering of Arrow Components.
  • Loading branch information
pitrou committed Jun 15, 2023
1 parent 475b5b9 commit fb5d997
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cpp/cmake_modules/DefineOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,13 @@ takes precedence over ccache if a storage backend is configured" ON)
#----------------------------------------------------------------------
set_option_category("Project component")

define_option(ARROW_ACERO
"Build the Arrow Acero Engine Module"
OFF
DEPENDS
ARROW_COMPUTE
ARROW_IPC)

define_option(ARROW_BUILD_UTILITIES "Build Arrow commandline utilities" OFF)

define_option(ARROW_COMPUTE "Build all Arrow Compute kernels" OFF)
Expand Down Expand Up @@ -402,13 +409,6 @@ takes precedence over ccache if a storage backend is configured" ON)
ARROW_IPC
ARROW_PARQUET)

define_option(ARROW_ACERO
"Build the Arrow Acero Engine Module"
OFF
DEPENDS
ARROW_COMPUTE
ARROW_IPC)

define_option(ARROW_TENSORFLOW "Build Arrow with TensorFlow support enabled" OFF)

define_option(ARROW_TESTING
Expand Down

0 comments on commit fb5d997

Please sign in to comment.