blob: 5547549dac329244fbf917463c36e12dee8c6940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
capp_sources = [
'gstpcapparse.c',
'gstirtspparse.c',
'plugin.c',
]
gstpcapparse = library('gstpcapparse',
capp_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep] + winsock2,
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstpcapparse, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstpcapparse]
|