a8d0d473a0
Use the newer macros defined by meson in all DPDK source code, to ensure there are no errors when the old non-standard macros are removed. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org> Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru> Acked-by: Rosen Xu <rosen.xu@intel.com> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
21 lines
469 B
Meson
21 lines
469 B
Meson
# 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'
|
|
|
|
allow_experimental_apis = true
|
|
if not is_linux
|
|
build = false
|
|
endif
|
|
deps += 'rawdev'
|
|
cflags += ['-D_FILE_OFFSET_BITS=64']
|
|
sources = files(
|
|
'ntb_fwd.c'
|
|
)
|
|
if dpdk_conf.has('RTE_RAW_NTB')
|
|
deps += 'raw_ntb'
|
|
endif
|