build: replace license text with SPDX tag
[dpdk.git] / lib / librte_ether / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 name = 'ethdev'
5 version = 8
6 allow_experimental_apis = true
7 sources = files('ethdev_profile.c',
8         'rte_ethdev.c',
9         'rte_flow.c',
10         'rte_mtr.c',
11         'rte_tm.c')
12
13 headers = files('rte_ethdev.h',
14         'rte_ethdev_driver.h',
15         'rte_ethdev_core.h',
16         'rte_ethdev_pci.h',
17         'rte_ethdev_vdev.h',
18         'rte_eth_ctrl.h',
19         'rte_dev_info.h',
20         'rte_flow.h',
21         'rte_flow_driver.h',
22         'rte_mtr.h',
23         'rte_mtr_driver.h',
24         'rte_tm.h',
25         'rte_tm_driver.h')
26
27 deps += ['net', 'compat']