net/cxgbe: add to meson build
[dpdk.git] / drivers / net / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 drivers = ['af_packet',
5         'ark',
6         'avp',
7         'axgbe', 'bonding',
8         'bnx2x',
9         'bnxt',
10         'cxgbe',
11         'dpaa', 'dpaa2',
12         'e1000', 'enic', 'fm10k', 'i40e',
13         'ifc',
14         'ixgbe',
15         'mvpp2', 'null', 'octeontx', 'pcap', 'ring',
16         'sfc', 'thunderx', 'virtio']
17 std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
18 std_deps += ['bus_pci']         # very many PMDs depend on PCI, so make std
19 std_deps += ['bus_vdev']        # same with vdev bus
20 config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
21 driver_name_fmt = 'rte_pmd_@0@'