-
-
Notifications
You must be signed in to change notification settings - Fork 298
/
meson_options.txt
37 lines (37 loc) · 881 Bytes
/
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
option(
'profile',
type: 'combo',
choices: ['default', 'devel'],
value: 'default',
description: 'The build profile for rnote. One of "default" or "devel".',
)
option(
'ui',
type: 'boolean',
value: true,
description: 'Build the UI',
)
option(
'cli',
type: 'boolean',
value: false,
description: 'Build the CLI',
)
option(
'ci',
type: 'boolean',
value: false,
description: 'Whether the project is being built in a CI pipeline',
)
option(
'win-installer-name',
type: 'string',
value: 'rnote-win-installer',
description: 'Only relevant for builds on Windows: the name of the generated installer after executing the "build-installer" target.',
)
option(
'win-build-environment-path',
type: 'string',
value: 'C:\\msys64\\mingw64',
description: 'Only relevant for builds on Windows: the path of the installed msys/mingw64 environment.',
)