mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-11 03:36:39 +00:00
4d8133f785
Use _WIN32/__WXMSW__ instead of OS_WIN. This was SVN commit r4668.
16 lines
399 B
Batchfile
16 lines
399 B
Batchfile
@echo off
|
|
rem ** Create Visual Studio Workspaces on Windows **
|
|
|
|
mkdir vc2003
|
|
mkdir vc2005
|
|
|
|
cd ..\premake
|
|
|
|
rem VC2002 removed because no one is using it and generating it wastes time.
|
|
rem it's entirely analogous to other cmdlines - just copy+paste if needed again.
|
|
|
|
premake --target vs2003 --outpath ../workspaces/vc2003 %*
|
|
premake --target vs2005 --outpath ../workspaces/vc2005 %*
|
|
|
|
cd ..\workspaces
|