X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=b0e6afbbe9d931fc55aa5f21bafd30ae851812d5;hb=9b6076a6e423fed157de40f965b1b9afd04aa58a;hp=47a2a861512ad64d363640d16e0e9e0e0bc694b3;hpb=e0b6287c035d9bc5f5ee1be84b521bfcd8cd383b;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 47a2a86151..b0e6afbbe9 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,12 +1,20 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(c) 2017 Intel Corporation +# Copyright(c) 2017-2019 Intel Corporation -apps = ['pdump', +if is_windows + subdir_done() +endif + +apps = [ + 'pdump', 'proc-info', + 'test-acl', 'test-bbdev', + 'test-cmdline', 'test-compress-perf', 'test-crypto-perf', 'test-eventdev', + 'test-pipeline', 'test-pmd'] # for BSD only @@ -14,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 @@ -61,3 +66,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')