xref: /f-stack/dpdk/lib/librte_node/meson.build (revision 2d9fd380)
1*2d9fd380Sjfb8856606# SPDX-License-Identifier: BSD-3-Clause
2*2d9fd380Sjfb8856606# Copyright(C) 2020 Marvell International Ltd.
3*2d9fd380Sjfb8856606
4*2d9fd380Sjfb8856606sources = files('null.c', 'log.c', 'ethdev_rx.c', 'ethdev_tx.c', 'ip4_lookup.c',
5*2d9fd380Sjfb8856606		'ip4_rewrite.c', 'pkt_drop.c', 'ethdev_ctrl.c', 'pkt_cls.c')
6*2d9fd380Sjfb8856606headers = files('rte_node_ip4_api.h', 'rte_node_eth_api.h')
7*2d9fd380Sjfb8856606# Strict-aliasing rules are violated by uint8_t[] to context size casts.
8*2d9fd380Sjfb8856606cflags += '-fno-strict-aliasing'
9*2d9fd380Sjfb8856606deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev']
10