forked from frida/frida-core
-
Notifications
You must be signed in to change notification settings - Fork 3
/
meson_options.txt
66 lines (56 loc) · 1.45 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
option('assets',
type: 'combo',
choices: ['embedded', 'installed'],
value: 'embedded',
description: 'Whether assets such as frida-agent should be embedded vs installed and loaded at runtime'
)
option('asset_path_template',
type: 'string',
value: '',
description: 'Override the default installed asset path template'
)
option('helper_modern',
type: 'string',
value: '',
description: 'Prebuilt frida-helper to embed for use on modern systems'
)
option('helper_legacy',
type: 'string',
value: '',
description: 'Prebuilt frida-helper to embed for use on legacy systems'
)
option('agent_modern',
type: 'string',
value: '',
description: 'Prebuilt agent to embed for use on modern targets'
)
option('agent_legacy',
type: 'string',
value: '',
description: 'Prebuilt agent to embed for use on legacy targets'
)
option('agent_emulated_modern',
type: 'string',
value: '',
description: 'Prebuilt agent to embed for use on modern emulated targets'
)
option('agent_emulated_legacy',
type: 'string',
value: '',
description: 'Prebuilt agent to embed for use on legacy emulated targets'
)
option('connectivity',
type: 'feature',
value: 'auto',
description: 'Internet connectivity features (TLS and ICE support)'
)
option('mapper',
type: 'feature',
value: 'auto',
description: 'Use our own out-of-process dynamic linker for injection on i/macOS'
)
option('tests',
type: 'boolean',
value: true,
description: 'Build tests'
)