mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 07:08:23 +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/7661>
This commit is contained in:
parent
bd305ab52e
commit
119e624f73
1 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,8 @@ gstdxva = library('gstdxva-' + api_version,
|
||||||
version : libversion,
|
version : libversion,
|
||||||
soversion : soversion,
|
soversion : soversion,
|
||||||
install : true,
|
install : true,
|
||||||
dependencies : [gstvideo_dep, gstcodecs_dep]
|
dependencies : [gstvideo_dep, gstcodecs_dep],
|
||||||
|
override_options: ['cpp_std=c++11'],
|
||||||
)
|
)
|
||||||
|
|
||||||
library_def = {'lib': gstdxva}
|
library_def = {'lib': gstdxva}
|
||||||
|
|
Loading…
Reference in a new issue