-
Notifications
You must be signed in to change notification settings - Fork 82
/
meson_options.txt
25 lines (25 loc) · 1017 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
option('gtk_doc', type: 'boolean',
value: false,
description: 'Enable generating the API reference (depends on GTK-Doc)')
option('gobject_types', type: 'boolean',
value: true,
description: 'Enable GObject types (depends on GObject)')
option('introspection', type: 'feature',
value: 'auto',
yield: true,
description: 'Enable GObject Introspection (depends on GObject)')
option('gcc_vector', type: 'boolean',
value: true,
description: 'Enable compiler vector intrinsics (requires GCC or Clang)')
option('sse2', type: 'boolean',
value: true,
description: 'Enable SSE2 fast paths (requires SSE2 or later)')
option('arm_neon', type: 'boolean',
value: true,
description: 'Enable ARM NEON fast paths (requires ARM)')
option('tests', type: 'boolean',
value: true,
description: 'Build the test suite (requires GObject)')
option('installed_tests', type: 'boolean',
value: true,
description: 'Install tests')