73118a485419739488de3ea7ce33ec86f744ed0a
[dpdk.git] / drivers / event / octeontx / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Cavium, Inc
3
4 sources = files('ssovf_worker.c',
5                 'ssovf_evdev.c',
6                 'ssovf_evdev_selftest.c',
7                 'ssovf_probe.c',
8                 'timvf_worker.c',
9                 'timvf_evdev.c',
10                 'timvf_probe.c'
11 )
12
13 deps += ['common_octeontx', 'mempool_octeontx', 'bus_vdev', 'pmd_octeontx']
14
15 # for clang 32-bit compiles we need libatomic for 64-bit atomic ops
16 if cc.get_id() == 'clang' and dpdk_conf.get('RTE_ARCH_64') == false
17         ext_deps += cc.find_library('atomic')
18 endif