forked from sagemath/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.options
More file actions
84 lines (73 loc) · 1.46 KB
/
meson.options
File metadata and controls
84 lines (73 loc) · 1.46 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
## Options for the Meson build system
# https://mesonbuild.com/Build-options.html
option(
'SAGE_LOCAL',
type: 'string',
value: '',
description: 'Path to SAGE_LOCAL directory (only used for compatibility with the old Sage-the-Distro',
)
#
# Boolean options
#
option(
'build-docs',
type: 'boolean',
description: 'Build the HTML / PDF documentation'
)
#
# Features
#
option(
'bliss',
type: 'feature',
value: 'auto',
description: 'Bliss interface to graph isomorphisms'
)
option(
'brial',
type: 'feature',
value: 'auto',
description: 'BRiAl interface to polynomials over boolean rings'
)
option(
'coxeter3',
type: 'feature',
value: 'auto',
description: 'Coxeter 3.x interface to Coxeter groups'
)
option(
'eclib',
type: 'feature',
value: 'auto',
description: 'eclib interface to mwrank and elliptic curves over Q'
)
option(
'mcqd',
type: 'feature',
value: 'auto',
description: 'MCQD interface to the MaxCliqueDyn algorithm'
)
option(
'meataxe',
type: 'feature',
value: 'auto',
description: 'MeatAxe interface to matrix representations over finite fields'
)
option(
'rankwidth',
type: 'feature',
value: 'auto',
description: 'Interface to librw for rank-width decompositions'
)
option(
'sirocco',
type: 'feature',
value: 'auto',
description: 'Sirocco interface to certified root continuation'
)
option(
'tdlib',
type: 'feature',
value: 'auto',
description: 'Interface to tdlib for tree decompositions'
)