event/octeontx2: optimize timer Arm routine
[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 dpdk_conf.get('RTE_ARCH_64')
6         build = false
7         reason = 'only supported on 64-bit'
8         subdir_done()
9 endif
10
11 sources = files('otx2_worker.c',
12                 'otx2_worker_dual.c',
13                 'otx2_evdev.c',
14                 'otx2_evdev_adptr.c',
15                 'otx2_evdev_crypto_adptr.c',
16                 'otx2_evdev_irq.c',
17                 'otx2_evdev_selftest.c',
18                 'otx2_tim_evdev.c',
19                 'otx2_tim_worker.c'
20                 )
21
22 deps += ['bus_pci', 'common_octeontx2', 'crypto_octeontx2', 'mempool_octeontx2', 'net_octeontx2']
23
24 includes += include_directories('../../crypto/octeontx2')
25 includes += include_directories('../../common/cpt')