numam-dpdk/drivers/mempool/dpaa2/meson.build
Hemant Agrawal a95e588c07 mempool/dpaa2: install missing header with meson
rte_dpaa2_mempool.h header was missed to be added in meson.build
for header installation.

Fixes: 7ed3599095 ("mempool/dpaa2: add functions for CMDIF")
Cc: stable@dpdk.org

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
2020-05-19 15:49:53 +02:00

13 lines
236 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 NXP
if not is_linux
build = false
reason = 'only supported on linux'
endif
deps += ['bus_fslmc']
sources = files('dpaa2_hw_mempool.c')
install_headers('rte_dpaa2_mempool.h')