summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-04-12 18:46:53 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2017-04-12 18:46:53 +0530
commit43bf94db5b7cab3ca486c46ef0fdcfda0f206498 (patch)
tree473e83ade8c94c8f2674095912b115479b3ec042
parentcebf961dd53e38fb01420c6b20d6804ea69920cf (diff)
downloadgstreamer-plugins-good-43bf94db5b7cab3ca486c46ef0fdcfda0f206498.tar.gz
meson: Print message when disabling taglib on MSVC
-rw-r--r--ext/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/meson.build b/ext/meson.build
index 6fef67c7c..e4b6fc9e1 100644
--- a/ext/meson.build
+++ b/ext/meson.build
@@ -13,7 +13,9 @@ subdir('shout2')
subdir('soup')
subdir('speex')
# FIXME: taglib fails to compile and link with msvc
-if cc.get_id() != 'msvc'
+if cc.get_id() == 'msvc'
+ message('Building with MSVC, disabling taglib support. Patches welcome!')
+else
subdir('taglib')
endif
subdir('vpx')