Skip to content

Commit 20a76be

Browse files
committed
Suppress arrow build warnings
1 parent 2ea48b4 commit 20a76be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ if get_option('tests')
143143
# Similarly code coverage has a built in option users should use instead
144144
# https://mesonbuild.com/Unit-tests.html#coverage
145145

146-
arrow_dep = dependency('arrow')
146+
# The system include suppresses compilation warnings from Arrow
147+
arrow_dep = dependency('arrow', include_type='system')
147148
gtest_dep = dependency('gtest_main')
148149
gmock_dep = dependency('gmock')
149150
nlohmann_json_dep = dependency('nlohmann_json')

0 commit comments

Comments
 (0)