X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=87fc195dbf52a44a6e48cd8b9868d739957669ba;hb=2b6d6d71a0992220043b2f5c3b885c486e7921b7;hp=47a2a861512ad64d363640d16e0e9e0e0bc694b3;hpb=e0b6287c035d9bc5f5ee1be84b521bfcd8cd383b;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 47a2a86151..87fc195dbf 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,36 +1,49 @@ # 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-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 - -# specify -D_GNU_SOURCE unconditionally -default_cflags += '-D_GNU_SOURCE' +default_cflags = machine_args + ['-DALLOW_EXPERIMENTAL_API'] +default_ldflags = [] +if get_option('default_library') == 'static' and not is_windows + default_ldflags += ['-Wl,--export-dynamic'] +endif foreach app:apps build = true name = app - allow_experimental_apis = false sources = [] includes = [] cflags = default_cflags + ldflags = default_ldflags objs = [] # other object files to link against, used e.g. for # instruction-set optimized versions of code # use "deps" for internal DPDK dependencies, and "ext_deps" for # external package/library requirements ext_deps = [] - deps = dpdk_app_link_libraries + deps = [] subdir(name) @@ -47,17 +60,18 @@ 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, + link_args: ldflags, link_whole: link_libs, dependencies: dep_objs, + include_directories: includes, install_rpath: join_paths(get_option('prefix'), driver_install_path), install: true) endif endforeach + +# special case the autotests +subdir('test')