f-stack/dpdk/drivers/crypto/virtio/meson.build

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',
)