mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
meson: Explicitly use cpp_std=c++11 for dxva
dxva is built unconditionally on all platforms where introspection is enabled, so let's fix the build on macOS so that introspection can be enabled there: https://gitlab.freedesktop.org/nirbheek/cerbero/-/jobs/65009118 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7659>
This commit is contained in:
parent
4dcc4b6235
commit
303dd73779
1 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,8 @@ gstdxva = library('gstdxva-' + api_version,
|
|||
version : libversion,
|
||||
soversion : soversion,
|
||||
install : true,
|
||||
dependencies : [gstvideo_dep, gstcodecs_dep]
|
||||
dependencies : [gstvideo_dep, gstcodecs_dep],
|
||||
override_options: ['cpp_std=c++11'],
|
||||
)
|
||||
|
||||
library_def = {'lib': gstdxva}
|
||||
|
|
Loading…
Reference in a new issue