summaryrefslogtreecommitdiff
path: root/webrtc/modules/third_party/fft/meson.build
blob: 1868796c63d7e7604a13d0bb3f764676f5894152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
fft_sources = ['fft.c']

libfft = static_library('libfft',
    fft_sources,
    dependencies: common_deps,
    include_directories: webrtc_inc,
    cpp_args : common_cxxflags
)

fft_dep = declare_dependency(
    link_with: libfft
)