diff options
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 46fc4e9..4e03ba0 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -872,6 +872,10 @@ cmLocalGenerator::ExpandRuleVariable(std::string const& variable, { return target; } + if(variable == "TARGET_IMPLIB") + { + return m_TargetImplib; + } if(variable == "TARGET_BASE") { // Strip the last extension off the target name. |