diff src/share/tools/ProjectCreator/WinGammaPlatformVC8.java @ 2027:aa6e219afbf1

7006354: Updates to Visual Studio project creation and development launcher Summary: Updates to Visual Studio project creation and development launcher Reviewed-by: stefank, coleenp
author sla
date Wed, 15 Dec 2010 07:11:31 -0800
parents f95d63e2154a
children 06f017f7daa7
line wrap: on
line diff
--- a/src/share/tools/ProjectCreator/WinGammaPlatformVC8.java	Tue Dec 14 15:10:52 2010 -0500
+++ b/src/share/tools/ProjectCreator/WinGammaPlatformVC8.java	Wed Dec 15 07:11:31 2010 -0800
@@ -22,7 +22,7 @@
  *
  */
 
-import java.util.*;
+import java.util.Vector;
 
 public class WinGammaPlatformVC8 extends WinGammaPlatformVC7 {
 
@@ -41,6 +41,9 @@
         // Set /EHsc- option. 0 is cppExceptionHandlingNo
         addAttr(rv, "ExceptionHandling", "0");
 
+        // enable multi process builds
+        extAttr(rv, "AdditionalOptions", "/MP");
+
         return rv;
     }