1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
project('timely.lv2', 'c', default_options : [
'buildtype=release',
'warning_level=3',
'werror=false',
'b_lto=false',
'c_std=c11'])
add_project_arguments('-D_GNU_SOURCE', language : 'c')
conf_data = configuration_data()
cc = meson.get_compiler('c')
cp = find_program('cp')
lv2_validate = find_program('lv2_validate', native : true, required : false)
sord_validate = find_program('sord_validate', native : true, required : false)
lv2lint = find_program('lv2lint', required : false)
clone = [cp, '@INPUT@', '@OUTPUT@']
m_dep = cc.find_library('m')
lv2_dep = dependency('lv2', version : '>=1.14.0')
inc_dir = []
inst_dir = join_paths(get_option('libdir'), 'lv2', meson.project_name())
dsp_srcs = [join_paths('test', 'timely.c')]
c_args = ['-fvisibility=hidden',
'-ffast-math']
mod = shared_module('timely', dsp_srcs,
c_args : c_args,
include_directories : inc_dir,
name_prefix : '',
dependencies : [m_dep, lv2_dep],
install : true,
install_dir : inst_dir)
version = run_command('cat', 'VERSION').stdout().strip().split('.')
conf_data.set('MAJOR_VERSION', version[0])
conf_data.set('MINOR_VERSION', version[1])
conf_data.set('MICRO_VERSION', version[2])
suffix = mod.full_path().strip().split('.')[-1]
conf_data.set('MODULE_SUFFIX', '.' + suffix)
manifest_ttl = configure_file(input : join_paths('test', 'manifest.ttl.in'), output : 'manifest.ttl',
configuration : conf_data,
install : true,
install_dir : inst_dir)
dsp_ttl = custom_target('timely_ttl',
input : join_paths('test', 'timely.ttl'),
output : 'timely.ttl',
command : clone,
install : true,
install_dir : inst_dir)
if lv2_validate.found() and sord_validate.found()
test('LV2 validate', lv2_validate,
args : [manifest_ttl, dsp_ttl])
endif
if lv2lint.found()
test('LV2 lint', lv2lint,
args : ['-Ewarn',
'http://open-music-kontrollers.ch/lv2/timely#test'])
endif
|