X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=app%2Fmeson.build;h=71109cc422142c0cf9d3384fe76f7f50997b641d;hb=b2ca1e1caed22ff23613d3e038d0a82e9755282f;hp=3a34ebbf3a6f5f2fe46b1c252d84072ec07db6fc;hpb=75795fabd27437d399bbdf7888f0f2515a3feda4;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 3a34ebbf3a..71109cc422 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,16 +14,15 @@ apps = [ 'test-compress-perf', 'test-crypto-perf', 'test-eventdev', - 'test-pmd'] + 'test-pipeline', + 'test-pmd', + 'test-sad'] # for BSD only 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 +67,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')