diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-10 14:30:41 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-12-11 14:30:11 (GMT) |
commit | 9edee62f280de840096651a817b765a38ec6d090 (patch) | |
tree | 98c18e58a0555d98d7c071fa7558d1af513ec269 /Source/cmInstallTargetGenerator.h | |
parent | ef25ba8d066ed06d59f975ecfac55569ee369402 (diff) | |
download | CMake-9edee62f280de840096651a817b765a38ec6d090.zip CMake-9edee62f280de840096651a817b765a38ec6d090.tar.gz CMake-9edee62f280de840096651a817b765a38ec6d090.tar.bz2 |
Constify handling of link targets.
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r-- | Source/cmInstallTargetGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h index 8cf72f9..18c3957 100644 --- a/Source/cmInstallTargetGenerator.h +++ b/Source/cmInstallTargetGenerator.h @@ -53,7 +53,8 @@ public: NameReal }; - static std::string GetInstallFilename(cmTarget*target, const char* config, + static std::string GetInstallFilename(cmTarget const* target, + const char* config, NameType nameType = NameNormal); cmTarget* GetTarget() const { return this->Target; } |