X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Fsched%2Fmeson.build;h=df75db51edca7e5136d2cbe285fd685fd73378d7;hb=ffe77e911f6a3d62757bc740670c4fda28f882f2;hp=b24f7b8775fc742f35690d52e29f5f7b3066698f;hpb=99a2dd955fba6e4cc23b77d590a033650ced9c45;p=dpdk.git diff --git a/lib/sched/meson.build b/lib/sched/meson.build index b24f7b8775..df75db51ed 100644 --- a/lib/sched/meson.build +++ b/lib/sched/meson.build @@ -1,11 +1,18 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -sources = files('rte_sched.c', 'rte_red.c', 'rte_approx.c') +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + +sources = files('rte_sched.c', 'rte_red.c', 'rte_approx.c', 'rte_pie.c') headers = files( 'rte_approx.h', 'rte_red.h', 'rte_sched.h', 'rte_sched_common.h', + 'rte_pie.h', ) deps += ['mbuf', 'meter']