From 5c7eb854051dd01702578b9aeb30116079660150 Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Tue, 16 Jul 2024 12:34:14 +0800 Subject: [PATCH] meson: Fix builds against ICU >= 75.x on Visual Studio Sadly, we can't just use '-std=c++17' for Visual Studio, but must use '/std:c++17'... That's sadly, life... --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9606190b9..de941e7b8 100644 --- a/meson.build +++ b/meson.build @@ -186,7 +186,8 @@ else endif if icu_dep.found() and icu_dep.version().version_compare('>=75.1') and (get_option('cpp_std') == 'c++11' or get_option('cpp_std') == 'c++14') - add_project_arguments('-std=c++17', language: 'cpp') + cpp17_arg = cpp.get_argument_syntax() == 'msvc' ? '/std:c++17' : '-std=c++17' + add_project_arguments(cpp17_arg, language: 'cpp') endif if icu_dep.found() and icu_dep.type_name() == 'pkgconfig'