mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-09 21:56:47 +00:00
3fbc464857
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.
15 lines
311 B
Batchfile
Executable File
15 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
|