X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fproc-info%2Fmeson.build;h=1563ce656ae602fdd938b6e93f7a11fdff12aa59;hb=23f7ec1d9b7ccfcfb9b9f67d33cf6cbf7f5034d3;hp=f050c4a9b4eaeeee828bb3316e62f474ffca8f0e;hpb=d711bea6fe013a9a8043c04bcd5bdb42227d06f1;p=dpdk.git diff --git a/app/proc-info/meson.build b/app/proc-info/meson.build index f050c4a9b4..1563ce656a 100644 --- a/app/proc-info/meson.build +++ b/app/proc-info/meson.build @@ -1,5 +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') -deps += ['ethdev', 'metrics', 'security'] +deps += ['ethdev', 'security'] +if dpdk_conf.has('RTE_LIB_METRICS') + deps += 'metrics' +endif