X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=0f7fe946494c638a1703511ad854ed0647e59f83;hb=2ead29e1d6fca678a4e29245710d02fab038b810;hp=aa353f6572b742f894e5e8310e3bae10d8667e23;hpb=a9de470cc7c0649221e156fc5f30a2dbdfe7c166;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index aa353f6572..0f7fe94649 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,21 +14,19 @@ apps = [ 'test-compress-perf', 'test-crypto-perf', 'test-eventdev', + 'test-fib', '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' +default_cflags = machine_args + ['-DALLOW_EXPERIMENTAL_API'] foreach app:apps build = true name = app - allow_experimental_apis = false sources = [] includes = [] cflags = default_cflags @@ -51,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,