forked from dwavesystems/dwave-optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.options
More file actions
20 lines (20 loc) · 690 Bytes
/
meson.options
File metadata and controls
20 lines (20 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
option(
'build-tests',
type: 'feature',
value: 'auto',
description:
'Whether to build the C++ tests.' +
'When set to enabled, the tests are always built.' +
'When set to disabled, the tests are never built.' +
'When set to auto (default), the tests are built when buildtype != release.',
)
option(
'blas',
type: 'feature',
value: 'auto',
description:
'Whether to use BLAS when building.' +
'When set to enabled, the build will fail if BLAS is not available.' +
'When set to disabled, the build will never use BLAS.' +
'When set to auto (default), the build will use BLAS if it is available.'
)