drivers: change indentation in build files
[dpdk.git] / drivers / net / cxgbe / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
3
4 if is_windows
5     build = false
6     reason = 'not supported on Windows'
7     subdir_done()
8 endif
9
10 sources = 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 )
25 includes += include_directories('base')