Add Cavium octeontx and thunder nicvf to meson build infrastructure. Signed-off-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
16 lines
281 B
Meson
16 lines
281 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Cavium, Inc
|
|
|
|
sources = [
|
|
'nicvf_hw.c',
|
|
'nicvf_mbox.c',
|
|
'nicvf_bsvf.c'
|
|
]
|
|
|
|
base_lib = static_library('nicvf_base', sources,
|
|
c_args: cflags,
|
|
dependencies: static_rte_ethdev
|
|
)
|
|
|
|
base_objs = base_lib.extract_all_objects()
|