mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-26 07:00:13 -05:00
port to meson
This commit is contained in:
parent
924824d0a3
commit
67dd3adb87
69 changed files with 1056 additions and 999 deletions
31
pinos/gst/meson.build
Normal file
31
pinos/gst/meson.build
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
pinos_gst_sources = [
|
||||
'gstpinos.c',
|
||||
'gstpinosclock.c',
|
||||
'gstpinosdeviceprovider.c',
|
||||
'gstpinosformat.c',
|
||||
'gstpinospool.c',
|
||||
'gstpinossink.c',
|
||||
'gstpinossrc.c',
|
||||
]
|
||||
|
||||
pinos_gst_headers = [
|
||||
'gstpinosclock.h',
|
||||
'gstpinosdeviceprovider.h',
|
||||
'gstpinosformat.h',
|
||||
'gstpinospool.h',
|
||||
'gstpinossink.h',
|
||||
'gstpinossrc.h',
|
||||
]
|
||||
|
||||
pinos_gst_c_args = [
|
||||
'-DHAVE_CONFIG_H',
|
||||
]
|
||||
|
||||
pinos_gst = shared_library('gstpinos',
|
||||
pinos_gst_sources,
|
||||
c_args : pinos_gst_c_args,
|
||||
include_directories : [configinc, spa_inc],
|
||||
dependencies : [gobject_dep, glib_dep, gio_dep, gst_dep, pinos_dep, pinoscore_dep],
|
||||
install : true,
|
||||
install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue