diff options
Diffstat (limited to '.appveyor/set_compiler_env.bat')
-rw-r--r-- | .appveyor/set_compiler_env.bat | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/.appveyor/set_compiler_env.bat b/.appveyor/set_compiler_env.bat deleted file mode 100644 index 7e8462e..0000000 --- a/.appveyor/set_compiler_env.bat +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | @echo off | ||
2 | |||
3 | :: Now we declare a scope | ||
4 | Setlocal EnableDelayedExpansion EnableExtensions | ||
5 | |||
6 | if not defined Configuration set Configuration=2015 | ||
7 | |||
8 | if "%Configuration%"=="MinGW" ( goto :mingw ) | ||
9 | |||
10 | set arch=x86 | ||
11 | |||
12 | if "%platform%" EQU "x64" ( set arch=x86_amd64 ) | ||
13 | |||
14 | if "%Configuration%"=="2015" ( | ||
15 | set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" | ||
16 | ) | ||
17 | |||
18 | if "%Configuration%"=="2013" ( | ||
19 | set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" | ||
20 | ) | ||
21 | |||
22 | if "%Configuration%"=="2012" ( | ||
23 | set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" | ||
24 | ) | ||
25 | |||
26 | if "%Configuration%"=="2010" ( | ||
27 | set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" | ||
28 | ) | ||
29 | |||
30 | if "%Configuration%"=="2008" ( | ||
31 | set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" | ||
32 | ) | ||
33 | |||
34 | :: Visual Studio detected | ||
35 | endlocal & call %SET_VS_ENV% %arch% | ||
36 | goto :eof | ||
37 | |||
38 | :: MinGW detected | ||
39 | :mingw | ||
40 | endlocal & set PATH=c:\mingw\bin;%PATH% | ||