meson: allow boost fallback under msvc

This commit is contained in:
Ryan Lucia 2020-11-15 12:42:12 -05:00
parent 59decf1e12
commit 8900da2b9d
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ boost_modules = ['chrono', 'filesystem', 'thread', 'locale', 'regex']
if not get_option('local_boost')
boost_dep = dependency('boost', version: '>=1.50.0',
modules: boost_modules,
required: cxx.get_id() != 'msvc',
required: false,
static: get_option('default_library') == 'static')
endif