build: switch to msvc as default release builder

build: add separate extra dll from msvc with support for windows xp
This commit is contained in:
jeefo 2023-06-27 14:20:23 +03:00
commit 52bfac2b09
No known key found for this signature in database
GPG key ID: 927BCA0779BEA8ED
5 changed files with 36 additions and 16 deletions

View file

@ -137,8 +137,9 @@ class BotRelease(object):
'linux-amd64': 'so',
'linux-x86-gcc': 'so',
'windows-x86-gcc': 'dll',
'windows-x86-clang': 'dll',
'windows-x86-msvc-xp': 'dll',
'windows-amd64': 'dll',
'windows-x86-msvc': 'dll',
'darwin-x86': 'dylib',
}, extra=True))