File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,8 @@ needs_s3 = get_option('s3')
65
65
needs_filesystem = get_option (' filesystem' ) or needs_azure or needs_gcs or needs_hdfs or needs_s3
66
66
needs_integration = get_option (' integration' )
67
67
needs_tests = get_option (' tests' )
68
- needs_ipc = get_option (' ipc' ) or needs_tests or needs_benchmarks
68
+ needs_acero = get_option (' acero' )
69
+ needs_ipc = get_option (' ipc' ) or needs_tests or needs_acero or needs_benchmarks
69
70
needs_testing = get_option (' testing' ) or needs_tests or needs_benchmarks or needs_integration
70
71
needs_json = get_option (' json' ) or needs_testing
71
72
Original file line number Diff line number Diff line change 15
15
# specific language governing permissions and limitations
16
16
# under the License.
17
17
18
+ option(
19
+ 'acero',
20
+ type: 'boolean',
21
+ description: 'Build the Arrow Acero Engine Module',
22
+ value: false,
23
+ )
24
+
18
25
option(
19
26
'azure',
20
27
type: 'boolean',
Original file line number Diff line number Diff line change @@ -621,6 +621,10 @@ if needs_csv
621
621
subdir (' csv' )
622
622
endif
623
623
624
+ if needs_acero
625
+ subdir (' acero' )
626
+ endif
627
+
624
628
if needs_filesystem
625
629
subdir (' filesystem' )
626
630
endif
You can’t perform that action at this time.
0 commit comments