f-stack/dpdk/drivers/net/ipn3ke/meson.build

33 lines
670 B
Meson
Raw Normal View History

2020-06-18 16:55:50 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2019 Intel Corporation
2022-09-06 04:00:10 +00:00
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
endif
2020-06-18 16:55:50 +00:00
#
2022-09-02 04:40:05 +00:00
# Add the experimental APIs called from this PMD
2020-06-18 16:55:50 +00:00
# rte_eth_switch_domain_alloc()
# rte_eth_dev_create()
# rte_eth_dev_destroy()
# rte_eth_switch_domain_free()
#
2021-01-28 17:08:59 +00:00
if has_libfdt == 0
2022-09-06 04:00:10 +00:00
build = false
reason = 'missing dependency, "libfdt"'
subdir_done()
2020-06-18 16:55:50 +00:00
endif
2021-02-05 08:48:47 +00:00
includes += include_directories('../../raw/ifpga')
2020-06-18 16:55:50 +00:00
2022-09-06 04:00:10 +00:00
sources += files(
'ipn3ke_ethdev.c',
'ipn3ke_flow.c',
'ipn3ke_representor.c',
'ipn3ke_tm.c',
)
2021-02-05 08:48:47 +00:00
deps += ['bus_ifpga', 'ethdev', 'sched']