2018-08-24 20:29:58 +02:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Marvell International Ltd.
|
|
|
|
# Copyright(c) 2018 Semihalf.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
2021-04-01 18:26:19 -07:00
|
|
|
if is_windows
|
2021-04-20 11:22:25 +01:00
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
2021-04-01 18:26:19 -07:00
|
|
|
endif
|
|
|
|
|
2021-01-18 14:29:57 +00:00
|
|
|
dep = dependency('libmusdk', required: false, method: 'pkg-config')
|
2020-12-16 23:36:52 +02:00
|
|
|
if not dep.found()
|
2021-04-20 11:22:25 +01:00
|
|
|
build = false
|
|
|
|
reason = 'missing dependency, "libmusdk"'
|
|
|
|
subdir_done()
|
2018-08-24 20:29:58 +02:00
|
|
|
endif
|
|
|
|
|
2020-12-16 23:36:52 +02:00
|
|
|
ext_deps += dep
|
|
|
|
|
2018-08-24 20:29:58 +02:00
|
|
|
sources = files('mvep_common.c')
|