Warn (or error?) on unhandled options passed to meson install
#670
Open
Description
It appears that having:
[tool.meson-python.args]
install = ['--skip-subprojects nanoarrow']
is a no-op. To actually skip the subproject, I have to use:
[tool.meson-python.args]
install = ['--skip-subprojects=nanoarrow']
Is this distinction intentional?