f-stack/dpdk/drivers/event/octeontx2/meson.build

26 lines
637 B
Meson
Raw Normal View History

2020-06-18 16:55:50 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(C) 2019 Marvell International Ltd.
#
2021-02-05 08:48:47 +00:00
if not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit'
subdir_done()
endif
2020-06-18 16:55:50 +00:00
sources = files('otx2_worker.c',
'otx2_worker_dual.c',
'otx2_evdev.c',
'otx2_evdev_adptr.c',
2021-02-05 08:48:47 +00:00
'otx2_evdev_crypto_adptr.c',
2020-06-18 16:55:50 +00:00
'otx2_evdev_irq.c',
'otx2_evdev_selftest.c',
'otx2_tim_evdev.c',
'otx2_tim_worker.c'
)
2021-02-05 08:48:47 +00:00
deps += ['bus_pci', 'common_octeontx2', 'crypto_octeontx2', 'mempool_octeontx2', 'net_octeontx2']
2020-06-18 16:55:50 +00:00
2021-02-05 08:48:47 +00:00
includes += include_directories('../../crypto/octeontx2')
includes += include_directories('../../common/cpt')