-
Notifications
You must be signed in to change notification settings - Fork 1
/
meson_options.txt
159 lines (132 loc) · 4.14 KB
/
meson_options.txt
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# Copyright (C) 2020-2021 Alexandros Theodotou <alex at zrythm dot org>
#
# This file is part of Zrythm
#
# Zrythm is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Zrythm is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Zrythm. If not, see <https://www.gnu.org/licenses/>.
option (
'meson-path', type: 'string',
value: 'meson',
description: 'Full path to meson or meson.py')
option (
'zrythm-git-ver', type: 'string',
value: 'v1',
description: 'Git tag/commit')
option (
'zrythm-pkg-ver', type: 'string',
value: '1',
description: 'Version to use in package filenames')
option (
'zrythm-pkg-semver', type: 'string',
value: '1',
description: 'Version to use for Zrythm program')
option (
'build-trial', type: 'boolean',
value: false,
description: 'Whether to build trial packages')
option (
'zplugins-ver', type: 'string',
value: '0.2.6',
description: 'Zplugins version')
option (
'carla-git-ver', type: 'string',
value: 'd47cd56d563ca1197ef122fd45fbadea478d7b2b',
description: 'Carla version')
option (
'lsp-dsp-lib-ver', type: 'string',
value: '0.5.14',
description: 'LSP DSP lib version')
option (
'rcedit-ver', type: 'string',
value: '1.1.1',
description: 'RCEdit version')
option (
'carla-bottle-ver', type: 'string',
value: '0.1.9',
description: 'Carla bottle version')
option (
'locales', type: 'array',
choices : [
'en', 'es', 'de', 'fr', 'it', 'ja', 'pt',
'ru',
],
description: 'Locales for the manual')
option (
'distro', type: 'combo',
choices: ['archlinux', 'debian11', 'debian12', 'fedora36', 'windows-msys', 'flatpak', 'gnu-linux', 'osx', 'osx-brew-zip', 'appimage', 'ubuntu2004', 'ubuntu2204', 'user-manual-pdfs' ],
value: 'archlinux',
description: 'Distro to build')
option (
'lv2-ver', type: 'string',
value: '1.18.0',
description: 'LV2 version')
option (
'serd-ver', type: 'string',
value: '0.30.4',
description: 'Serd version')
option (
'sord-ver', type: 'string',
value: '0.16.4',
description: 'Sord version')
option (
'sratom-ver', type: 'string',
value: '0.6.4',
description: 'Sratom version')
option (
'lilv-ver', type: 'string',
value: '0.24.8',
description: 'Lilv version')
option (
'jack-ver', type: 'string',
value: '1.9.14.r1',
description: 'JACK version')
option (
'gtk-ver', type: 'string',
# 4.16.2
value: '3f4a414b1dd58cc627bd0bc07365959677fb2ea1',
description: 'GTK git version')
option (
'libadwaita-ver', type: 'string',
# 1.6.0
value: '42b47f0438fc2b24910c58e00bd2bd970b499379',
description: 'libadwaita git version')
option (
'libpanel-ver', type: 'string',
value: '1.6.0-1-for-zrythm',
description: 'libpanel git version')
option (
'breeze-icons-ver', type: 'string',
value: '5.108.0',
description: 'Breeze icons version to download')
option (
'breeze-dark-path', type: 'string',
value: '/Users/alex/.local/share/icons/breeze-dark',
description: 'Breeze dark icons path')
option (
'packages-dir', type: 'string',
value: '/tmp/packages',
description: 'Dir holding each package (for GNU/Linux zip)')
option (
'gnu-linux-deps-prefix', type: 'string',
value: '/home/alex/local-zrythm-deps',
description: 'Build all dependencies if a FINISHED file does not exist in this dir')
option (
'osx-deps-prefix', type: 'string',
value: '/Users/alex/local-zrythm-deps',
description: 'Build all dependencies if a FINISHED file does not exist in this dir')
option (
'march_mtune', type: 'string',
#value: '-march=x86-64-v2 -mtune=haswell', # not supported by old gcc
# use pentium4 because some users don't have CPUs with SSE3 support
value: '-march=x86-64 -mtune=intel',
description: '-march and -mtune flags to pass to the compiler')