mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-09 13:30:06 -05:00
move things around
This commit is contained in:
parent
847cef83b6
commit
d1655196c3
130 changed files with 363 additions and 335 deletions
31
src/gst/meson.build
Normal file
31
src/gst/meson.build
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
pipewire_gst_sources = [
|
||||
'gstpipewire.c',
|
||||
'gstpipewireclock.c',
|
||||
'gstpipewiredeviceprovider.c',
|
||||
'gstpipewireformat.c',
|
||||
'gstpipewirepool.c',
|
||||
'gstpipewiresink.c',
|
||||
'gstpipewiresrc.c',
|
||||
]
|
||||
|
||||
pipewire_gst_headers = [
|
||||
'gstpipewireclock.h',
|
||||
'gstpipewiredeviceprovider.h',
|
||||
'gstpipewireformat.h',
|
||||
'gstpipewirepool.h',
|
||||
'gstpipewiresink.h',
|
||||
'gstpipewiresrc.h',
|
||||
]
|
||||
|
||||
pipewire_gst_c_args = [
|
||||
'-DHAVE_CONFIG_H',
|
||||
]
|
||||
|
||||
pipewire_gst = shared_library('gstpipewire',
|
||||
pipewire_gst_sources,
|
||||
c_args : pipewire_gst_c_args,
|
||||
include_directories : [configinc, spa_inc],
|
||||
dependencies : [gobject_dep, glib_dep, gio_dep, gst_dep, pipewire_dep],
|
||||
install : true,
|
||||
install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue