mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 03:54:33 +02:00
8022740: Visual 2008 IDE build is broken
Fixed project generation code, and added warning to upgrade to VS 2008 SP1. Reviewed-by: dcubed, ccheung
This commit is contained in:
parent
4d2ab5385c
commit
5189d350c9
5 changed files with 27 additions and 19 deletions
|
@ -12,11 +12,15 @@ public class FileTreeCreator extends SimpleFileVisitor<Path>
|
|||
final int startDirLength;
|
||||
Stack<DirAttributes> attributes = new Stack<DirAttributes>();
|
||||
Vector<BuildConfig> allConfigs;
|
||||
WinGammaPlatformVC10 wg;
|
||||
WinGammaPlatform wg;
|
||||
WinGammaPlatformVC10 wg10;
|
||||
|
||||
public FileTreeCreator(Path startDir, Vector<BuildConfig> allConfigs, WinGammaPlatformVC10 wg) {
|
||||
public FileTreeCreator(Path startDir, Vector<BuildConfig> allConfigs, WinGammaPlatform wg) {
|
||||
super();
|
||||
this.wg = wg;
|
||||
if (wg instanceof WinGammaPlatformVC10) {
|
||||
wg10 = (WinGammaPlatformVC10)wg;
|
||||
}
|
||||
this.allConfigs = allConfigs;
|
||||
this.startDir = startDir;
|
||||
startDirLength = startDir.toAbsolutePath().toString().length();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue