diff options
| author | Bastiaan Olij <mux213@gmail.com> | 2019-06-16 16:38:31 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-16 16:38:31 +1000 |
| commit | cdd50260d0c2bd620f15d16e2e00a4d8c965eb67 (patch) | |
| tree | c3abca9f6613276b0b28ac637934ebfa052dc4cf | |
| parent | 659a19b9a4fa725718982ae6ba4bb8d2f9e16cb0 (diff) | |
| parent | 73c588456c60b1ed33de15974babba59e8792b2f (diff) | |
| download | redot-cpp-cdd50260d0c2bd620f15d16e2e00a4d8c965eb67.tar.gz | |
Merge pull request #295 from silverkorn/master
Add MSYS/MinGW compiling support on Windows
| -rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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( |
