mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 09:29:42 +00:00
15 lines
375 B
Meson
15 lines
375 B
Meson
|
switchbin_sources = [
|
||
|
'gstswitchbin.c', 'plugin.c'
|
||
|
]
|
||
|
|
||
|
gstswitchbin = library('gstswitchbin',
|
||
|
switchbin_sources,
|
||
|
c_args : gst_plugins_bad_args,
|
||
|
include_directories : [configinc],
|
||
|
dependencies : [gst_dep],
|
||
|
install : true,
|
||
|
install_dir : plugins_install_dir,
|
||
|
)
|
||
|
pkgconfig.generate(gstswitchbin, install_dir : plugins_pkgconfig_install_dir)
|
||
|
plugins += [gstswitchbin]
|