From: Eric Engestrom Date: Wed, 31 Oct 2018 16:40:50 +0000 (+0000) Subject: meson: hide warnings from external project `gtest` X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=091da79bb0c0d230768bf4c4cf4b89a28881a2aa;p=mesa.git meson: hide warnings from external project `gtest` gtest is an external project that is copied in this tree for technical reasons, but isn't maintained by us, so its warnings are irrelevant. Cc: Emil Velikov Signed-off-by: Eric Engestrom Reviewed-by: Dylan Baker --- diff --git a/src/gtest/meson.build b/src/gtest/meson.build index 91a49240416..23c21423d00 100644 --- a/src/gtest/meson.build +++ b/src/gtest/meson.build @@ -22,6 +22,7 @@ libgtest = static_library( 'gtest', files('src/gtest-all.cc', 'src/gtest_main.cc'), include_directories : include_directories('include'), + cpp_args : '-w', build_by_default : false, )