comparison src/share/tools/ProjectCreator/WinGammaPlatform.java @ 8883:b9a918201d47

Merge with hsx25
author Gilles Duboscq <duboscq@ssw.jku.at>
date Sat, 06 Apr 2013 20:04:06 +0200
parents e522a00b91aa 6b748c9e1845
children 3cce976666d9
comparison
equal deleted inserted replaced
8660:d47b52b0ff68 8883:b9a918201d47
566 566
567 allConfigs.add(new CoreDebugConfig()); 567 allConfigs.add(new CoreDebugConfig());
568 allConfigs.add(new CoreFastDebugConfig()); 568 allConfigs.add(new CoreFastDebugConfig());
569 allConfigs.add(new CoreProductConfig()); 569 allConfigs.add(new CoreProductConfig());
570 570
571 if (platform.equals("Win32")) {
572 allConfigs.add(new KernelDebugConfig());
573 allConfigs.add(new KernelFastDebugConfig());
574 allConfigs.add(new KernelProductConfig());
575 }
576
577 return allConfigs; 571 return allConfigs;
578 } 572 }
579 573
580 PrintWriter printWriter; 574 PrintWriter printWriter;
581 575