diff options
author | Brad King <brad.king@kitware.com> | 2011-02-10 21:17:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-02-10 21:17:44 (GMT) |
commit | 2516c05c2c73e768a7ec082a6fed8b2168489f6a (patch) | |
tree | 5c61d2964d322ed9fcac25d261452998f331d636 /Source/cmLocalVisualStudioGenerator.h | |
parent | e53b7cbadf1b7faf353e91b6041a697a90d9584d (diff) | |
download | CMake-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/cmLocalVisualStudioGenerator.h')
-rw-r--r-- | Source/cmLocalVisualStudioGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudioGenerator.h b/Source/cmLocalVisualStudioGenerator.h index 1954ac5..22112b3 100644 --- a/Source/cmLocalVisualStudioGenerator.h +++ b/Source/cmLocalVisualStudioGenerator.h @@ -47,7 +47,7 @@ protected: /** Construct a custom command to make exe import lib dir. */ cmsys::auto_ptr<cmCustomCommand> - MaybeCreateImplibDir(cmTarget& target, const char* config); + MaybeCreateImplibDir(cmTarget& target, const char* config, bool isFortran); // Safe object file name generation. void ComputeObjectNameRequirements(std::vector<cmSourceGroup> const&); |