mirror of https://github.com/acidanthera/audk.git
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1251 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
fb840aa8f7
commit
7b086bab60
|
@ -71,6 +71,10 @@ public class ModuleInfo {
|
||||||
} else if (list[i].contains(".h") || list[i].contains(".H")) {
|
} else if (list[i].contains(".h") || list[i].contains(".H")) {
|
||||||
localmodulesources.add(list[i]);
|
localmodulesources.add(list[i]);
|
||||||
localmoduleheaders.add(list[i]); //the case that several .inf or .msa found is not concerned
|
localmoduleheaders.add(list[i]); //the case that several .inf or .msa found is not concerned
|
||||||
|
} else if (list[i].contains(".dxs")) {
|
||||||
|
localmodulesources.add(list[i]);
|
||||||
|
} else if (list[i].contains(".uni")) {
|
||||||
|
localmodulesources.add(list[i]);
|
||||||
} else if (list[i].contains(".inf")) {
|
} else if (list[i].contains(".inf")) {
|
||||||
if (ui.yesOrNo("Found .inf file : " + list[i] + "\nUse this file as this module's .inf ?")) {
|
if (ui.yesOrNo("Found .inf file : " + list[i] + "\nUse this file as this module's .inf ?")) {
|
||||||
hasInf = true;
|
hasInf = true;
|
||||||
|
|
Loading…
Reference in New Issue