2017-08-01 14:07:59 +00:00
|
|
|
ipcpipeline_sources = [
|
|
|
|
'gstipcpipeline.c',
|
2021-03-26 10:00:50 +00:00
|
|
|
'gstipcpipelineelement.c',
|
2017-08-01 14:07:59 +00:00
|
|
|
'gstipcpipelinecomm.c',
|
|
|
|
'gstipcpipelinesink.c',
|
|
|
|
'gstipcpipelinesrc.c',
|
|
|
|
'gstipcslavepipeline.c'
|
|
|
|
]
|
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
if get_option('ipcpipeline').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
2017-08-01 14:07:59 +00:00
|
|
|
|
2020-01-11 09:17:13 +00:00
|
|
|
gstipcpipeline = library('gstipcpipeline',
|
|
|
|
ipcpipeline_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
2022-02-25 07:00:05 +00:00
|
|
|
dependencies : [gstbase_dep] + winsock2,
|
2020-01-11 09:17:13 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
|
|
|
pkgconfig.generate(gstipcpipeline, install_dir : plugins_pkgconfig_install_dir)
|
|
|
|
plugins += [gstipcpipeline]
|