build-sys: meson: Move qpaeq to daemon build

Equalizer control requires server modules only available when daemon is built.
Move qpaeq script to be installed together with daemon.

Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/734>
This commit is contained in:
Igor V. Kovalenko 2022-07-09 09:12:38 +03:00 committed by PulseAudio Marge Bot
parent baa3d24b76
commit 07a9fcefba

View file

@ -72,6 +72,10 @@ if get_option('daemon')
c_args : pa_c_args,
)
endif
if dbus_dep.found() and fftw_dep.found()
install_data('qpaeq', install_dir : bindir)
endif
endif
if get_option('client')
@ -117,9 +121,5 @@ if get_option('client')
)
endif
if dbus_dep.found() and fftw_dep.found()
install_data('qpaeq', install_dir : bindir)
endif
install_data('pa-info', install_dir : bindir)
endif