0ad/build/workspaces/update-workspaces.bat
Ykkrosh 3fbc464857 # Updated build system
to use Premake 3.1 (slightly modified - see next commit), and to
properly support VS2005. Should still be compatible with GCC, though
there may be differences I haven't noticed.
Removed option to build ScEd (because it won't work anyway).

This was SVN commit r3782.
2006-04-20 01:20:24 +00:00

14 lines
311 B
Batchfile
Executable file

@echo off
rem ** Create Visual Studio Workspaces on Windows **
mkdir vc2002
mkdir vc2003
mkdir vc2005
cd ..\premake
premake --target vs2002 --outpath ../workspaces/vc2002 %*
premake --target vs2003 --outpath ../workspaces/vc2003 %*
premake --target vs2005 --outpath ../workspaces/vc2005 %*
cd ..\workspaces