-
Notifications
You must be signed in to change notification settings - Fork 8
/
meson.build
84 lines (71 loc) · 2.26 KB
/
meson.build
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Project name, programming language and version
project (
'com.github.subhadeepjasu.ensembles',
'c', 'vala',
version: '0.0.17',
)
# Common Display Version
display_version = 'AW-200'
message ('Unit Version: ' + display_version)
# GNOME module
gnome = import ('gnome')
# Translation module
i18n = import ('i18n')
# Project arguments
add_project_arguments (
'-DGETTEXT_PACKAGE="@0@"'.format (meson.project_name ()),
'-DHANDY_USE_UNSTABLE_API',
'-DPIPEWIRE_CORE_DRIVER', # Uncomment to enable pipewire core support provided fluidsynth supports it
language: 'c'
)
add_project_arguments (
['--vapidir', join_paths (meson.current_source_dir (), 'vapi')],
# Set Driver Compatibilities
'-D', 'ALSA_DRIVER',
'-D', 'PULSEAUDIO_DRIVER',
'-D', 'JACK_DRIVER',
'-D', 'PIPEWIRE_CORE_DRIVER', # Uncomment to enable pipewire core support provided fluidsynth supports it
language: 'vala'
)
# Compiling resources
asresources = gnome.compile_resources (
'as-resources',
'data/' + meson.project_name () + '.gresource.xml',
source_dir: 'data',
c_name: 'as'
)
# Listing dependencies
dependencies = [
dependency ('granite'),
dependency ('gtk+-3.0'),
dependency ('glib-2.0'),
dependency ('gobject-2.0'),
dependency ('libsoup-2.4'),
dependency ('json-glib-1.0'),
dependency ('libhandy-1', version: '>=0.83.0'),
dependency ('gstreamer-1.0'),
dependency ('lv2'),
dependency ('lilv-0'),
dependency ('suil-0'),
dependency ('libpipewire-0.3'), # Uncomment to enable pipewire core support provided fluidsynth supports it
meson.get_compiler ('vala').find_library ('posix'),
meson.get_compiler ('c').find_library ('m', required : true),
meson.get_compiler ('c').find_library ('fluidsynth', required : true),
meson.get_compiler ('c').find_library ('portmidi', required : true),
meson.get_compiler ('c').find_library ('X11', required : true),
]
config_h_dir = include_directories('.')
subdir ('src')
# Define executable
executable (
meson.project_name (),
asresources,
ensembles_sources,
config_header,
include_directories: config_h_dir,
dependencies: dependencies,
install : true
)
subdir ('data')
subdir ('po')
meson.add_install_script ('meson/post_install.py')