diff options
author | Brad King <brad.king@kitware.com> | 2007-06-27 20:10:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-06-27 20:10:39 (GMT) |
commit | c0d3ab2d2b6a0e8d6cb1d380c7f1987f0a64a0f0 (patch) | |
tree | 046f26e512b8c3a0bc491395fd16e342b2fda4d8 /Source/cmFileCommand.h | |
parent | cfe9fda9fe49c8b728cdae2074a49f65a021bacb (diff) | |
download | CMake-c0d3ab2d2b6a0e8d6cb1d380c7f1987f0a64a0f0.zip CMake-c0d3ab2d2b6a0e8d6cb1d380c7f1987f0a64a0f0.tar.gz CMake-c0d3ab2d2b6a0e8d6cb1d380c7f1987f0a64a0f0.tar.bz2 |
BUG: Need to compute the correct versioned name for executables on cygwin. This addresses bug#5238.
Diffstat (limited to 'Source/cmFileCommand.h')
-rw-r--r-- | Source/cmFileCommand.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmFileCommand.h b/Source/cmFileCommand.h index 542410f..39ef100 100644 --- a/Source/cmFileCommand.h +++ b/Source/cmFileCommand.h @@ -159,7 +159,8 @@ protected: bool HandleRelativePathCommand(std::vector<std::string> const& args); bool HandleCMakePathCommand(std::vector<std::string> const& args, bool nativePath); - void ComputeVersionedName(std::string& name, const char* version); + void ComputeVersionedLibName(std::string& name, const char* version); + void ComputeVersionedExeName(std::string& name, const char* version); // FILE(INSTALL ...) related functions bool HandleInstallCommand(std::vector<std::string> const& args); |