forked from Samsung/rlottie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
46 lines (35 loc) · 920 Bytes
/
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
option('thread',
type: 'boolean',
value: true,
description: 'Enable threading in rlottie')
option('cache',
type: 'boolean',
value: true,
description: 'Enable cache support in rlottie')
option('module',
type: 'boolean',
value: true,
description: 'Enable module support in rlottie')
option('moduledir',
type: 'string',
description: 'Dynamic plugins directory')
option('log',
type: 'boolean',
value: false,
description: 'Enable logging in rlottie')
option('dumptree',
type: 'boolean',
value: false,
description: 'Enable logging the rlottie tree in rlottie')
option('test',
type: 'boolean',
value: false,
description: 'Enable building unit tests')
option('example',
type: 'boolean',
value: true,
description: 'Enable building examples')
option('cmake',
type: 'boolean',
value: false,
description: 'Enable Generating CMake config files')