mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
meson: modules/alsa: Add udev support
This is needed now that we define HAVE_UDEV Signed-off-by: Arnaud Rebillout <arnaud.rebillout@collabora.com>
This commit is contained in:
parent
4be9e4ba54
commit
097a2ee6e6
1 changed files with 6 additions and 1 deletions
|
|
@ -21,11 +21,16 @@ if dbus_dep.found()
|
|||
libalsa_util_headers += [ '../reserve.h', '../reserve-monitor.h' ]
|
||||
endif
|
||||
|
||||
if udev_dep.found()
|
||||
libalsa_util_sources += [ '../udev-util.c' ]
|
||||
libalsa_util_headers += [ '../udev-util.h' ]
|
||||
endif
|
||||
|
||||
libalsa_util = static_library('libalsa_util',
|
||||
libalsa_util_sources,
|
||||
libalsa_util_headers,
|
||||
c_args : [pa_c_args, server_c_args],
|
||||
include_directories : [configinc, topinc],
|
||||
dependencies : [libpulse_dep, libpulsecore_dep, alsa_dep, dbus_dep],
|
||||
dependencies : [libpulse_dep, libpulsecore_dep, alsa_dep, dbus_dep, udev_dep],
|
||||
install : false
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue