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
27
pinos/modules/gst/meson.build
Normal file
27
pinos/modules/gst/meson.build
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
pinos_module_spa_headers = [
|
||||
'spa-alsa-monitor.h',
|
||||
'spa-audiotestsrc.h',
|
||||
'spa-v4l2-monitor.h',
|
||||
'spa-videotestsrc.h',
|
||||
]
|
||||
|
||||
pinos_module_spa_sources = [
|
||||
'module.c',
|
||||
'spa-alsa-monitor.c',
|
||||
'spa-audiotestsrc.c',
|
||||
'spa-v4l2-monitor.c',
|
||||
'spa-videotestsrc.c',
|
||||
]
|
||||
|
||||
pinos_module_spa_c_args = [
|
||||
'-DHAVE_CONFIG_H',
|
||||
'-D_GNU_SOURCE',
|
||||
]
|
||||
|
||||
|
||||
pinos_module_spa = shared_library('pinos-module-spa', pinos_module_spa_sources,
|
||||
c_args : pinos_module_spa_c_args,
|
||||
include_directories : [configinc, pinosinc, spa_inc],
|
||||
link_with : spalib,
|
||||
dependencies : [gobject_dep, gmodule_dep, glib_dep, gio_dep, mathlib, dl_lib, pinos_dep, pinoscore_dep],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue