meson: Print message when disabling taglib on MSVC

This commit is contained in:
Nirbheek Chauhan 2017-04-12 18:46:53 +05:30
parent 7077425c3d
commit b7434f8d9c

View 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')