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>
25 lines
521 B
Meson
25 lines
521 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
version = 2
|
|
|
|
deps += ['pci']
|
|
install_headers('rte_bus_pci.h')
|
|
sources = files('pci_common.c',
|
|
'pci_common_uio.c',
|
|
'pci_params.c')
|
|
if is_linux
|
|
sources += files('linux/pci.c',
|
|
'linux/pci_uio.c',
|
|
'linux/pci_vfio.c')
|
|
includes += include_directories('linux')
|
|
else
|
|
sources += files('bsd/pci.c')
|
|
includes += include_directories('bsd')
|
|
endif
|
|
|
|
# memseg walk is not part of stable API yet
|
|
allow_experimental_apis = true
|
|
|
|
deps += ['kvargs']
|