xref: /dpdk/drivers/net/igc/meson.build (revision 4ad4b20a)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2019-2020 Intel Corporation
3
4if is_windows
5    build = false
6    reason = 'not supported on Windows'
7    subdir_done()
8endif
9
10subdir('base')
11objs = [base_objs]
12
13sources = files(
14        'igc_ethdev.c',
15        'igc_logs.c',
16        'igc_filter.c',
17        'igc_flow.c',
18        'igc_txrx.c',
19)
20
21includes += include_directories('base')
22