added everything
This commit is contained in:
38
vc7/build.bat
Executable file
38
vc7/build.bat
Executable 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
|
||||
Reference in New Issue
Block a user