1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2018 Marvell International Ltd. 3# Copyright(c) 2018 Semihalf. 4# All rights reserved. 5 6if is_windows 7 build = false 8 reason = 'not supported on Windows' 9 subdir_done() 10endif 11 12dep = dependency('libmusdk', required: false, method: 'pkg-config') 13if not dep.found() 14 build = false 15 reason = 'missing dependency, "libmusdk"' 16 subdir_done() 17endif 18 19ext_deps += dep 20 21sources = files( 22 'mrvl_ethdev.c', 23 'mrvl_flow.c', 24 'mrvl_qos.c', 25 'mrvl_mtr.c', 26 'mrvl_tm.c', 27) 28 29deps += ['cfgfile', 'common_mvep'] 30