X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=inline;f=app%2Fproc-info%2Fmeson.build;h=82ed05bb0b4e54a0582af8895538a7d21e4950d0;hb=14215f34e8a4126c9d1b1df37600787c6996098c;hp=9c148e36ef67b56a0fa7d440adaf9fca210b8cdc;hpb=996ef117611131392beefc5ca98fc70050eab7bf;p=dpdk.git diff --git a/app/proc-info/meson.build b/app/proc-info/meson.build index 9c148e36ef..82ed05bb0b 100644 --- a/app/proc-info/meson.build +++ b/app/proc-info/meson.build @@ -1,6 +1,11 @@ # 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', 'metrics', 'security']