mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 16:14:38 +00:00
Full Template for ticket #1
This commit is contained in:
parent
74f265b3b3
commit
f439dc8dcd
2150 changed files with 286240 additions and 0 deletions
67
Templates/Full/buildFiles/compile.bat
Normal file
67
Templates/Full/buildFiles/compile.bat
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
@echo off
|
||||
SETLOCAL
|
||||
|
||||
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=/useenv /build "%CONFIG%|Win32"
|
||||
SET BUILDDIR="VisualStudio 2008"
|
||||
|
||||
REM Handle the non-defaults
|
||||
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% == 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
|
||||
ENDLOCAL
|
||||
EXIT /B 1
|
||||
|
||||
:end
|
||||
ENDLOCAL
|
||||
Loading…
Add table
Add a link
Reference in a new issue