VC2010 cmake alterations. Lib stuff not included.

This commit is contained in:
unknown
2010-10-05 01:34:35 -05:00
parent 2a584cb0fd
commit 227a72c421
9 changed files with 24 additions and 4 deletions

View File

@@ -550,6 +550,10 @@ namespace VSTool
case "10.00":
version = "VC90";
break;
case "11.00":
version = "VC100";
break;
default:
throw new ApplicationException("Unknown .sln version: " + format);
}
@@ -585,6 +589,10 @@ namespace VSTool
case "VC90":
progid = "VisualStudio.DTE.9.0";
break;
case "VC100":
progid = "VisualStudio.DTE.10.0";
break;
default:
throw new ApplicationException("Can't handle VS version: " + version);
}