diff options
author | Brad King <brad.king@kitware.com> | 2006-02-18 20:37:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-02-18 20:37:23 (GMT) |
commit | 81677b31300f058830889e5603bf06ccd9221691 (patch) | |
tree | 35946600211458cb15f8269b2a5a607f43ecfc64 /Source/cmLocalGenerator.cxx | |
parent | 9ba02838701e2513414f258dec9d63566ee9b481 (diff) | |
download | CMake-81677b31300f058830889e5603bf06ccd9221691.zip CMake-81677b31300f058830889e5603bf06ccd9221691.tar.gz CMake-81677b31300f058830889e5603bf06ccd9221691.tar.bz2 |
ENH: Generate import libraries for DLLs on Cygwin and MinGW.
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. |