gstreamer/subprojects/gst-plugins-ugly/gst/dvdsub/meson.build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
603 B
Meson
Raw Normal View History

dvdsub_sources = [
'gstdvdsubdec.c',
'gstdvdsubparse.c',
]
dvdsub_headers = [
'gstdvdsubdec.h',
'gstdvdsubparse.h',
]
doc_sources = []
foreach s: dvdsub_sources + dvdsub_headers
doc_sources += meson.current_source_dir() / s
endforeach
plugin_sources += {
'dvdsub': pathsep.join(doc_sources)
}
if get_option('dvdsub').disabled()
subdir_done()
endif
gstdvdsub = library('gstdvdsub',
dvdsub_sources,
c_args : ugly_args,
include_directories : [configinc],
dependencies : [gstbase_dep, gstvideo_dep],
install : true,
install_dir : plugins_install_dir,
)
2018-10-22 09:47:37 +00:00
plugins += [gstdvdsub]