pipewire/spa/plugins/alsa/acp/meson.build
Peter Hutterer d9cc1a25f1 Include the valgrind headers in our tree
These headers are designed for including in the project. So the user doesn't
need to install valgrind-devel and we don't have to worry about whether the
headers are available or not.
2021-06-07 10:44:27 +00:00

23 lines
392 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, spa_inc, includes_inc ],
dependencies : [ alsa_dep, mathlib, ]
)