X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=e949624b701d9b427e663f1b4cd129f17597ef84;hb=fa647c5722b86cdabb1ed60701ef7eb6095bbd66;hp=99e0b93ec3fe3206a94f63cb2ed30626ad5a972f;hpb=996ef117611131392beefc5ca98fc70050eab7bf;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 99e0b93ec3..e949624b70 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,30 +1,44 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(c) 2017 Intel Corporation +# Copyright(c) 2017-2019 Intel Corporation -apps = ['pdump', +if host_machine.system() == 'windows' + subdir_done() +endif + +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) +default_cflags = machine_args + +# specify -D_GNU_SOURCE unconditionally +default_cflags += '-D_GNU_SOURCE' + 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 # use "deps" for internal DPDK dependencies, and "ext_deps" for # external package/library requirements ext_deps = [] - deps = [] + deps = dpdk_app_link_libraries subdir(name) @@ -38,7 +52,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 @@ -55,3 +69,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')