To fix EDKT341. Still existing issues for VfrCompile.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1633 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
wuyizhong
2006-09-27 05:53:35 +00:00
parent 16c490eb07
commit 32c8b5a947
3 changed files with 76 additions and 22 deletions

View File

@ -61,6 +61,8 @@ public class UserDefineDef extends ProcessorDef {
private String outputFile;
private Vector allLibraries = new Vector();
private String dpath = null;
public void addLibset(LibrarySet libset) {
if (isReference()) {
@ -293,4 +295,12 @@ public class UserDefineDef extends ProcessorDef {
this.outputDelimiter = outputDelimiter;
}
public String getDpath() {
return dpath;
}
public void setDpath(String dpath) {
this.dpath = dpath;
}
}