pipewire/spa/plugins/alsa/acp/meson.build
Daniel Nouri 87d34335f3 refactor: Remove test-alsa-path-select tool
Not run by meson test and requires specific ALSA hardware.
Fix verification already completed manually.
2025-10-07 17:21:05 +02:00

22 lines
401 B
Meson

acp_sources = [
'acp.c',
'compat.c',
'alsa-mixer.c',
'alsa-ucm.c',
'alsa-util.c',
'conf-parser.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)