f88b0b8922
The rule for indentation in Meson in DPDK is 4 spaces. Any tab should be flagged as an issue, let's extend the check and fix existing offenders. Fixes: 4ad4b20a7905 ("drivers: change indentation in build files") Fixes: 2457705e6474 ("crypto/cnxk: add driver skeleton") Fixes: 634b73104482 ("app/testpmd: build on Windows") Fixes: 3a6bfc37eaf4 ("net/ice: support QoS config VF bandwidth in DCF") Fixes: 8ef09fdc506b ("build: add optional NUMA and CPU counts detection") Fixes: e1369718f553 ("common/octeontx: enable build only on 64-bit Linux") Fixes: 2b504721bfda ("app/bbdev: enable la12xx") Fixes: 6cc51b1293ce ("mem: instrument allocator for ASan") Fixes: c75542ae4200 ("crypto/ipsec_mb: introduce IPsec_mb framework") Fixes: 918fd2f1466b ("crypto/ipsec_mb: move aesni_mb PMD") Fixes: 746825e5c0ea ("crypto/ipsec_mb: move aesni_gcm PMD") Fixes: bc9ef81c42b4 ("crypto/ipsec_mb: move kasumi PMD") Fixes: 4f1cfda59ad3 ("crypto/ipsec_mb: move snow3g PMD") Fixes: cde8df1bda9d ("crypto/ipsec_mb: move zuc PMD") Fixes: f16662885472 ("crypto/ipsec_mb: add chacha_poly PMD") Signed-off-by: David Marchand <david.marchand@redhat.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Stephen Hemminger <stephen@networkplumber.org>
26 lines
570 B
Meson
26 lines
570 B
Meson
# 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_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'
|