forked from WISDEM/CCBlade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
41 lines (35 loc) · 1.22 KB
/
meson.build
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
# Much of this is from SciPy
project(
'ccblade',
'c',
# unnecessary metadata commented out until Meson supports PEP517 and installation with pip
license: 'Apache',
meson_version: '>= 0.60',
default_options: [
'buildtype=debugoptimized',
],
)
cc = meson.get_compiler('c')
add_languages('fortran', native: false)
fc = meson.get_compiler('fortran')
is_windows = host_machine.system() == 'windows'
# We need -lm for all C code (assuming it uses math functions, which is safe to
# assume for SciPy). For C++ it isn't needed, because libstdc++/libc++ is
# guaranteed to depend on it. For Fortran code, Meson already adds `-lm`.
m_dep = cc.find_library('m', required : false)
if m_dep.found()
add_project_link_arguments('-lm', language : 'c')
endif
# https://mesonbuild.com/Python-module.html
# Here we differentiate from the python used by meson, py3_command, and that python target, py3_target. This is useful
# when cross compiling like on conda-forge
py_mod = import('python')
if get_option('python_target') != ''
py3 = py_mod.find_installation(get_option('python_target'))
else
py3 = py_mod.find_installation('python')
endif
py3_dep = py3.dependency()
message(py3.path())
message(py3.get_install_dir())
subdir('ccblade')