X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=35e53861bb4b07e08727e3a59b1d346cde678f96;hb=09e640e35ee7990a8188c3a90a55baa1eb68792b;hp=2360a3d45aacd39a117df95b5e53f8ae3e511ab8;hpb=474572d2ae5a17b6596053c2630753fe04fc304f;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 2360a3d45a..35e53861bb 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,67 +1,74 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(c) 2017 Intel Corporation +# Copyright(c) 2017-2019 Intel Corporation -apps = [ - 'pdump', - 'proc-info', - 'test-acl', - 'test-bbdev', - 'test-cmdline', - 'test-compress-perf', - 'test-crypto-perf', - 'test-eventdev', - 'test-pipeline', - 'test-pmd'] - -# for BSD only -lib_execinfo = cc.find_library('execinfo', required: false) +if is_windows + subdir_done() +endif -default_cflags = machine_args +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', +] -# 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 - objs = [] # other object files to link against, used e.g. for - # instruction-set optimized versions of code + build = true + name = app + 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 + # use "deps" for internal DPDK dependencies, and "ext_deps" for + # external package/library requirements + ext_deps = [] + deps = [] - subdir(name) + subdir(name) - if build - dep_objs = [] - foreach d:deps - dep_objs += get_variable(get_option('default_library') - + '_rte_' + d) - endforeach - dep_objs += lib_execinfo + if not build + continue + endif - link_libs = [] - if get_option('default_library') == 'static' - link_libs = dpdk_static_libraries + dpdk_drivers - endif + dep_objs = [] + foreach d:deps + dep_objs += get_variable(get_option('default_library') + '_rte_' + d) + endforeach - if allow_experimental_apis - cflags += '-DALLOW_EXPERIMENTAL_API' - endif + link_libs = [] + if get_option('default_library') == 'static' + link_libs = dpdk_static_libraries + dpdk_drivers + endif - executable('dpdk-' + name, - sources, - c_args: cflags, - link_whole: link_libs, - dependencies: dep_objs, - install_rpath: join_paths(get_option('prefix'), - driver_install_path), - install: true) - 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) endforeach + +# special case the autotests +subdir('test')