fix(libplugin): Propegate build_python argument to libplugin

This commit is contained in:
2025-11-28 11:02:33 -05:00
parent ab2ae12281
commit b9f88d75ce

View File

@@ -1,4 +1,8 @@
plugin_p = subproject('libplugin', default_options: ['pkg-config=' + pkg_config_bool_str, 'tests=' + get_option('tests').to_string()])
plugin_p = subproject('libplugin', default_options: [
'pkg-config=' + pkg_config_bool_str,
'tests=' + get_option('tests').to_string(),
'python-wheel=' + get_option('build-python').to_string(),
])
libplugin = plugin_p.get_variable('libplugin')
plugin_dep = plugin_p.get_variable('plugin_dep')