From 5a7c3429225a42982834f77d91e0ccb7d8879242 Mon Sep 17 00:00:00 2001 From: Scott D Phillips Date: Wed, 26 Oct 2016 22:37:34 -0700 Subject: [PATCH] meson: don't add_global_arguments when being built as a subproject https://bugzilla.gnome.org/show_bug.cgi?id=773568 --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 87aeb349ed..f7eee449a0 100644 --- a/meson.build +++ b/meson.build @@ -29,7 +29,9 @@ if cc.get_id() == 'msvc' # If a warning is completely useless and spammy, use '/wdXXXX' to suppress it # If a warning is harmless but hard to fix, use '/woXXXX' so it's shown once # NOTE: Only add warnings here if you are sure they're spurious - add_global_arguments('/wd4018', '/wd4244', '/wd4996', language : 'c') + if not meson.is_subproject() + add_global_arguments('/wd4018', '/wd4244', '/wd4996', language : 'c') + endif # Disable SAFESEH with MSVC for plugins and libs that use external deps that # are built with MinGW noseh_link_args = ['/SAFESEH:NO']