mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-03-26 07:58:03 -04:00
Currently enabled at device creation and delegated to an external entity via a varlink protocol.
23 lines
418 B
Meson
23 lines
418 B
Meson
acp_sources = [
|
|
'acp.c',
|
|
'compat.c',
|
|
'alsa-mixer.c',
|
|
'alsa-ucm.c',
|
|
'alsa-util.c',
|
|
'conf-parser.c',
|
|
'ext-volume.c',
|
|
]
|
|
|
|
acp_c_args = [
|
|
'-DHAVE_ALSA_UCM',
|
|
'-DHAVE_READLINK',
|
|
]
|
|
|
|
acp_lib = static_library(
|
|
'acp',
|
|
acp_sources,
|
|
c_args : acp_c_args,
|
|
include_directories : [configinc, includes_inc ],
|
|
dependencies : [ spa_dep, alsa_dep, mathlib ]
|
|
)
|
|
acp_dep = declare_dependency(link_with: acp_lib)
|