X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=71109cc422142c0cf9d3384fe76f7f50997b641d;hb=91c0c9789c44bd478bfad6fc1b134741eab98987;hp=2360a3d45aacd39a117df95b5e53f8ae3e511ab8;hpb=474572d2ae5a17b6596053c2630753fe04fc304f;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 2360a3d45a..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', @@ -11,16 +15,14 @@ apps = [ 'test-crypto-perf', 'test-eventdev', 'test-pipeline', - 'test-pmd'] + '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 @@ -65,3 +67,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')