X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_node%2Fmeson.build;h=17f1316ac8cc8a025477af7b63ac5b4b4e631212;hb=f44b09f9e35a1a37de7ddb73e2eceaeb049f5e6c;hp=6bda53fc9b0aadeab4eeb45fc9f2a6bc35b7fd1a;hpb=77edede86f397c31fd2d10b6a4b26745e158804e;p=dpdk.git diff --git a/lib/librte_node/meson.build b/lib/librte_node/meson.build index 6bda53fc9b..17f1316ac8 100644 --- a/lib/librte_node/meson.build +++ b/lib/librte_node/meson.build @@ -1,7 +1,9 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(C) 2020 Marvell International Ltd. -sources = files('null.c', 'log.c', 'ethdev_rx.c', 'ethdev_tx.c') +sources = files('null.c', 'log.c', 'ethdev_rx.c', 'ethdev_tx.c', 'ip4_lookup.c', + 'ip4_rewrite.c', 'pkt_drop.c', 'ethdev_ctrl.c') +headers = files('rte_node_ip4_api.h', 'rte_node_eth_api.h') # Strict-aliasing rules are violated by uint8_t[] to context size casts. cflags += '-fno-strict-aliasing' -deps += ['graph', 'mbuf', 'ethdev'] +deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev']