pipewire/spa/plugins/alsa/acp/meson.build
Wim Taymans 1612f5e4d2 alsa-acp: Add libacp based card device
libacp is a port and wrapper around the pulseaudio card profile code.
It uses a set of templates for construct a card profile and mixer port
settings. It also has support for UCM when available for the hardware.
2020-07-06 12:20:09 +02:00

23 lines
383 B
Meson

acp_sources = [
'acp.c',
'compat.c',
'alsa-mixer.c',
'alsa-ucm.c',
'alsa-util.c',
'conf-parser.c',
]
acp_c_args = [
'-D_GNU_SOURCE',
'-DHAVE_ALSA_UCM',
'-DHAVE_CONFIG_H',
'-DHAVE_READLINK',
]
acp_lib = static_library(
'acp',
acp_sources,
c_args : acp_c_args,
include_directories : [configinc],
dependencies : [ alsa_dep, mathlib, ],
install : true)