mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-19 07:00:10 -05:00
22 lines
695 B
Meson
22 lines
695 B
Meson
conf_files = [
|
|
[ 'bluez-hardware.conf', 'bluez-hardware.conf' ],
|
|
[ 'bluez-monitor.conf', 'bluez-monitor.conf' ],
|
|
[ 'v4l2-monitor.conf', 'v4l2-monitor.conf' ],
|
|
[ 'media-session.conf', 'media-session.conf' ],
|
|
[ 'alsa-monitor.conf', 'alsa-monitor.conf' ],
|
|
[ 'with-jack', 'with-jack' ],
|
|
[ 'with-pulseaudio', 'with-pulseaudio' ],
|
|
]
|
|
|
|
foreach c : conf_files
|
|
configure_file(input : c.get(0),
|
|
output : c.get(1),
|
|
configuration : conf_config,
|
|
install_dir : pipewire_confdatadir / 'media-session.d')
|
|
endforeach
|
|
|
|
install_data(
|
|
sources : [
|
|
'with-jack',
|
|
'with-pulseaudio' ],
|
|
install_dir : pipewire_confdatadir / 'media-session.d')
|