Untabify
This commit is contained in:
50
meson.build
50
meson.build
@@ -152,10 +152,10 @@ elif fft == 'fftw'
|
|||||||
pkgconfig_requirements += fftw3_dep
|
pkgconfig_requirements += fftw3_dep
|
||||||
else
|
else
|
||||||
fftw_dep = cpp.find_library('fftw3',
|
fftw_dep = cpp.find_library('fftw3',
|
||||||
dirs: get_option('extra_lib_dirs'),
|
dirs: get_option('extra_lib_dirs'),
|
||||||
has_headers: ['fftw3.h'],
|
has_headers: ['fftw3.h'],
|
||||||
header_args: extra_include_args,
|
header_args: extra_include_args,
|
||||||
required: true)
|
required: true)
|
||||||
endif
|
endif
|
||||||
feature_dependencies += fftw3_dep
|
feature_dependencies += fftw3_dep
|
||||||
feature_defines += ['-DHAVE_FFTW3', '-DFFTW_DOUBLE_ONLY']
|
feature_defines += ['-DHAVE_FFTW3', '-DFFTW_DOUBLE_ONLY']
|
||||||
@@ -188,10 +188,10 @@ if resampler == 'libsamplerate'
|
|||||||
pkgconfig_requirements += samplerate_dep
|
pkgconfig_requirements += samplerate_dep
|
||||||
else
|
else
|
||||||
samplerate_dep = cpp.find_library('samplerate',
|
samplerate_dep = cpp.find_library('samplerate',
|
||||||
dirs: get_option('extra_lib_dirs'),
|
dirs: get_option('extra_lib_dirs'),
|
||||||
has_headers: ['samplerate.h'],
|
has_headers: ['samplerate.h'],
|
||||||
header_args: extra_include_args,
|
header_args: extra_include_args,
|
||||||
required: true)
|
required: true)
|
||||||
endif
|
endif
|
||||||
feature_dependencies += samplerate_dep
|
feature_dependencies += samplerate_dep
|
||||||
feature_defines += ['-DHAVE_LIBSAMPLERATE']
|
feature_defines += ['-DHAVE_LIBSAMPLERATE']
|
||||||
@@ -253,32 +253,32 @@ endif # ipp_needed
|
|||||||
|
|
||||||
if not vamp_dep.found()
|
if not vamp_dep.found()
|
||||||
vamp_dep = cpp.find_library('VampPluginSDK',
|
vamp_dep = cpp.find_library('VampPluginSDK',
|
||||||
dirs: get_option('extra_lib_dirs'),
|
dirs: get_option('extra_lib_dirs'),
|
||||||
has_headers: ['vamp-sdk.h'],
|
has_headers: ['vamp-sdk.h'],
|
||||||
header_args: extra_include_args,
|
header_args: extra_include_args,
|
||||||
required: false)
|
required: false)
|
||||||
if not vamp_dep.found()
|
if not vamp_dep.found()
|
||||||
vamp_dep = cpp.find_library('vamp-sdk',
|
vamp_dep = cpp.find_library('vamp-sdk',
|
||||||
dirs: get_option('extra_lib_dirs'),
|
dirs: get_option('extra_lib_dirs'),
|
||||||
has_headers: ['vamp-sdk.h'],
|
has_headers: ['vamp-sdk.h'],
|
||||||
header_args: extra_include_args,
|
header_args: extra_include_args,
|
||||||
required: false)
|
required: false)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
have_vamp = vamp_dep.found()
|
have_vamp = vamp_dep.found()
|
||||||
|
|
||||||
if not sndfile_dep.found()
|
if not sndfile_dep.found()
|
||||||
sndfile_dep = cpp.find_library('sndfile',
|
sndfile_dep = cpp.find_library('sndfile',
|
||||||
dirs: get_option('extra_lib_dirs'),
|
dirs: get_option('extra_lib_dirs'),
|
||||||
has_headers: ['sndfile.h'],
|
has_headers: ['sndfile.h'],
|
||||||
header_args: extra_include_args,
|
header_args: extra_include_args,
|
||||||
required: false)
|
required: false)
|
||||||
if not sndfile_dep.found()
|
if not sndfile_dep.found()
|
||||||
sndfile_dep = cpp.find_library('sndfile-1',
|
sndfile_dep = cpp.find_library('sndfile-1',
|
||||||
dirs: get_option('extra_lib_dirs'),
|
dirs: get_option('extra_lib_dirs'),
|
||||||
has_headers: ['sndfile.h'],
|
has_headers: ['sndfile.h'],
|
||||||
header_args: extra_include_args,
|
header_args: extra_include_args,
|
||||||
required: false)
|
required: false)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
have_sndfile = sndfile_dep.found()
|
have_sndfile = sndfile_dep.found()
|
||||||
@@ -529,5 +529,5 @@ summary({'prefix': get_option('prefix'),
|
|||||||
}, section: 'Directories')
|
}, section: 'Directories')
|
||||||
|
|
||||||
summary(config_summary + { 'Architecture': architecture },
|
summary(config_summary + { 'Architecture': architecture },
|
||||||
section: 'Configuration', bool_yn: true)
|
section: 'Configuration', bool_yn: true)
|
||||||
summary(target_summary, section: 'Build targets', bool_yn: true)
|
summary(target_summary, section: 'Build targets', bool_yn: true)
|
||||||
|
|||||||
Reference in New Issue
Block a user