-
Notifications
You must be signed in to change notification settings - Fork 3
/
meson_options.txt
31 lines (23 loc) · 1.02 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
option('build-examples', type: 'boolean', value: true)
option('enable-tests', type: 'boolean', value: false)
option('openmp', type: 'boolean', value: true, description: 'enable openMP support')
########### external dependendencies:
# one option with `library_name`, type boolean
# one option with `library_name-dir`, type string
# mkl
option('mkl', type: 'boolean', value: true)
option('mkl-dir', type: 'string', value: '')
# itensor
option('itensor', type: 'boolean', value: true)
option('itensor-dir', type: 'string', value: '')
# arpack
option('arpack', type: 'boolean', value: false)
option('arpack-dir', type: 'string', value: '')
####### end of external dependencies
# rsvd (bundled)
option('rsvd', type: 'boolean', value: false)
option('lbfgs', type: 'boolean', value: true)
# used to pass additional arguments when running tidy
# target e.g. '-fix-errors' to apply fixes proposed
# by the linter
option('tidy_args', type: 'string', value: '', description:'additional arguments passed to clang-tidy through the target tidy')