summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-05 15:37:49 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-26 17:46:32 (GMT)
commitabe9505df94e9a1511238c41f9d4459064148c94 (patch)
tree114059d55fbfec3a1929515bcdc591e2c55f5e30 /Source/cmTarget.cxx
parentd4a24c0e953e0032a2e483917850b7f8f387bbb2 (diff)
downloadCMake-abe9505df94e9a1511238c41f9d4459064148c94.zip
CMake-abe9505df94e9a1511238c41f9d4459064148c94.tar.gz
CMake-abe9505df94e9a1511238c41f9d4459064148c94.tar.bz2
cmGeneratorTarget: Move HaveBuildTreeRPath from cmTarget.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index a8ea0b8..9073f82 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -2810,21 +2810,6 @@ void cmTarget::SetPropertyDefault(const std::string& property,
}
//----------------------------------------------------------------------------
-bool cmTarget::HaveBuildTreeRPATH(const std::string& config) const
-{
- if (this->GetPropertyAsBool("SKIP_BUILD_RPATH"))
- {
- return false;
- }
- if(cmLinkImplementationLibraries const* impl =
- this->GetLinkImplementationLibraries(config))
- {
- return !impl->Libraries.empty();
- }
- return false;
-}
-
-//----------------------------------------------------------------------------
bool cmTarget::HaveInstallTreeRPATH() const
{
const char* install_rpath = this->GetProperty("INSTALL_RPATH");