aboutsummaryrefslogtreecommitdiffstats
path: root/examples/l2fwd-cat/meson.build
blob: 4e2777a03358d979eb733645d7a4f57e6556b943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 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'

pqos = cc.find_library('pqos', required: false)
build = pqos.found()
ext_deps += pqos
cflags += '-I/usr/local/include' # assume pqos lib installed in /usr/local
sources = files(
	'cat.c', 'l2fwd-cat.c'
)