fa036e70d7
Since most apps are built in largely the same way, generalize the logic into a foreach loop in app/meson.build file. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Harry van Haaren <harry.van.haaren@intel.com>
38 lines
791 B
Meson
38 lines
791 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
# override default name to drop the hyphen
|
|
name = 'testpmd'
|
|
allow_experimental_apis = true
|
|
sources = files('cmdline.c',
|
|
'cmdline_flow.c',
|
|
'cmdline_mtr.c',
|
|
'cmdline_tm.c',
|
|
'config.c',
|
|
'csumonly.c',
|
|
'flowgen.c',
|
|
'icmpecho.c',
|
|
'ieee1588fwd.c',
|
|
'iofwd.c',
|
|
'macfwd.c',
|
|
'macswap.c',
|
|
'parameters.c',
|
|
'rxonly.c',
|
|
'testpmd.c',
|
|
'txonly.c')
|
|
|
|
deps = ['ethdev', 'gro', 'gso', 'cmdline', 'metrics', 'meter', 'bus_pci']
|
|
if dpdk_conf.has('RTE_LIBRTE_PDUMP')
|
|
deps += 'pdump'
|
|
endif
|
|
if dpdk_conf.has('RTE_LIBRTE_I40E_PMD')
|
|
deps += 'pmd_i40e'
|
|
endif
|
|
if dpdk_conf.has('RTE_LIBRTE_IXGBE_PMD')
|
|
deps += 'pmd_ixgbe'
|
|
endif
|
|
if dpdk_conf.has('RTE_LIBRTE_SOFTNIC_PMD')
|
|
sources += files('tm.c')
|
|
deps += 'pmd_softnic'
|
|
endif
|