build-deps.cmd added; builds everything needed from a clean checkout

This commit is contained in:
Chris Forbes
2010-02-07 14:33:05 +13:00
parent 2e97f3d308
commit 57ee74ca7e
2 changed files with 20 additions and 0 deletions

1
.gitignore vendored
View File

@@ -6,6 +6,7 @@ obj
*.vcproj*
*.suo
*.user
*.sln.cache
mods/*/*.dll
# Red Alert binary files

19
build-deps.cmd Normal file
View File

@@ -0,0 +1,19 @@
set MSBUILD="c:\windows\Microsoft.NET\Framework\v3.5\msbuild.exe"
call git submodule init
call git submodule update
pushd Ijw.DirectX
call git submodule init
call git submodule update
pushd Ijw.Framework
%MSBUILD% /t:Rebuild /p:Configuration=Debug IjwFramework.sln
%MSBUILD% /t:Rebuild /p:Configuration=Release IjwFramework.sln
popd
%MSBUILD% Ijw.DirectX.sln /p:Configuration=Debug
%MSBUILD% Ijw.DirectX.sln /p:Configuration=Release
popd
%MSBUILD% OpenRA.sln /t:Rebuild /p:Configuration=Debug