123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @echo off
- REM Handle our optional parameters
- SET COMPILER=%1
- SET CONFIG=%2
- IF NOT DEFINED COMPILER SET COMPILER=VS2008
- IF NOT DEFINED CONFIG SET CONFIG=Release
- REM Setting up some variables
- REM Detecting the correct Program Files
- IF DEFINED PROGRAMFILES(X86) SET PROGRAMROOT=%ProgramFiles(x86)%
- IF NOT DEFINED PROGRAMROOT SET PROGRAMROOT=%ProgramFiles%
- REM First the defaults (set up for VS2008 by default)
- SET ENVVAR="%PROGRAMROOT%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
- SET BUILDCMD=devenv.com
- SET OPTIONS= /build "%CONFIG%|Win32"
- SET BUILDDIR="VisualStudio 2008"
- REM Handle the non-defaults
- IF %COMPILER% == VS2005 SET ENVVAR="%PROGRAMROOT%\Microsoft Visual Studio 8\VC\vcvarsall.bat"
- IF %COMPILER% == VS2010 SET ENVVAR="%PROGRAMROOT%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
- IF EXIST "%PROGRAMROOT%\Xoreax\IncrediBuild\BuildConsole.exe" SET BUILDCMD="%PROGRAMROOT%\Xoreax\IncrediBuild\BuildConsole.exe"
- IF EXIST "%PROGRAMROOT%\Xoreax\IncrediBuild\BuildConsole.exe" SET OPTIONS=/build "%CONFIG%|Win32"
- IF %COMPILER% == VS2005 SET BUILDDIR="VisualStudio 2005"
- IF %COMPILER% == VS2010 SET BUILDDIR="VisualStudio 2010"
- echo Building all solutions under %COMPILER% with the %CONFIG% configuration
- echo Initializing %COMPILER% environment variables...
- call %ENVVAR%
- echo Initializing the DirectX SDK environment variables...
- IF "%DXSDK_DIR%" == "" goto error_no_DXSDK_DIR
- call "%DXSDK_DIR%Utilities\Bin\dx_setenv.cmd" x86
- echo Moving to our build directory
- cd %BUILDDIR%
- echo - Building
- for %%a in (*.sln) do %BUILDCMD% "%%a" %OPTIONS% & IF ERRORLEVEL 1 goto error_compile
- REM It is just polite for a batch file to leave you in the same dir you started in
- cd ..
- REM We were successful in everything so go to the end
- goto :end
- :error_no_DXSDK_DIR
- @echo ERROR: DXSDK_DIR variable is not set. Make sure the DirectX SDK is installed properly.
- @goto end_error
- :error_compile
- @echo ERROR: There was an error compiling a solution in %CD%
- @goto end_error
- :end_error
- EXIT 1
- :end
|