b9a842674b
When building on FreeBSD, the compiler emitted an error due to being
unable to find rte_pci.h. This was due to missing dependencies for the
application.
Fixes: 474572d2ae
("app/pipeline: move from test directory")
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
15 lines
275 B
Meson
15 lines
275 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2019 Intel Corporation
|
|
|
|
sources = files(
|
|
'config.c',
|
|
'init.c',
|
|
'main.c',
|
|
'pipeline_acl.c',
|
|
'pipeline_hash.c',
|
|
'pipeline_lpm.c',
|
|
'pipeline_lpm_ipv6.c',
|
|
'pipeline_stub.c',
|
|
'runtime.c')
|
|
deps += ['pipeline', 'pci']
|