dpdk/app/test-eventdev/meson.build
<<
>>
Prefs
   1# SPDX-License-Identifier: BSD-3-Clause
   2# Copyright(c) 2017 Cavium, Inc
   3
   4if is_windows
   5        build = false
   6        reason = 'not supported on Windows'
   7        subdir_done()
   8endif
   9
  10sources = files(
  11        'evt_main.c',
  12        'evt_options.c',
  13        'evt_test.c',
  14        'parser.c',
  15        'test_order_atq.c',
  16        'test_order_common.c',
  17        'test_order_queue.c',
  18        'test_perf_atq.c',
  19        'test_perf_common.c',
  20        'test_perf_queue.c',
  21        'test_pipeline_atq.c',
  22        'test_pipeline_common.c',
  23        'test_pipeline_queue.c',
  24)
  25deps += 'eventdev'
  26