mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
20 lines
528 B
Meson
20 lines
528 B
Meson
encoding_sources = [
|
|
'gstencodebasebin.c',
|
|
'gstencodebin.c',
|
|
'gstencodebin2.c',
|
|
'gstsmartencoder.c',
|
|
'gststreamcombiner.c',
|
|
'gststreamsplitter.c',
|
|
'plugin.c',
|
|
]
|
|
|
|
gstencoding = library('gstencoding',
|
|
encoding_sources,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
dependencies : [pbutils_dep, video_dep, gst_base_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstencoding, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstencoding]
|