X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_node%2Fmeson.build;h=3d582f616a4c59f9ca2ce73b67861a1f6779f4d3;hb=f63ba2005e9215a9859a4977bcafe6e6f8244165;hp=f3de60ab4aaaa7c0ab67efe6ba2f563a9f53af03;hpb=f0f804236f088d384998ef85d574d6b5debf8ee9;p=dpdk.git diff --git a/lib/librte_node/meson.build b/lib/librte_node/meson.build index f3de60ab4a..3d582f616a 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') +sources = files('null.c', 'log.c', 'ethdev_rx.c', 'ethdev_tx.c', 'ip4_lookup.c', + 'ip4_rewrite.c', 'pkt_drop.c', 'ethdev_ctrl.c', 'pkt_cls.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', 'ethdev'] +deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev']