xref: /dpdk/drivers/net/cxgbe/meson.build (revision 4ad4b20a79052d9c8062b64eaf0170c16a333ff8)
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(
11        'cxgbe_ethdev.c',
12        'cxgbe_main.c',
13        'cxgbevf_ethdev.c',
14        'cxgbevf_main.c',
15        'sge.c',
16        'cxgbe_filter.c',
17        'cxgbe_flow.c',
18        'clip_tbl.c',
19        'mps_tcam.c',
20        'l2t.c',
21        'smt.c',
22        'base/t4_hw.c',
23        'base/t4vf_hw.c',
24)
25includes += include_directories('base')
26