forked from Exiv2/exiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
51 lines (40 loc) · 1.09 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
option('curl', type : 'feature',
description : 'USE Libcurl for HttpIo (WEBREADY)',
)
option('brotli', type : 'feature',
description : 'Build with brotli support (requires libbrotlidec)',
)
option('nls', type : 'feature',
description : 'Build native language support (requires gettext)',
)
option('png', type : 'feature',
description : 'Build with png support (requires libz)',
)
option('iconv', type : 'feature',
description : 'Build with iconv support',
)
option('inih', type : 'feature',
description : 'Build with INIReader support',
)
option('bmff', type : 'boolean',
value: true,
description : 'Build with BMFF support',
)
option('lensdata', type : 'boolean',
value: true,
description : 'Build including lens data',
)
option('video', type : 'boolean',
value: true,
description : 'Build support for video formats',
)
option('xmp', type : 'feature',
description : 'Build support for XMP',
)
option('unitTests', type : 'feature',
description : 'Build and run unit tests',
)
option('webready', type : 'boolean',
value: true,
description : 'Build with support for webready',
)