added everything

This commit is contained in:
Metario
2017-04-17 06:17:10 -06:00
commit 9c6ff74f19
6121 changed files with 1625704 additions and 0 deletions

38
vc7/build.bat Executable file
View File

@@ -0,0 +1,38 @@
@echo off
echo Build the project!
call "c:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\vsvars32.bat"
devenv "Torque SDK.sln" /build Release
IF ERRORLEVEL 1 EXIT 1
echo build installers!
cd ..\install_build
echo - build.sh win32 sdk
c:\cygwin\bin\sh -c "export PATH=/cygdrive/c/cygwin/bin:. && build.sh win32 sdk"
IF ERRORLEVEL 1 EXIT 1
echo - copying output
mkdir %2\sdk
IF ERRORLEVEL 1 EXIT 1
move sdk\*.exe %2\sdk
IF ERRORLEVEL 1 EXIT 1
echo - build.sh win32 demo
c:\cygwin\bin\sh -c "export PATH=/cygdrive/c/cygwin/bin:. && build.sh win32 demo"
IF ERRORLEVEL 1 EXITs 1
echo - copying output
mkdir %2\demo
IF ERRORLEVEL 1 EXIT 1
move demo\*.exe %2\demo
IF ERRORLEVEL 1 EXIT 1
echo Coming home...
cd ..\vc7