meson: Set cpp_std to c++17 for TagLib

TagLib uses C++17 as of version 2.0.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6097>
This commit is contained in:
Jonas Kvinge 2024-01-25 20:13:51 +01:00 committed by Tim-Philipp Müller
parent db52137c1a
commit da03d2f2a0

View file

@ -25,6 +25,7 @@ if taglib_dep.found() and add_languages('cpp', native: false, required: get_opti
dependencies : [gsttag_dep, taglib_dep],
install : true,
install_dir : plugins_install_dir,
override_options : ['cpp_std=c++17'],
)
plugins += [gsttaglib]
endif