meson: Print message when disabling taglib on MSVC
authorNirbheek Chauhan <nirbheek@centricular.com>
Wed, 12 Apr 2017 13:16:53 +0000 (18:46 +0530)
committerNirbheek Chauhan <nirbheek@centricular.com>
Wed, 12 Apr 2017 13:18:27 +0000 (18:48 +0530)
ext/meson.build

index d60e70b..544f29a 100644 (file)
@@ -16,7 +16,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')