2019-04-26 12:39:35 +03:00
|
|
|
common_c_args = [
|
|
|
|
|
'-D_GNU_SOURCE',
|
|
|
|
|
'-DG_LOG_USE_STRUCTURED',
|
|
|
|
|
]
|
|
|
|
|
|
2019-06-18 19:58:42 +03:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-mixer',
|
|
|
|
|
[
|
|
|
|
|
'module-mixer.c'
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-mixer"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2019-04-26 12:39:35 +03:00
|
|
|
shared_library(
|
2019-05-17 13:08:45 +03:00
|
|
|
'wireplumber-module-pipewire',
|
|
|
|
|
[
|
|
|
|
|
'module-pipewire.c',
|
2019-05-25 23:24:55 +03:00
|
|
|
'module-pipewire/remote-endpoint.c',
|
2019-05-17 13:08:45 +03:00
|
|
|
'module-pipewire/simple-endpoint-link.c',
|
|
|
|
|
'module-pipewire/simple-endpoint.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-pipewire"'],
|
|
|
|
|
install : true,
|
2019-05-29 17:36:22 +03:00
|
|
|
install_dir : wireplumber_module_dir,
|
2019-05-17 13:08:45 +03:00
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-pw-alsa-udev',
|
|
|
|
|
[
|
|
|
|
|
'module-pw-alsa-udev.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-pw-alsa-udev"'],
|
|
|
|
|
install : true,
|
2019-05-29 17:36:22 +03:00
|
|
|
install_dir : wireplumber_module_dir,
|
2019-05-17 13:08:45 +03:00
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-pw-audio-softdsp-endpoint',
|
|
|
|
|
[
|
|
|
|
|
'module-pw-audio-softdsp-endpoint.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-pw-audio-softdsp-endpoint"'],
|
2019-04-26 12:39:35 +03:00
|
|
|
install : true,
|
2019-05-29 17:36:22 +03:00
|
|
|
install_dir : wireplumber_module_dir,
|
2019-04-26 12:39:35 +03:00
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
2019-06-10 11:52:03 -04:00
|
|
|
|
|
|
|
|
shared_library(
|
2019-06-13 14:57:59 +03:00
|
|
|
'wireplumber-module-simple-policy',
|
2019-06-10 11:52:03 -04:00
|
|
|
[
|
2019-06-13 14:57:59 +03:00
|
|
|
'module-simple-policy.c'
|
2019-06-10 11:52:03 -04:00
|
|
|
],
|
2019-06-13 14:57:59 +03:00
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-simple-policy"'],
|
2019-06-10 11:52:03 -04:00
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|