X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest-pipeline%2Fmeson.build;h=3add6b637bdb5ec81013140a2011b95b22b7eaaf;hb=a538d1d2d01e85429e7dd011806b52250d37c5dc;hp=d5eddaba99668bb2416827b62bbf031f48a4afa7;hpb=b9a842674b7169b1fb69fdee0986ed0e9c443d6d;p=dpdk.git diff --git a/app/test-pipeline/meson.build b/app/test-pipeline/meson.build index d5eddaba99..3add6b637b 100644 --- a/app/test-pipeline/meson.build +++ b/app/test-pipeline/meson.build @@ -1,14 +1,21 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2019 Intel Corporation +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + sources = files( - 'config.c', - 'init.c', - 'main.c', - 'pipeline_acl.c', - 'pipeline_hash.c', - 'pipeline_lpm.c', - 'pipeline_lpm_ipv6.c', - 'pipeline_stub.c', - 'runtime.c') + 'config.c', + 'init.c', + 'main.c', + 'pipeline_acl.c', + 'pipeline_hash.c', + 'pipeline_lpm.c', + 'pipeline_lpm_ipv6.c', + 'pipeline_stub.c', + 'runtime.c', +) deps += ['pipeline', 'pci']