Merge pull request #295 from silverkorn/master

Add MSYS/MinGW compiling support on Windows
This commit is contained in:
Bastiaan Olij
2019-06-16 16:38:31 +10:00
committed by GitHub

View File

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