]> git.droids-corp.org - dpdk.git/blobdiff - app/test-eventdev/meson.build
app/testpmd: fix bonding mode set
[dpdk.git] / app / test-eventdev / meson.build
index a81dcd1313ee94ff41a8882797c5f223489c582c..ab8769c7559c8125b200e6be1ca56dad660d1297 100644 (file)
@@ -1,15 +1,25 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Cavium, Inc
 
-allow_experimental_apis = true
-sources = files('evt_main.c',
-               'evt_options.c',
-               'evt_test.c',
-               'parser.c',
-               'test_order_common.c',
-               'test_order_atq.c',
-               'test_order_queue.c',
-               'test_perf_common.c',
-               'test_perf_atq.c',
-               'test_perf_queue.c')
+if is_windows
+    build = false
+    reason = 'not supported on Windows'
+    subdir_done()
+endif
+
+sources = files(
+        'evt_main.c',
+        'evt_options.c',
+        'evt_test.c',
+        'parser.c',
+        'test_order_atq.c',
+        'test_order_common.c',
+        'test_order_queue.c',
+        'test_perf_atq.c',
+        'test_perf_common.c',
+        'test_perf_queue.c',
+        'test_pipeline_atq.c',
+        'test_pipeline_common.c',
+        'test_pipeline_queue.c',
+)
 deps += 'eventdev'