X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=408676b06e741983acf4d5de974a3e3419d39da6;hb=3344cf2e30011f7ed8b98313c5732ba6c29b3f9e;hp=8bdf4f58129fd815e8ed81cba82ff86bb648c989;hpb=0c36081db2b0994c6e5cde3c07c358bbc092c3a3;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 8bdf4f5812..408676b06e 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,28 +1,33 @@ # 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', 'proc-info', + 'test-acl', 'test-bbdev', 'test-cmdline', 'test-compress-perf', 'test-crypto-perf', 'test-eventdev', - 'test-pmd'] + 'test-fib', + 'test-flow-perf', + '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' +default_cflags = machine_args + ['-DALLOW_EXPERIMENTAL_API'] foreach app:apps build = true name = app - allow_experimental_apis = false sources = [] includes = [] cflags = default_cflags @@ -49,10 +54,6 @@ foreach app:apps link_libs = dpdk_static_libraries + dpdk_drivers endif - if allow_experimental_apis - cflags += '-DALLOW_EXPERIMENTAL_API' - endif - executable('dpdk-' + name, sources, c_args: cflags, @@ -63,3 +64,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')