-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathmeson.build.thermal_conductivity
More file actions
59 lines (46 loc) · 1.86 KB
/
meson.build.thermal_conductivity
File metadata and controls
59 lines (46 loc) · 1.86 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
project('thermal_conductivity',
['c', 'fortran'],
version : '0.1',
meson_version: '>= 1.1.0',
default_options : [
'warning_level=1',
'buildtype=release'
])
fc = meson.get_compiler('fortran')
py = import('python').find_installation(pure: false)
py_dep = py.dependency()
incdir_numpy = run_command(py,
['-c', 'import os; os.chdir(".."); import numpy; print(numpy.get_include())'],
check : true
).stdout().strip()
incdir_f2py = run_command(py,
['-c', 'import os; os.chdir(".."); import numpy.f2py; print(numpy.f2py.get_include())'],
check : true
).stdout().strip()
inc_np = include_directories(incdir_numpy)
np_dep = declare_dependency(include_directories: inc_np)
incdir_f2py = incdir_numpy / '..' / '..' / 'f2py' / 'src'
inc_f2py = include_directories(incdir_f2py)
fortranobject_c = incdir_f2py / 'fortranobject.c'
inc_np = include_directories(incdir_numpy, incdir_f2py)
# gh-25000
quadmath_dep = fc.find_library('quadmath', required: false)
py.extension_module('thermal_conductivity',
[
'get_lf.f90',
'get_scattering_q_grid.f90',
'third_order_centering.f90',
'third_order_cond.f90',
'thermal_conductivitymodule.c',
'thermal_conductivity-f2pywrappers2.f90',
fortranobject_c
],
include_directories: [
inc_np,
],
dependencies : [
py_dep,
quadmath_dep,
dependency('mpi')
],
install : true)