mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
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:
parent
8aa7db54fa
commit
5c7eb85405
1 changed files with 2 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue