mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
da9e012e8a
Split plugin into features including dynamic types which can be indiviually registered during a static build. More details here: https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2116>
23 lines
577 B
Meson
23 lines
577 B
Meson
ipcpipeline_sources = [
|
|
'gstipcpipeline.c',
|
|
'gstipcpipelineelement.c',
|
|
'gstipcpipelinecomm.c',
|
|
'gstipcpipelinesink.c',
|
|
'gstipcpipelinesrc.c',
|
|
'gstipcslavepipeline.c'
|
|
]
|
|
|
|
if get_option('ipcpipeline').disabled()
|
|
subdir_done()
|
|
endif
|
|
|
|
gstipcpipeline = library('gstipcpipeline',
|
|
ipcpipeline_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstipcpipeline, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstipcpipeline]
|