2019-07-02 06:25:21 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2019 Intel Corporation
|
|
|
|
|
|
|
|
# meson file, for building this example as part of a main DPDK build.
|
|
|
|
#
|
|
|
|
# To build this example as a standalone application with an already-installed
|
|
|
|
# DPDK instance, use 'make'
|
|
|
|
|
2020-04-22 19:03:45 +00:00
|
|
|
allow_experimental_apis = true
|
2020-06-29 20:31:19 +00:00
|
|
|
if not is_linux
|
2021-04-20 10:22:22 +00:00
|
|
|
build = false
|
|
|
|
subdir_done()
|
2019-07-02 06:25:21 +00:00
|
|
|
endif
|
2020-11-12 09:41:41 +00:00
|
|
|
|
2021-11-16 20:51:35 +00:00
|
|
|
deps += ['rawdev', 'raw_ntb']
|
2019-07-02 06:25:21 +00:00
|
|
|
cflags += ['-D_FILE_OFFSET_BITS=64']
|
|
|
|
sources = files(
|
2021-04-20 10:22:22 +00:00
|
|
|
'ntb_fwd.c',
|
2019-07-02 06:25:21 +00:00
|
|
|
)
|