X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Figc%2Fmeson.build;h=b971e6f8c628bf36d51b5a6b62545db89da11fd2;hb=aa1c17f1d8202a1a6e64e813103cdbe6b357b0ba;hp=aa211d6a56f31fb8a4e0124fb3d31f4c6f2c4d84;hpb=8cb7c57d9b3c1e495c8792a4f6e5be7aaaf57891;p=dpdk.git diff --git a/drivers/net/igc/meson.build b/drivers/net/igc/meson.build index aa211d6a56..b971e6f8c6 100644 --- a/drivers/net/igc/meson.build +++ b/drivers/net/igc/meson.build @@ -1,12 +1,21 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2019-2020 Intel Corporation +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + subdir('base') objs = [base_objs] sources = files( 'igc_logs.c', - 'igc_ethdev.c' + 'igc_ethdev.c', + 'igc_txrx.c', + 'igc_filter.c', + 'igc_flow.c' ) includes += include_directories('base')