File: meson.build

package info (click to toggle)
dpdk 25.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 127,892 kB
  • sloc: ansic: 2,358,479; python: 16,426; sh: 4,474; makefile: 1,713; awk: 70
file content (30 lines) | stat: -rw-r--r-- 687 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Cavium, Inc

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_atomic_atq.c',
        'test_atomic_common.c',
        'test_atomic_queue.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'

cflags += no_wvla_cflag