X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=drivers%2Fnet%2Fhinic%2Fmeson.build;h=dbcf1777822c2be39363599ea3ebcad4f9c23265;hb=ee930d38ffca82af6c70209be7a8f2b408dc5610;hp=87c8d163ec3ed137ce8967ca9f1421a5e3e1f796;hpb=64727024d2fd4985d21efb88d90b1504e8569e71;p=dpdk.git diff --git a/drivers/net/hinic/meson.build b/drivers/net/hinic/meson.build index 87c8d163ec..dbcf177782 100644 --- a/drivers/net/hinic/meson.build +++ b/drivers/net/hinic/meson.build @@ -1,13 +1,20 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Huawei Technologies Co., Ltd +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + subdir('base') objs = [base_objs] sources = files( - 'hinic_pmd_ethdev.c', - 'hinic_pmd_rx.c', - 'hinic_pmd_tx.c', - ) + 'hinic_pmd_ethdev.c', + 'hinic_pmd_rx.c', + 'hinic_pmd_tx.c', + 'hinic_pmd_flow.c', +) includes += include_directories('base')