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>
18 lines
381 B
Meson
18 lines
381 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 HUAWEI TECHNOLOGIES CO., LTD.
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
includes += include_directories('../../../lib/vhost')
|
|
deps += 'bus_pci'
|
|
sources = files(
|
|
'virtio_cryptodev.c',
|
|
'virtio_pci.c',
|
|
'virtio_rxtx.c',
|
|
'virtqueue.c',
|
|
)
|