net: add compat headers without rte prefix
[dpdk.git] / lib / librte_net / meson.build
1
2 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright(c) 2017 Intel Corporation
4
5 version = 1
6 allow_experimental_apis = true
7 headers = files('rte_ip.h',
8         'rte_tcp.h',
9         'rte_udp.h',
10         'rte_esp.h',
11         'rte_sctp.h',
12         'rte_icmp.h',
13         'rte_arp.h',
14         'rte_ether.h',
15         'rte_gre.h',
16         'rte_net.h',
17         'rte_net_crc.h',
18         'rte_ip_compat.h',
19         'rte_tcp_compat.h',
20         'rte_udp_compat.h',
21         'rte_esp_compat.h',
22         'rte_sctp_compat.h',
23         'rte_icmp_compat.h',
24         'rte_arp_compat.h',
25         'rte_ether_compat.h',
26         'rte_gre_compat.h')
27
28 sources = files('rte_arp.c', 'rte_net.c', 'rte_net_crc.c')
29 deps += ['mbuf']