X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=71109cc422142c0cf9d3384fe76f7f50997b641d;hb=5302532d4a1ef9cd291bbf872ad8be9642a923f6;hp=e68d949e9a775fb2d293855f3180d16831402163;hpb=5d7b673d5fd6663b20c675dd382d9fb43b42af18;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index e68d949e9a..71109cc422 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,21 +1,28 @@ # 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-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' - foreach app:apps build = true name = app @@ -29,7 +36,7 @@ foreach app:apps # use "deps" for internal DPDK dependencies, and "ext_deps" for # external package/library requirements ext_deps = [] - deps = [] + deps = dpdk_app_link_libraries subdir(name) @@ -43,7 +50,7 @@ foreach app:apps link_libs = [] if get_option('default_library') == 'static' - link_libs = dpdk_drivers + link_libs = dpdk_static_libraries + dpdk_drivers endif if allow_experimental_apis @@ -60,3 +67,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')