X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Fmeson.build;h=b0e6afbbe9d931fc55aa5f21bafd30ae851812d5;hb=53c4d83e41a322c5c44cff9184772723062c65fc;hp=2360a3d45aacd39a117df95b5e53f8ae3e511ab8;hpb=474572d2ae5a17b6596053c2630753fe04fc304f;p=dpdk.git diff --git a/app/meson.build b/app/meson.build index 2360a3d45a..b0e6afbbe9 100644 --- a/app/meson.build +++ b/app/meson.build @@ -1,5 +1,9 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(c) 2017 Intel Corporation +# Copyright(c) 2017-2019 Intel Corporation + +if is_windows + subdir_done() +endif apps = [ 'pdump', @@ -18,9 +22,6 @@ 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 @@ -65,3 +66,6 @@ foreach app:apps install: true) endif endforeach + +# special case the autotests +subdir('test')