summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio6Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2011-02-10 21:17:44 (GMT)
committerBrad King <brad.king@kitware.com>2011-02-10 21:17:44 (GMT)
commit2516c05c2c73e768a7ec082a6fed8b2168489f6a (patch)
tree5c61d2964d322ed9fcac25d261452998f331d636 /Source/cmLocalVisualStudio6Generator.cxx
parente53b7cbadf1b7faf353e91b6041a697a90d9584d (diff)
downloadCMake-2516c05c2c73e768a7ec082a6fed8b2168489f6a.zip
CMake-2516c05c2c73e768a7ec082a6fed8b2168489f6a.tar.gz
CMake-2516c05c2c73e768a7ec082a6fed8b2168489f6a.tar.bz2
VS: Create a Fortran DLL's import library directory
The Intel Fortran plugin forgets to create the output directory into which it will write a DLL's import library. Utilize the fix added by commit f4b3bdc6 (Create an exe's implib output dir for VS, 2009-06-15) and generalized by commit 764ac980 (Generalize exe implib dir creation for VS, 2009-06-16). Create a pre-link rule to make the directory.
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio6Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx
index 7aabf4d..095e1a7 100644
--- a/Source/cmLocalVisualStudio6Generator.cxx
+++ b/Source/cmLocalVisualStudio6Generator.cxx
@@ -863,7 +863,7 @@ cmLocalVisualStudio6Generator::CreateTargetRules(cmTarget &target,
event.Write(target.GetPreBuildCommands());
event.Write(target.GetPreLinkCommands());
cmsys::auto_ptr<cmCustomCommand> pcc(
- this->MaybeCreateImplibDir(target, configName));
+ this->MaybeCreateImplibDir(target, configName, false));
if(pcc.get())
{
event.Write(*pcc);