1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright 2021 NXP
3
4if not is_linux
5 build = false
6 reason = 'only supported on linux'
7endif
8
9deps += ['dmadev', 'bus_dpaa']
10sources = files('dpaa_qdma.c')
11
12if cc.has_argument('-Wno-pointer-arith')
13 cflags += '-Wno-pointer-arith'
14endif
15