forked from meduketto/iksemel
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeson_options.txt
60 lines (50 loc) · 1.31 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
option('version',
type : 'string',
value : '1.6',
description : 'Project version'
)
option('package_name',
type : 'string',
value : '1.6',
description : 'Project Name'
)
option('package_url',
type : 'string',
value : 'https://github.com/Zaryob/iksemel',
description : 'Project Url'
)
option('package_bugreport_url',
type : 'string',
value : 'https://github.com/Zaryob/iksemel/issues',
description : 'Project Url'
)
option('with_tools',
type : 'boolean',
value : false,
description : 'build with iksemel toolkit'
)
# TLS of jabber is soo old. Due to the fact that disabled for a short term.
option('gnutls',
type: 'feature',
value: 'disabled',
description: 'support for GnuTLS networking configration'
)
option('openssl',
type: 'feature',
value: 'disabled',
description: 'support for OpenSSL networking configration'
)
option('with_python',
type : 'boolean',
value : false,
description : 'build with python binding libraries'
)
option('python',
type : 'string',
value : 'python3'
)
option('tests',
type : 'boolean',
value : true,
description : 'Control iksemel with UnitTests'
)