Files
webrtc-audio-processing/webrtc/third_party/pffft/meson.build
Arun Raghavan 54a632f018 meson: Convert the 'neon' option into a feature
Easier to express things, now that runtime is a no-op.
2024-12-30 16:21:08 -05:00

22 lines
487 B
Meson

pffft_sources = [
'src/pffft.c',
]
pffft_cflags = [ '-D_GNU_SOURCE' ]
if not have_inline_sse or (have_arm and not neon_opt.enabled()) or (have_mips and host_machine.endian() == 'little') or have_mips64
pffft_cflags += [ '-DPFFFT_SIMD_DISABLE' ]
endif
libpffft = static_library('libpffft',
pffft_sources,
dependencies: common_deps,
include_directories: webrtc_inc,
c_args : common_cflags + pffft_cflags
)
pffft_dep = declare_dependency(
link_with: libpffft
)