X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=0f7fe946494c638a1703511ad854ed0647e59f83;hb=59d3870c7facace93db794a37e136d4a9f6ef0a3;hp=47a2a861512ad64d363640d16e0e9e0e0bc694b3;hpb=e0b6287c035d9bc5f5ee1be84b521bfcd8cd383b;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 47a2a86151..0f7fe94649 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,26 +1,32 @@ # 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-pmd'] + 'test-fib', + '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 @@ -47,10 +53,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, @@ -61,3 +63,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')