aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/common/mvep/meson.build
blob: 8ccfacb3f8c97a628c4d285deb74dc2c15b650d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Marvell International Ltd.
# Copyright(c) 2018 Semihalf.
# All rights reserved.
#
path = get_option('lib_musdk_dir')
lib_dir = path + '/lib'
inc_dir = path + '/include'

lib = cc.find_library('libmusdk', dirs: [lib_dir], required: false)
if not lib.found()
	build = false
else
	ext_deps += lib
	includes += include_directories(inc_dir)
	cflags += ['-DMVCONF_TYPES_PUBLIC', '-DMVCONF_DMA_PHYS_ADDR_T_PUBLIC']
endif

sources = files('mvep_common.c')