7006354: Updates to Visual Studio project creation and development launcher

Updates to Visual Studio project creation and development launcher

Reviewed-by: stefank, coleenp
This commit is contained in:
Staffan Larsen 2010-12-15 07:11:31 -08:00
parent 18324204ef
commit c299b4709f
36 changed files with 398 additions and 264 deletions

View file

@ -22,7 +22,7 @@
*
*/
import java.util.*;
import java.util.Vector;
public class WinGammaPlatformVC8 extends WinGammaPlatformVC7 {
@ -41,6 +41,9 @@ class CompilerInterfaceVC8 extends CompilerInterfaceVC7 {
// Set /EHsc- option. 0 is cppExceptionHandlingNo
addAttr(rv, "ExceptionHandling", "0");
// enable multi process builds
extAttr(rv, "AdditionalOptions", "/MP");
return rv;
}