mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
15 lines
286 B
Meson
15 lines
286 B
Meson
|
subenc_sources = [
|
||
|
'gstsrtenc.c',
|
||
|
'gstsubenc.c',
|
||
|
'gstwebvttenc.c',
|
||
|
]
|
||
|
|
||
|
gstsubenc = library('gstsubenc',
|
||
|
subenc_sources,
|
||
|
c_args : gst_plugins_bad_args,
|
||
|
include_directories : [configinc],
|
||
|
dependencies : [gstbase_dep],
|
||
|
install : true,
|
||
|
install_dir : plugins_install_dir,
|
||
|
)
|