xref: /f-stack/dpdk/drivers/net/ipn3ke/meson.build (revision 2d9fd380)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2019 Intel Corporation
3
4#
5# Add the experimenatal APIs called from this PMD
6#  rte_eth_switch_domain_alloc()
7#  rte_eth_dev_create()
8#  rte_eth_dev_destroy()
9#  rte_eth_switch_domain_free()
10#
11
12if has_libfdt == 0
13	build = false
14	reason = 'missing dependency, "libfdt"'
15	subdir_done()
16endif
17
18includes += include_directories('../../raw/ifpga')
19
20sources += files('ipn3ke_ethdev.c',
21	'ipn3ke_representor.c',
22	'ipn3ke_tm.c',
23	'ipn3ke_flow.c')
24deps += ['bus_ifpga', 'ethdev', 'sched']
25