eventdev: hide timer adapter PMD file
[dpdk.git] / drivers / event / octeontx2 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2019 Marvell International Ltd.
3 #
4
5 if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
6     build = false
7     reason = 'only supported on 64-bit Linux'
8     subdir_done()
9 endif
10
11 sources = files(
12         'otx2_worker.c',
13         'otx2_worker_dual.c',
14         'otx2_evdev.c',
15         'otx2_evdev_adptr.c',
16         'otx2_evdev_crypto_adptr.c',
17         'otx2_evdev_irq.c',
18         'otx2_evdev_selftest.c',
19         'otx2_tim_evdev.c',
20         'otx2_tim_worker.c',
21 )
22
23 deps += ['bus_pci', 'common_octeontx2', 'crypto_octeontx2', 'mempool_octeontx2', 'net_octeontx2']
24
25 includes += include_directories('../../crypto/octeontx2')
26 includes += include_directories('../../common/cpt')