1
0
Fork 0
mirror of https://github.com/fastogt/pyfastogt synced 2025-03-09 23:38:55 +00:00

More arch

This commit is contained in:
topilski 2017-10-18 16:46:58 +03:00
parent 0dd68afd38
commit e7b4aca6a3

View file

@ -140,8 +140,9 @@ class WindowsMingwPlatform(Platform):
class WindowsPlatforms(SupportedPlatforms):
def __init__(self):
SupportedPlatforms.__init__(self, 'windows', [Architecture('x86_64', 64, '/mingw64'),
Architecture('i386', 32, '/mingw32')], ['NSIS', 'ZIP'])
SupportedPlatforms.__init__(self, 'windows',
[Architecture('x86_64', 64, '/mingw64'), Architecture('AMD64', 64, '/mingw64'),
Architecture('i386', 32, '/mingw32')], ['NSIS', 'ZIP'])
def make_platform_by_arch(self, arch, package_types) -> Platform:
return WindowsMingwPlatform(arch, package_types)