forked from artemsen/swayimg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
63 lines (60 loc) · 1.58 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
# format support
option('gif',
type: 'feature',
value: 'auto',
description: 'Enable GIF format support')
option('heif',
type: 'feature',
value: 'auto',
description: 'Enable HEIF and AVIF format support')
option('jpeg',
type: 'feature',
value: 'auto',
description: 'Enable JPEG format support')
option('jxl',
type: 'feature',
value: 'auto',
description: 'Enable JPEG XL format support')
option('png',
type: 'feature',
value: 'auto',
description: 'Enable PNG format support')
option('svg',
type: 'feature',
value: 'auto',
description: 'Enable SVG format support')
option('tiff',
type: 'feature',
value: 'auto',
description: 'Enable TIFF format support')
option('webp',
type: 'feature',
value: 'auto',
description: 'Enable WebP format support')
# EXIF support
option('exif',
type: 'feature',
value: 'auto',
description: 'Enable EXIF reader support')
# extra files to install
option('bash',
type: 'feature',
value: 'auto',
description: 'Install bash completion')
option('zsh',
type: 'feature',
value: 'auto',
description: 'Install zsh completion')
option('man',
type: 'boolean',
value: true,
description: 'Install man page')
option('desktop',
type: 'boolean',
value: true,
description: 'Install desktop file with icon')
# project version
option('version',
type : 'string',
value : '0.0.0',
description : 'project version')