summaryrefslogtreecommitdiffstats
path: root/deps/meson.build
blob: 14c19d1f307e1f2d932a1e2c185988ae2db0b52b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if get_option('oclfft')
    oclfft_lib = shared_library('oclfft',
        sources: [
            'oclfft/fft_execute.cpp',
            'oclfft/fft_kernelstring.cpp',
            'oclfft/fft_setup.cpp',
        ],
        dependencies: deps,
        install: true,
    )

    oclfft_dep = declare_dependency(
        include_directories: include_directories('oclfft'),
        link_with: oclfft_lib,
    )
endif