mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +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
|
@ -103,7 +103,7 @@ public class FileTreeCreatorVC10 extends FileTreeCreator {
|
|||
}
|
||||
}
|
||||
|
||||
String tagName = wg.getFileTagFromSuffix(fileName);
|
||||
String tagName = wg10.getFileTagFromSuffix(fileName);
|
||||
|
||||
if (!useIgnore && !disablePch && !usePch && !isReplacedByAltSrc) {
|
||||
wg.tag(tagName, new String[] { "Include", fileLoc});
|
||||
|
@ -133,7 +133,7 @@ public class FileTreeCreatorVC10 extends FileTreeCreator {
|
|||
}
|
||||
|
||||
String filter = startDir.relativize(file.getParent().toAbsolutePath()).toString();
|
||||
wg.addFilterDependency(fileLoc, filter);
|
||||
wg10.addFilterDependency(fileLoc, filter);
|
||||
|
||||
return CONTINUE;
|
||||
}
|
||||
|
@ -162,7 +162,7 @@ public class FileTreeCreatorVC10 extends FileTreeCreator {
|
|||
if (!hide) {
|
||||
String name = startDir.relativize(path.toAbsolutePath()).toString();
|
||||
if (!"".equals(name)) {
|
||||
wg.addFilter(name);
|
||||
wg10.addFilter(name);
|
||||
}
|
||||
|
||||
attributes.push(newAttr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue