f-stack/dpdk/drivers/net/ionic/meson.build

22 lines
469 B
Meson
Raw Normal View History

2023-09-13 12:21:49 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2019-2022 Advanced Micro Devices, Inc.
2021-02-05 08:48:47 +00:00
2022-09-06 04:00:10 +00:00
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
endif
2021-02-05 08:48:47 +00:00
sources = files(
2022-09-06 04:00:10 +00:00
'ionic_dev.c',
2023-09-13 12:21:49 +00:00
'ionic_dev_pci.c',
2022-09-06 04:00:10 +00:00
'ionic_ethdev.c',
'ionic_lif.c',
'ionic_mac_api.c',
'ionic_main.c',
'ionic_rx_filter.c',
'ionic_rxtx.c',
2023-09-13 12:21:49 +00:00
'ionic_rxtx_simple.c',
'ionic_rxtx_sg.c',
2021-02-05 08:48:47 +00:00
)