From 8900da2b9d77ee2434c04f304bb96ac693df67c5 Mon Sep 17 00:00:00 2001
From: Ryan Lucia <ryan@luciaonline.net>
Date: Sun, 15 Nov 2020 12:42:12 -0500
Subject: [PATCH] meson: allow boost fallback under msvc

---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index f32659344..6b8e0b128 100644
--- a/meson.build
+++ b/meson.build
@@ -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
 
-- 
GitLab