f-stack/dpdk/drivers/net/memif/meson.build

15 lines
275 B
Meson
Raw Normal View History

2020-06-18 16:55:50 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018-2019 Cisco Systems, Inc. All rights reserved.
if not is_linux
2022-09-06 04:00:10 +00:00
build = false
reason = 'only supported on Linux'
2020-06-18 16:55:50 +00:00
endif
2022-09-06 04:00:10 +00:00
sources = files(
'memif_socket.c',
'rte_eth_memif.c',
)
2020-06-18 16:55:50 +00:00
deps += ['hash']