X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest-crypto-perf%2Fmeson.build;h=7b02b518f0e6d9c203af34ff6d76393fb19c8519;hb=1835a22f342f23ae31e1fd778a997139ae4d2ca9;hp=ef28cb5a03980f996d6d4bfa406a8458553e8291;hpb=acec04c4b2f5c75d244319e1d0ca17ea7d4da72d;p=dpdk.git diff --git a/app/test-crypto-perf/meson.build b/app/test-crypto-perf/meson.build index ef28cb5a03..7b02b518f0 100644 --- a/app/test-crypto-perf/meson.build +++ b/app/test-crypto-perf/meson.build @@ -1,14 +1,25 @@ # 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', 'security'] +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + +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