-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmeson.build.sscha
More file actions
73 lines (59 loc) · 2.34 KB
/
meson.build.sscha
File metadata and controls
73 lines (59 loc) · 2.34 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
project('sscha',
['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('sscha',
[
'''module_stochastic.f90''',
'''module_new_thermodynamic.f90''',
'''module_anharmonic.f90''',
'''get_stress_tensor.f90''',
'''get_gradient_supercell.f90''',
'''get_upsilon_matrix.f90''',
'''multiply_lambda_tensor.f90''',
'''cell_force.f90''',
'''get_gradient_supercell_fast.f90''',
'''get_g.f90''',
'''get_emat.f90''',
'''get_v3.f90''',
'''get_odd_straight.f90''',
'''get_cmat.f90''',
'''get_v4.f90''',
'''get_odd_straight_with_v4.f90''',
'''sschamodule.c''',
'''sscha-f2pywrappers2.f90''',
'''sscha-f2pywrappers.f''',
fortranobject_c
],
include_directories: [
inc_np,
],
dependencies : [
py_dep,
quadmath_dep,
dependency('mpi'),
],
install : true)