pipewire/spa/plugins/alsa/acp/meson.build
Peter Hutterer 0054319d88 meson.build: add -D_GNU_SOURCE to the project arguments
This appends it to every compilation command so we can get rid of the c_args
for (almost all) executables.
2021-06-09 07:47:51 +00:00

22 lines
373 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_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, ]
)