blob: 9c3ba432d07dfcd452f9b29579a7520469feff0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018-2019 Cisco Systems, Inc. All rights reserved.
if not is_linux
build = false
reason = 'only supported on Linux'
endif
sources = files('rte_eth_memif.c',
'memif_socket.c')
deps += ['hash']
|