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 'mvneta_ethdev.c', 23 'mvneta_rxtx.c', 24) 25 26deps += ['cfgfile', 'common_mvep'] 27