meson: don't add_global_arguments when being built as a subproject

https://bugzilla.gnome.org/show_bug.cgi?id=773568
This commit is contained in:
Scott D Phillips 2016-10-26 22:37:19 -07:00 committed by Tim-Philipp Müller
parent 30b3055780
commit 9ce939a9ae

View file

@ -35,7 +35,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']