-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
meson.options
65 lines (55 loc) · 1.09 KB
/
meson.options
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
option('frida_tools',
type: 'feature',
value: 'auto',
description: 'Build CLI tools, like frida, frida-trace, etc.',
)
option('graft_tool',
type: 'feature',
value: 'auto',
description: 'Build gum-graft tool',
)
option('gadget',
type: 'feature',
value: 'auto',
description: 'Build frida-gadget',
)
option('server',
type: 'feature',
value: 'auto',
description: 'Build frida-server',
)
option('portal',
type: 'feature',
value: 'disabled',
description: 'Build frida-portal',
)
option('inject',
type: 'feature',
value: 'auto',
description: 'Build frida-inject',
)
option('frida_clr',
type: 'feature',
value: 'disabled',
description: 'Build .NET bindings',
)
option('frida_node',
type: 'feature',
value: 'disabled',
description: 'Build Node.js bindings',
)
option('frida_python',
type: 'feature',
value: 'auto',
description: 'Build Python bindings',
)
option('frida_swift',
type: 'feature',
value: 'disabled',
description: 'Build Swift bindings',
)
option('frida_qml',
type: 'feature',
value: 'disabled',
description: 'Build QML bindings',
)