X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest-eventdev%2Fmeson.build;h=ab8769c7559c8125b200e6be1ca56dad660d1297;hb=39ddd5d1895e72ba2bc974eddbc12a3135639ed1;hp=a81dcd1313ee94ff41a8882797c5f223489c582c;hpb=fa036e70d794f45a4a39fe8256892c45292ecaea;p=dpdk.git diff --git a/app/test-eventdev/meson.build b/app/test-eventdev/meson.build index a81dcd1313..ab8769c755 100644 --- a/app/test-eventdev/meson.build +++ b/app/test-eventdev/meson.build @@ -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'