diff options
Diffstat (limited to 'src/net/sf/antcontrib/cpptasks/compiler')
-rw-r--r-- | src/net/sf/antcontrib/cpptasks/compiler/LinkType.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/sf/antcontrib/cpptasks/compiler/LinkType.java b/src/net/sf/antcontrib/cpptasks/compiler/LinkType.java index 31348f2..2ab5380 100644 --- a/src/net/sf/antcontrib/cpptasks/compiler/LinkType.java +++ b/src/net/sf/antcontrib/cpptasks/compiler/LinkType.java @@ -27,6 +27,9 @@ public class LinkType { private OutputTypeEnum outputType = new OutputTypeEnum(); private boolean staticRuntime = false; private SubsystemEnum subsystem = new SubsystemEnum(); +// FREEHEP + private boolean linkCPP = true; + /** * Constructor * @@ -156,6 +159,14 @@ public class LinkType { return subsystem.getValue(); } + public void setLinkCPP(boolean linkCPP) { + this.linkCPP = linkCPP; + } + + public boolean linkCPP() { + return linkCPP; + } + // FREEHEP: flag public boolean callAddLibrarySets = false; } |