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
|
project('monitors.lv2', 'c', default_options : [
'buildtype=release',
'warning_level=1',
'werror=false',
'b_lto=true',
'c_std=c11'])
add_project_arguments('-D_GNU_SOURCE', language : 'c')
conf_data = configuration_data()
cc = meson.get_compiler('c')
cp = find_program('cp')
clone = [cp, '@INPUT@', '@OUTPUT@']
m_dep = cc.find_library('m')
lv2_dep = dependency('lv2', version : '>=1.14.0')
inst_dir = join_paths(get_option('libdir'), 'lv2', meson.project_name())
srcs = ['monitors.c',
'monitors_audio_wave.c',
'monitors_midi_pianoroll.c']
c_args = ['-fvisibility=hidden',
'-ffast-math']
mod = shared_module('monitors', srcs,
c_args : c_args,
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)
configure_file(input : 'manifest.ttl.in', output : 'manifest.ttl',
configuration : conf_data,
install : true,
install_dir : inst_dir)
custom_target('monitors_ttl',
input : 'monitors.ttl',
output : 'monitors.ttl',
command : clone,
install : true,
install_dir : inst_dir)
|