forked from assimp/assimp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Appveyor: add compiler setup script.
- Loading branch information
1 parent
d393ab1
commit 03af4b3
Showing
2 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@echo off | ||
|
||
:: Now we declare a scope | ||
Setlocal EnableDelayedExpansion EnableExtensions | ||
|
||
if not defined Configuration set Configuration=2015 | ||
|
||
if "%Configuration%"=="MinGW" ( goto :mingw ) | ||
|
||
set arch=x86 | ||
|
||
if "%platform%" EQU "x64" ( set arch=x86_amd64 ) | ||
|
||
if "%Configuration%"=="2015" ( | ||
set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" | ||
) | ||
|
||
if "%Configuration%"=="2013" ( | ||
set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" | ||
) | ||
|
||
if "%Configuration%"=="2012" ( | ||
set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" | ||
) | ||
|
||
if "%Configuration%"=="2010" ( | ||
set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" | ||
) | ||
|
||
if "%Configuration%"=="2008" ( | ||
set SET_VS_ENV="C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" | ||
) | ||
|
||
:: Visual Studio detected | ||
endlocal & call %SET_VS_ENV% %arch% | ||
goto :eof | ||
|
||
:: MinGW detected | ||
:mingw | ||
endlocal & set PATH=c:\mingw\bin;%PATH% |