Merge pull request #295 from silverkorn/master

Add MSYS/MinGW compiling support on Windows
pull/316/head
Bastiaan Olij 2019-06-16 16:38:31 +10:00 committed by GitHub
commit cdd50260d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ if sys.platform.startswith('linux'):
host_platform = 'linux'
elif sys.platform == 'darwin':
host_platform = 'osx'
elif sys.platform == 'win32':
elif sys.platform == 'win32' or sys.platform == 'msys':
host_platform = 'windows'
else:
raise ValueError(