X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fproc-info%2Fmeson.build;h=1563ce656ae602fdd938b6e93f7a11fdff12aa59;hb=23f7ec1d9b7ccfcfb9b9f67d33cf6cbf7f5034d3;hp=9c148e36ef67b56a0fa7d440adaf9fca210b8cdc;hpb=996ef117611131392beefc5ca98fc70050eab7bf;p=dpdk.git diff --git a/app/proc-info/meson.build b/app/proc-info/meson.build index 9c148e36ef..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