From b7434f8d9c3d0c554a63c7a5843b3afa44b48b9f Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 12 Apr 2017 18:46:53 +0530 Subject: [PATCH] meson: Print message when disabling taglib on MSVC --- ext/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/meson.build b/ext/meson.build index d60e70b..544f29a 100644 --- a/ext/meson.build +++ b/ext/meson.build @@ -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') -- 2.7.4