diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-11-19 10:13:04 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-11-19 19:40:31 (GMT) |
commit | 36e31cd1279cc441ba61bd38e85562fb2eafc449 (patch) | |
tree | 44890d72f0d24420fa826306942390a2a7b61b58 /Source/cmTarget.cxx | |
parent | 04d398d3561453beb5e52db61810d98a832761ce (diff) | |
download | CMake-36e31cd1279cc441ba61bd38e85562fb2eafc449.zip CMake-36e31cd1279cc441ba61bd38e85562fb2eafc449.tar.gz CMake-36e31cd1279cc441ba61bd38e85562fb2eafc449.tar.bz2 |
cmTarget: Make GetInterfaceLinkLibraries const.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 26b1e76..b0caf16 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -811,7 +811,7 @@ void cmTarget::GetDirectLinkLibraries(const char *config, //---------------------------------------------------------------------------- void cmTarget::GetInterfaceLinkLibraries(const char *config, - std::vector<std::string> &libs, cmTarget *head) + std::vector<std::string> &libs, cmTarget *head) const { const char *prop = this->GetProperty("INTERFACE_LINK_LIBRARIES"); if (prop) |