mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
meson: add fftw option
Packagers need to have a way to control whether a dependency is used even if it's installed/available.
This commit is contained in:
parent
a77c1cbd0b
commit
64b7a8990e
2 changed files with 5 additions and 1 deletions
|
|
@ -321,7 +321,7 @@ cdata.set('HAVE_DBUS', dbus_dep.found())
|
|||
sdl_dep = dependency('sdl2', required : get_option('sdl2'))
|
||||
summary({'SDL2 (video examples)': sdl_dep.found()}, bool_yn: true, section: 'Misc dependencies')
|
||||
drm_dep = dependency('libdrm', required : false)
|
||||
fftw_dep = dependency('fftw3f', required : false)
|
||||
fftw_dep = dependency('fftw3f', required : get_option('fftw'))
|
||||
summary({'fftw3f (filter-chain convolver)': fftw_dep.found()}, bool_yn: true, section: 'Misc dependencies')
|
||||
cdata.set('HAVE_FFTW', fftw_dep.found())
|
||||
|
||||
|
|
|
|||
|
|
@ -383,3 +383,7 @@ option('ebur128',
|
|||
description: 'Enable code that depends on ebur128',
|
||||
type: 'feature',
|
||||
value: 'auto')
|
||||
option('fftw',
|
||||
description: 'Enable code that depends on fftw',
|
||||
type: 'feature',
|
||||
value: 'auto')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue