]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/Prototype/LibInst.java
Added BuildTarget with enumerated data type (DEBUG|RELEASE|BOTH) to the PlatformHeade...
[mirror_edk2.git] / Tools / Source / Prototype / LibInst.java
1 import java.util.*;
2
3 public class LibInst extends Module
4 {
5 LibInst()
6 {
7 }
8 LibInst(String n)
9 {
10 name=n;
11 }
12
13 public Set<LibClass> producesLibClasses;
14
15 public String constructorName, destructorName;
16
17 public boolean autoBuild()
18 {
19 // A simple compile, without link.
20 return true;
21 }
22 }