From fb5d9978ff3537c48fddbffddf6800c90413d980 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Thu, 15 Jun 2023 14:18:17 +0200 Subject: [PATCH] MINOR: [C++] Fix CMake options ordering The ARROW_ACERO option was breaking alphabetical ordering of Arrow Components. --- cpp/cmake_modules/DefineOptions.cmake | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cpp/cmake_modules/DefineOptions.cmake b/cpp/cmake_modules/DefineOptions.cmake index e2ad9e7a8b932..ba784f1517b5a 100644 --- a/cpp/cmake_modules/DefineOptions.cmake +++ b/cpp/cmake_modules/DefineOptions.cmake @@ -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) @@ -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