From 52077dfec59739076f253646339de9146606366f Mon Sep 17 00:00:00 2001 From: janwas Date: Fri, 9 Jun 2006 20:01:25 +0000 Subject: [PATCH] no longer create vc2002 project This was SVN commit r3994. --- build/workspaces/update-workspaces.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/workspaces/update-workspaces.bat b/build/workspaces/update-workspaces.bat index cf63b6035d..116cb69e1f 100755 --- a/build/workspaces/update-workspaces.bat +++ b/build/workspaces/update-workspaces.bat @@ -1,13 +1,14 @@ @echo off rem ** Create Visual Studio Workspaces on Windows ** -mkdir vc2002 mkdir vc2003 mkdir vc2005 cd ..\premake -premake --target vs2002 --outpath ../workspaces/vc2002 %* +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 %*