5731efea6f
Remove the check and build failure from crypto/meson.build in case building for Windows OS. Add this check/failure in the meson.build file of each crypto PMD that is not enforcing it to allow PMD support for Windows per driver when applicable. Signed-off-by: Tal Shnaiderman <talshn@nvidia.com> Acked-by: Matan Azrad <matan@nvidia.com> Acked-by: Akhil Goyal <gakhil@marvell.com>
20 lines
457 B
Meson
20 lines
457 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2019 Arm Limited
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
dep = dependency('libAArch64crypto', required: false, method: 'pkg-config')
|
|
if not dep.found()
|
|
build = false
|
|
reason = 'missing dependency, "libAArch64crypto"'
|
|
subdir_done()
|
|
endif
|
|
|
|
ext_deps += dep
|
|
deps += ['bus_vdev']
|
|
sources = files('rte_armv8_pmd.c', 'rte_armv8_pmd_ops.c')
|