mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
This is an autotools leftover, with meson we're always guaranteed to have the config.h file.
21 lines
352 B
Meson
21 lines
352 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, spa_inc, includes_inc ],
|
|
dependencies : [ alsa_dep, mathlib, ]
|
|
)
|