You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,9 @@ requires = [
18
18
# otherwise we hit https://github.com/mesonbuild/meson-python/issues/598
19
19
# The subprojects have to set the rpath to the build directory, which should work as long as
20
20
# we don't use build isolation.
21
-
install = ['--skip-subprojects', 'ecl']
21
+
# Also don't install subprojects providing static libraries as per https://mesonbuild.com/meson-python/how-to-guides/shared-libraries.html#static-library-from-subproject
22
+
# This actually covers all current subprojects; so just don't install any of them.
23
+
install = ['--skip-subprojects']
22
24
# Ensure that ``library`` targets are built as static, and nothing gets installed
0 commit comments