X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=b0e6afbbe9d931fc55aa5f21bafd30ae851812d5;hb=a70ed3884104df68d28105c8ebc1fb86ae1a6248;hp=3a34ebbf3a6f5f2fe46b1c252d84072ec07db6fc;hpb=75795fabd27437d399bbdf7888f0f2515a3feda4;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 3a34ebbf3a..b0e6afbbe9 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,5 +1,9 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(c) 2017 Intel Corporation +# Copyright(c) 2017-2019 Intel Corporation + +if is_windows + subdir_done() +endif apps = [ 'pdump', @@ -10,6 +14,7 @@ apps = [ 'test-compress-perf', 'test-crypto-perf', 'test-eventdev', + 'test-pipeline', 'test-pmd'] # for BSD only @@ -17,9 +22,6 @@ lib_execinfo = cc.find_library('execinfo', required: false) default_cflags = machine_args -# specify -D_GNU_SOURCE unconditionally -default_cflags += '-D_GNU_SOURCE' - foreach app:apps build = true name = app @@ -64,3 +66,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')