X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=eb74f215a3b4f9d969e3f3815b01c0b3c0b54a37;hb=a617494eeb01ff;hp=7491316e30ba34e3e9763ddb4c48bc7cf2126926;hpb=fa036e70d794f45a4a39fe8256892c45292ecaea;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 7491316e30..eb74f215a3 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,19 +1,37 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(c) 2017 Intel Corporation +# Copyright(c) 2017-2019 Intel Corporation -apps = ['test-eventdev', - 'test-pmd'] +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-fib', + 'test-flow-perf', + 'test-pipeline', + 'test-pmd', + 'test-regex', + 'test-sad'] # for BSD only lib_execinfo = cc.find_library('execinfo', required: false) +default_cflags = machine_args + ['-DALLOW_EXPERIMENTAL_API'] + foreach app:apps build = true name = app - allow_experimental_apis = false sources = [] includes = [] - cflags = machine_args + cflags = default_cflags objs = [] # other object files to link against, used e.g. for # instruction-set optimized versions of code @@ -34,11 +52,7 @@ foreach app:apps link_libs = [] if get_option('default_library') == 'static' - link_libs = dpdk_drivers - endif - - if allow_experimental_apis - cflags += '-DALLOW_EXPERIMENTAL_API' + link_libs = dpdk_static_libraries + dpdk_drivers endif executable('dpdk-' + name, @@ -51,3 +65,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')