diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-23 16:26:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-24 07:24:43 (GMT) |
commit | 600af01d41e32d304e43dc98783ec0f7f010f40e (patch) | |
tree | 06228d5801877a7bd1ef1bc8cc3cf347de6650ca /Source/cmGlobalVisualStudioGenerator.h | |
parent | 330bfa83368989f6fd67072ef9f5c9e457230f17 (diff) | |
download | CMake-600af01d41e32d304e43dc98783ec0f7f010f40e.zip CMake-600af01d41e32d304e43dc98783ec0f7f010f40e.tar.gz CMake-600af01d41e32d304e43dc98783ec0f7f010f40e.tar.bz2 |
VS: Port utility depends to cmGeneratorTarget
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.h')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index 0b0b7b1..6d804d8 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -129,8 +129,8 @@ protected: bool CheckTargetLinks(cmTarget& target, const std::string& name); std::string GetUtilityForTarget(cmTarget& target, const std::string&); virtual std::string WriteUtilityDepend(cmTarget const*) = 0; - std::string GetUtilityDepend(cmTarget const* target); - typedef std::map<cmTarget const*, std::string> UtilityDependsMap; + std::string GetUtilityDepend(const cmGeneratorTarget *target); + typedef std::map<cmGeneratorTarget const*, std::string> UtilityDependsMap; UtilityDependsMap UtilityDepends; protected: |