mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
soundtouch: Fix build failure with Apple Clang caused by missing cpp_std
Apple Clang sets C++98 by default. I'm applying C++14 to account for Meson's lack of support/fallback for `cpp_std=c++11`. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6374>
This commit is contained in:
parent
c1ac015325
commit
1f119b2035
1 changed files with 1 additions and 0 deletions
|
@ -33,6 +33,7 @@ if soundtouch_dep.found()
|
|||
cpp_args : gst_plugins_bad_args + soundtouch_cargs,
|
||||
include_directories : [configinc],
|
||||
dependencies : [gstaudio_dep, soundtouch_dep],
|
||||
override_options: ['cpp_std=c++14'],
|
||||
install : true,
|
||||
install_dir : plugins_install_dir)
|
||||
plugins += [gstsoundtouch]
|
||||
|
|
Loading…
Reference in a new issue