-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathmeson_options.txt
More file actions
27 lines (25 loc) · 865 Bytes
/
meson_options.txt
File metadata and controls
27 lines (25 loc) · 865 Bytes
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
option('include-firewall-mod',
type: 'boolean',
value: true,
description: 'Include the script/functionality that allows Warpinator to open firewall ports using ufw.'
)
option('flatpak-build',
type: 'boolean',
value: false,
description: 'Adds a flag in config.py to allow certain necessary behavioral modifications when run as a flatpak'
)
option('bundle-zeroconf',
type: 'boolean',
value: true,
description: 'python-zeroconf is actively developed, with api changes/breaks occasionally - it is safer to bundle a static version where permitted.'
)
option('bundle-landlock',
type: 'boolean',
value: true,
description: 'Include the landlock python module (https://github.com/Edward-Knight/landlock).'
)
option('bundle-grpc',
type: 'boolean',
value: true,
description: 'Build and bundle grpc and protobuf'
)