summaryrefslogtreecommitdiffstats
path: root/src/gtest
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2018-10-31 16:40:50 +0000
committerEric Engestrom <[email protected]>2018-10-31 18:20:25 +0000
commit091da79bb0c0d230768bf4c4cf4b89a28881a2aa (patch)
treec4c447b385d90852f9663f7c7184dcdec9889d13 /src/gtest
parent455a3cd515a1a0633dd4f7c83552351462bec6cb (diff)
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 <[email protected]> Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/gtest')
-rw-r--r--src/gtest/meson.build1
1 files changed, 1 insertions, 0 deletions
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,
)