Merge pull request #4734 from kanavin/fix-icu-2

meson: set -std=c++17 when building with icu >= 75
This commit is contained in:
خالد حسني (Khaled Hosny) 2024-05-28 18:22:30 +03:00 committed by GitHub
commit 3c435d8678
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -174,6 +174,10 @@ else
endif
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')
endif
if icu_dep.found() and icu_dep.type_name() == 'pkgconfig'
icu_defs = icu_dep.get_variable(pkgconfig: 'DEFS', default_value: '').split()
if icu_defs.length() > 0