net/txgbe: add queue stats mapping
[dpdk.git] / drivers / net / txgbe / base / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2015-2020
3
4 sources = [
5         'txgbe_eeprom.c',
6         'txgbe_hw.c',
7         'txgbe_mng.c',
8         'txgbe_phy.c',
9 ]
10
11 error_cflags = []
12
13 c_args = cflags
14 foreach flag: error_cflags
15         if cc.has_argument(flag)
16                 c_args += flag
17         endif
18 endforeach
19
20 base_lib = static_library('txgbe_base', sources,
21         dependencies: static_rte_eal,
22         c_args: c_args)
23 base_objs = base_lib.extract_all_objects()