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>
27 lines
566 B
Meson
27 lines
566 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2020 Broadcom
|
|
# All rights reserved.
|
|
#
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
deps += ['eal', 'bus_vdev']
|
|
sources = files(
|
|
'bcmfs_logs.c',
|
|
'bcmfs_device.c',
|
|
'bcmfs_vfio.c',
|
|
'bcmfs_qp.c',
|
|
'hw/bcmfs4_rm.c',
|
|
'hw/bcmfs5_rm.c',
|
|
'hw/bcmfs_rm_common.c',
|
|
'bcmfs_sym_pmd.c',
|
|
'bcmfs_sym_capabilities.c',
|
|
'bcmfs_sym_session.c',
|
|
'bcmfs_sym.c',
|
|
'bcmfs_sym_engine.c',
|
|
)
|