forked from lock042/siril
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
97 lines (82 loc) · 1.65 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
# Build properties
option('relocatable-bundle',
type: 'combo',
value: 'platform-default',
description: 'build with resources considered bundled under the same prefix',
choices: [ 'yes', 'no', 'platform-default' ]
)
option('openmp',
type : 'boolean',
value : true,
description: 'build with OpenMP support'
)
option('exiv2',
type : 'boolean',
value : true,
description: 'build with exiv2 support'
)
option('libgit2',
type : 'boolean',
value : true,
description: 'build with libgit2 git integration'
)
option('libraw',
type : 'boolean',
value : true,
description: 'build with LibRaw support'
)
option('libtiff',
type : 'boolean',
value : true,
description: 'build with TIFF support'
)
option('libjpeg',
type : 'boolean',
value : true,
description: 'build with JPEG support'
)
option('libjxl',
type : 'boolean',
value : true,
description: 'build with JPEG XL support'
)
option('libpng',
type : 'boolean',
value : true,
description: 'build with PNG support'
)
option('libheif',
type : 'boolean',
value : true,
description: 'build with HEIF support'
)
option('libXISF',
type : 'boolean',
value : true,
description: 'build with XISF support'
)
option('ffms2',
type : 'boolean',
value : true,
description: 'build with FFMS2 support'
)
option('ffmpeg',
type : 'boolean',
value : true,
description: 'build with FFmpeg support'
)
option('libcurl',
type: 'boolean',
value: true,
description: 'Use libcurl for web access',
)
option('criterion',
type : 'boolean',
value : false,
description: 'build with criterion support'
)
option('flatpak-id',
type : 'string',
value : '',
description : 'set by flatpak-builder if building a flatpak'
)