adf93ca564
Define variables for "is_linux", "is_freebsd" and "is_windows" to make the code shorter for comparisons and more readable. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Reviewed-by: David Marchand <david.marchand@redhat.com> Acked-by: Luca Boccassi <bluca@debian.org>
15 lines
242 B
Meson
15 lines
242 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2018 NXP
|
|
|
|
if not is_linux
|
|
build = false
|
|
endif
|
|
deps += ['mempool_dpaa']
|
|
|
|
sources = files('dpaa_ethdev.c',
|
|
'dpaa_rxtx.c')
|
|
|
|
allow_experimental_apis = true
|
|
|
|
install_headers('rte_pmd_dpaa.h')
|