mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
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.
14 lines
311 B
Batchfile
Executable file
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
|