mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
Move send and dispatch functions to the implementation. This makes it possible to place an access check before sending and dispatching. Add module-access that allows to bind and notify on globals owned by the client.
52 lines
1.8 KiB
Meson
52 lines
1.8 KiB
Meson
#subdir('gst')
|
|
subdir('spa')
|
|
|
|
pinos_module_c_args = [
|
|
'-DHAVE_CONFIG_H',
|
|
'-D_GNU_SOURCE',
|
|
]
|
|
|
|
pinos_module_access = shared_library('pinos-module-access', [ 'module-access.c' ],
|
|
c_args : pinos_module_c_args,
|
|
include_directories : [configinc, spa_inc],
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/pinos-0.1'.format(get_option('libdir')),
|
|
dependencies : [mathlib, dl_lib, pinos_dep, pinoscore_dep],
|
|
)
|
|
|
|
pinos_module_autolink = shared_library('pinos-module-autolink', [ 'module-autolink.c' ],
|
|
c_args : pinos_module_c_args,
|
|
include_directories : [configinc, spa_inc],
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/pinos-0.1'.format(get_option('libdir')),
|
|
dependencies : [mathlib, dl_lib, pinos_dep, pinoscore_dep],
|
|
)
|
|
|
|
pinos_module_protocol_dbus = shared_library('pinos-module-protocol-dbus', [ 'module-protocol-dbus.c', gdbus_target ],
|
|
c_args : pinos_module_c_args,
|
|
include_directories : [configinc, spa_inc],
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/pinos-0.1'.format(get_option('libdir')),
|
|
dependencies : [glib_dep, gio_dep, mathlib, dl_lib, pinos_dep, pinoscore_dep],
|
|
)
|
|
|
|
pinos_module_protocol_native = shared_library('pinos-module-protocol-native', [ 'module-protocol-native.c' ],
|
|
c_args : pinos_module_c_args,
|
|
include_directories : [configinc, spa_inc],
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/pinos-0.1'.format(get_option('libdir')),
|
|
dependencies : [mathlib, dl_lib, pinos_dep, pinoscore_dep],
|
|
)
|
|
|
|
pinos_module_suspend_on_idle = shared_library('pinos-module-suspend-on-idle', [ 'module-suspend-on-idle.c' ],
|
|
c_args : pinos_module_c_args,
|
|
include_directories : [configinc, spa_inc],
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/pinos-0.1'.format(get_option('libdir')),
|
|
dependencies : [mathlib, dl_lib, pinos_dep, pinoscore_dep],
|
|
)
|