Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cdd5026

Browse files
authored
Merge pull request godotengine#295 from silverkorn/master
Add MSYS/MinGW compiling support on Windows
2 parents 659a19b + 73c5884 commit cdd5026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if sys.platform.startswith('linux'):
1616
host_platform = 'linux'
1717
elif sys.platform == 'darwin':
1818
host_platform = 'osx'
19-
elif sys.platform == 'win32':
19+
elif sys.platform == 'win32' or sys.platform == 'msys':
2020
host_platform = 'windows'
2121
else:
2222
raise ValueError(

0 commit comments

Comments
 (0)