X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fproc-info%2Fmeson.build;h=1563ce656ae602fdd938b6e93f7a11fdff12aa59;hb=23f7ec1d9b7ccfcfb9b9f67d33cf6cbf7f5034d3;hp=a52b2ee4a1f64eb937508ffa39891cfcc0f69b6c;hpb=57ae0ec6262076788b8b9acd4ed1527c3655f9a9;p=dpdk.git diff --git a/app/proc-info/meson.build b/app/proc-info/meson.build index a52b2ee4a1..1563ce656a 100644 --- a/app/proc-info/meson.build +++ b/app/proc-info/meson.build @@ -1,6 +1,14 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Intel Corporation +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + sources = files('main.c') -allow_experimental_apis = true -deps += ['ethdev', 'metrics'] +deps += ['ethdev', 'security'] +if dpdk_conf.has('RTE_LIB_METRICS') + deps += 'metrics' +endif