-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathmeson.build
More file actions
74 lines (58 loc) · 851 Bytes
/
meson.build
File metadata and controls
74 lines (58 loc) · 851 Bytes
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
thisdir = 'flint/types'
pyfiles = [
'__init__.py',
]
exts = [
'fmpz',
'fmpz_poly',
'fmpz_mat',
'fmpz_series',
'fmpz_vec',
'fmpq',
'fmpq_poly',
'fmpq_mat',
'fmpq_series',
'fmpq_vec',
'nmod',
'nmod_poly',
'nmod_mpoly',
'nmod_mat',
'nmod_series',
'fmpz_mod',
'fmpz_mod_poly',
'fmpz_mod_mat',
'fq_default',
'fq_default_poly',
'qfb',
'arf',
'arb',
'arb_poly',
'arb_mat',
'arb_series',
'acb',
'acb_poly',
'acb_mat',
'acb_series',
'dirichlet',
'fmpz_mpoly',
'fmpz_mod_mpoly',
'fmpq_mpoly',
'_gr',
]
if have_acb_theta
exts += ['acb_theta']
endif
py.install_sources(
pyfiles,
pure: false,
subdir: thisdir,
)
foreach ext : exts
py.extension_module(
ext,
ext + '.pyx',
dependencies: pyflint_deps,
install: true,
subdir: thisdir,
)
endforeach