xref: /dpdk/drivers/net/cxgbe/meson.build (revision 68a03efeed657e6e05f281479b33b51102797e15)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2018 Intel Corporation
3
4if is_windows
5	build = false
6	reason = 'not supported on Windows'
7	subdir_done()
8endif
9
10sources = files('cxgbe_ethdev.c',
11	'cxgbe_main.c',
12	'cxgbevf_ethdev.c',
13	'cxgbevf_main.c',
14	'sge.c',
15	'cxgbe_filter.c',
16	'cxgbe_flow.c',
17	'clip_tbl.c',
18	'mps_tcam.c',
19	'l2t.c',
20	'smt.c',
21	'base/t4_hw.c',
22	'base/t4vf_hw.c')
23includes += include_directories('base')
24