mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 04:41:16 +00:00
b55dfb5313
The only plugins remaining are those that haven't been ported to Meson yet, and msdk. Also, the tests are still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
26 lines
864 B
Meson
26 lines
864 B
Meson
d3dvideosink_sources = [
|
|
'd3dhelpers.c',
|
|
'd3dvideosink.c',
|
|
]
|
|
|
|
if host_system != 'windows' or get_option('d3dvideosink').disabled()
|
|
subdir_done()
|
|
endif
|
|
|
|
d3d_dep = cc.find_library('d3d9', required : get_option('d3dvideosink'))
|
|
gdi_dep = cc.find_library('gdi32', required : get_option('d3dvideosink'))
|
|
have_d3d9_h = cc.has_header('d3d9.h')
|
|
if not have_d3d9_h and get_option('d3dvideosink').enabled()
|
|
error('d3dvideosink plugin enabled but d3d9.h not found')
|
|
endif
|
|
|
|
if d3d_dep.found() and gdi_dep.found() and have_d3d9_h
|
|
gstd3dvideosink = library('gstd3d',
|
|
d3dvideosink_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstvideo_dep, d3d_dep, gdi_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir)
|
|
pkgconfig.generate(gstd3dvideosink, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|