meson: Fix exported functions for python plugin

This fixes loading python plugin in Windows by exporting functions using
python.def file. Otherwise, hexchat_plugin_init symbol error is shown.
This commit is contained in:
Biswapriyo Nath 2022-01-11 21:51:52 +05:30 committed by Patrick
parent d936b653ac
commit 9c7109b578
1 changed files with 1 additions and 0 deletions

View File

@ -28,4 +28,5 @@ shared_module('python', python3_source,
install: true,
install_dir: plugindir,
name_prefix: '',
vs_module_defs: 'python.def'
)