1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2018 Intel Corporation 3 4if is_windows 5 build = false 6 reason = 'not supported on Windows' 7 subdir_done() 8endif 9 10sources = files( 11 'main.c', 12 'test_bbdev.c', 13 'test_bbdev_perf.c', 14 'test_bbdev_vector.c', 15) 16deps += ['bbdev', 'bus_vdev'] 17if dpdk_conf.has('RTE_BASEBAND_FPGA_LTE_FEC') 18 deps += ['baseband_fpga_lte_fec'] 19endif 20if dpdk_conf.has('RTE_BASEBAND_FPGA_5GNR_FEC') 21 deps += ['baseband_fpga_5gnr_fec'] 22endif 23if dpdk_conf.has('RTE_BASEBAND_ACC100') 24 deps += ['baseband_acc100'] 25endif 26if dpdk_conf.has('RTE_LIBRTE_PMD_BBDEV_LA12XX') 27 deps += ['baseband_la12xx'] 28endif 29