X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fevent%2Fmeson.build;h=63d6b410b22e108f18c35fa808549e1099eab107;hb=4f74cb68b96496acce845e75b5533f019f248b1e;hp=50d30c53fc9c30c4d04b91924b272be9a8e8b715;hpb=3ef6bbfeadb89191dda296c07afb35c7c971dd07;p=dpdk.git diff --git a/drivers/event/meson.build b/drivers/event/meson.build index 50d30c53fc..63d6b410b2 100644 --- a/drivers/event/meson.build +++ b/drivers/event/meson.build @@ -1,11 +1,23 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -drivers = ['dpaa', 'dpaa2', 'octeontx2', 'opdl', 'skeleton', 'sw', 'dsw'] +if is_windows + subdir_done() +endif + +drivers = [ + 'cnxk', + 'dlb2', + 'dpaa', + 'dpaa2', + 'dsw', + 'octeontx2', + 'opdl', + 'skeleton', + 'sw', +] if not (toolchain == 'gcc' and cc.version().version_compare('<4.8.6') and - dpdk_conf.has('RTE_ARCH_ARM64')) - drivers += 'octeontx' + dpdk_conf.has('RTE_ARCH_ARM64')) + drivers += 'octeontx' endif std_deps = ['eventdev', 'kvargs'] -config_flag_fmt = 'RTE_LIBRTE_@0@_EVENTDEV_PMD' -driver_name_fmt = 'rte_pmd_@0@_event'