diff --git a/cpp/src/arrow/ipc/meson.build b/cpp/src/arrow/ipc/meson.build index 9ea0780bfc4..97e83629d20 100644 --- a/cpp/src/arrow/ipc/meson.build +++ b/cpp/src/arrow/ipc/meson.build @@ -22,12 +22,7 @@ exc = executable( ) test('arrow-feather-test', exc) -ipc_tests = [ - 'json_simple_test', - 'message_internal_test', - 'read_write_test', - 'tensor_test', -] +ipc_tests = ['message_internal_test', 'read_write_test', 'tensor_test'] foreach ipc_test : ipc_tests test_name = 'arrow-ipc-@0@'.format(ipc_test.replace('_', '-')) @@ -44,7 +39,6 @@ install_headers( 'api.h', 'dictionary.h', 'feather.h', - 'json_simple.h', 'message.h', 'options.h', 'reader.h', diff --git a/cpp/src/arrow/json/meson.build b/cpp/src/arrow/json/meson.build index 4b84b95c415..15549c9fe68 100644 --- a/cpp/src/arrow/json/meson.build +++ b/cpp/src/arrow/json/meson.build @@ -21,6 +21,7 @@ exc = executable( 'chunked_builder_test.cc', 'chunker_test.cc', 'converter_test.cc', + 'from_string_test.cc', 'parser_test.cc', 'reader_test.cc', ], @@ -41,6 +42,7 @@ install_headers( 'chunked_builder.h', 'chunker.h', 'converter.h', + 'from_string.h', 'object_parser.h', 'object_writer.h', 'options.h',