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...
This commit is contained in:
Chun-wei Fan 2024-07-16 12:34:14 +08:00 committed by Behdad Esfahbod
parent 8aa7db54fa
commit 5c7eb85405

View file

@ -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'