X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Figc%2Fmeson.build;h=9ab19ea9c32507a80951dd1fd923f04a45c0f28f;hb=fa06906a48ee9d31a22f58a05f72c7bd4b737459;hp=e402f2610686ec06daac331719727ead6bd972ae;hpb=a5aeb2b9e225ef8efc6e7a96543cce670d05f88a;p=dpdk.git diff --git a/drivers/net/igc/meson.build b/drivers/net/igc/meson.build index e402f26106..9ab19ea9c3 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_ethdev.c', + 'igc_logs.c', + 'igc_filter.c', + 'igc_flow.c', + 'igc_txrx.c', ) includes += include_directories('base')