forked from linuxmint/warpinator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
27 lines (25 loc) · 948 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
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-with-py310',
type: 'boolean',
value: false,
description: 'grpc 1.30.2 is broken on Ubuntu 22.04. Setting this to true will bundle 1.46.3 IF python version is 3.10.'
)