Browse Source

Merge pull request #295 from silverkorn/master

Add MSYS/MinGW compiling support on Windows
Bastiaan Olij 6 years ago
parent
commit
cdd50260d0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      SConstruct

+ 1 - 1
SConstruct

@@ -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(