a8d0d473a0
Use the newer macros defined by meson in all DPDK source code, to ensure there are no errors when the old non-standard macros are removed. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org> Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru> Acked-by: Rosen Xu <rosen.xu@intel.com> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
18 lines
464 B
Meson
18 lines
464 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
sources = files('cperf_ops.c',
|
|
'cperf_options_parsing.c',
|
|
'cperf_test_common.c',
|
|
'cperf_test_latency.c',
|
|
'cperf_test_pmd_cyclecount.c',
|
|
'cperf_test_throughput.c',
|
|
'cperf_test_vector_parsing.c',
|
|
'cperf_test_vectors.c',
|
|
'cperf_test_verify.c',
|
|
'main.c')
|
|
deps += ['cryptodev', 'net', 'security']
|
|
if dpdk_conf.has('RTE_CRYPTO_SCHEDULER')
|
|
deps += 'crypto_scheduler'
|
|
endif
|