Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cpp/src/arrow/integration/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ exc = executable(
dependencies: [arrow_test_dep_no_main, rapidjson_dep, gflags_dep],
)

arrow_c_data_integration_lib = library(
'arrow_c_data_integration',
sources: ['c_data_integration_internal.cc'],
dependencies: [arrow_test_dep_no_main],
)

if needs_tests
test('arrow-json-integration-test', exc)
endif
1 change: 0 additions & 1 deletion cpp/src/arrow/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,6 @@ if needs_integration or needs_tests
arrow_components += {
'arrow_integration': {
'sources': [
'integration/c_data_integration_internal.cc',
'integration/json_integration.cc',
'integration/json_internal.cc',
],
Expand Down
4 changes: 4 additions & 0 deletions cpp/src/arrow/util/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,10 @@ util_tests = {
'sources': [
'bit_block_counter_test.cc',
'bit_util_test.cc',
'bitmap_test.cc',
'bpacking_test.cc',
'rle_encoding_test.cc',
'test_common.cc',
],
},
'arrow-threading-utility-test': {
Expand Down Expand Up @@ -283,6 +286,7 @@ util_benchmarks = [
'bit_block_counter',
'bit_util',
'bitmap_reader',
'bpacking',
'cache',
'compression',
'decimal',
Expand Down
Loading