X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Figc%2Fmeson.build;h=b971e6f8c628bf36d51b5a6b62545db89da11fd2;hb=89813a522e68076e6f50ec18b075fa57cc5ae937;hp=e402f2610686ec06daac331719727ead6bd972ae;hpb=a5aeb2b9e225ef8efc6e7a96543cce670d05f88a;p=dpdk.git diff --git a/drivers/net/igc/meson.build b/drivers/net/igc/meson.build index e402f26106..b971e6f8c6 100644 --- a/drivers/net/igc/meson.build +++ b/drivers/net/igc/meson.build @@ -1,13 +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_txrx.c' + 'igc_txrx.c', + 'igc_filter.c', + 'igc_flow.c' ) includes += include_directories('base')