devtools: pass custom options to checkpatch
[dpdk.git] / app / meson.build
index 3a34ebb..b0e6afb 100644 (file)
@@ -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',
@@ -10,6 +14,7 @@ apps = [
        'test-compress-perf',
        'test-crypto-perf',
        'test-eventdev',
+       'test-pipeline',
        'test-pmd']
 
 # for BSD only
@@ -17,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
@@ -64,3 +66,6 @@ foreach app:apps
                                install: true)
        endif
 endforeach
+
+# special case the autotests
+subdir('test')