We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b3ec18 commit 073f7daCopy full SHA for 073f7da
1 file changed
meson.build
@@ -140,15 +140,16 @@ if pyprojectwheelbuild_enabled
140
# install: true,
141
# subdir: python_project_name,
142
# )
143
+ f2py_fortranobject_c = files(incdir_f2py / 'fortranobject.c')
144
+
145
py.extension_module(
146
extension_module_name,
- [srcs + srcs_ancillary_lib, python_fortran_interface],
147
+ [srcs + srcs_ancillary_lib, python_fortran_interface, f2py_fortranobject_c],
148
include_directories: [inc_np, incdir_f2py],
- dependencies : [], # no ancillary_dep
149
+ dependencies : [], # still no ancillary_dep needed
150
install: true,
151
subdir: python_project_name,
-)
-
152
+ )
153
154
# If some files (such as .py files) need to be copied to site-packages,
155
# this is where that operation happens.
0 commit comments