X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Ftxgbe%2Fmeson.build;h=14729a6cf3f1ee381b773dc45f9387918729c4a9;hb=fdab8f2e17493192d555cd88cf28b06269174326;hp=d5b19af316ed7540b230c8364fa3b2fb58318176;hpb=a3babbdd0fd64eda10f3967011a410faab8080a1;p=dpdk.git diff --git a/drivers/net/txgbe/meson.build b/drivers/net/txgbe/meson.build index d5b19af316..14729a6cf3 100644 --- a/drivers/net/txgbe/meson.build +++ b/drivers/net/txgbe/meson.build @@ -1,7 +1,29 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(c) 2015-2020 +# Copyright(c) 2015-2020 Beijing WangXun Technology Co., Ltd. + +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + +subdir('base') +objs = [base_objs] sources = files( - 'txgbe_ethdev.c', + 'txgbe_ethdev.c', + 'txgbe_ethdev_vf.c', + 'txgbe_fdir.c', + 'txgbe_flow.c', + 'txgbe_ipsec.c', + 'txgbe_ptypes.c', + 'txgbe_pf.c', + 'txgbe_rxtx.c', + 'txgbe_tm.c', ) +deps += ['hash', 'security'] + +includes += include_directories('base') + +install_headers('rte_pmd_txgbe.h')