-
Notifications
You must be signed in to change notification settings - Fork 26
/
meson_options.txt
80 lines (65 loc) · 2.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
option('modules',
type : 'boolean',
value : true,
description : 'option to install Fortran modules')
option('gpu',
type : 'boolean',
value : true,
description : 'option to compile SPRAL with GPU support')
option('examples',
type : 'boolean',
value : false,
description : 'whether to generate the examples')
option('tests',
type : 'boolean',
value : false,
description : 'whether to generate the tests')
option('libblas',
type : 'string',
value : 'blas',
description : 'BLAS library against which to link')
option('liblapack',
type : 'string',
value : 'lapack',
description : 'LAPACK library against which to link')
option('libhwloc',
type : 'string',
value : 'hwloc',
description : 'HWLOC library against which to link')
option('libmetis',
type : 'string',
value : 'metis',
description : 'METIS library against which to link')
option('libblas_path',
type : 'array',
value : [],
description : 'Additional directories to search for the BLAS library')
option('libblas_include',
type : 'string',
value : '',
description : 'Additional directory to search for the BLAS header files')
option('liblapack_path',
type : 'array',
value : [],
description : 'Additional directories to search for the LAPACK library')
option('libhwloc_path',
type : 'array',
value : [],
description : 'Additional directory to search for the HWLOC library')
option('libhwloc_include',
type : 'string',
value : '',
description : 'Additional directory to search for the HWLOC header files')
option('libmetis_path',
type : 'array',
value : [],
description : 'Additional directories to search for the METIS library')
option('metis64',
type : 'boolean',
value : false,
description : 'option to use METIS compiled with 64bit integer support')
option('libmetis_version',
type : 'combo',
choices : ['4', '5'],
value : '5',
description : 'Version of the METIS library to use')