diff options
author | Brad King <brad.king@kitware.com> | 2009-07-08 17:03:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-07-08 17:03:47 (GMT) |
commit | a3a046643aeb6244ac71a3cd645239099c6345f3 (patch) | |
tree | c6fc86af7356909f5b29d939ce89cf4235cc1da0 /Source/cmMakefileExecutableTargetGenerator.cxx | |
parent | 6ef56f777803ac6e90699a12636d0133b94b9312 (diff) | |
download | CMake-a3a046643aeb6244ac71a3cd645239099c6345f3.zip CMake-a3a046643aeb6244ac71a3cd645239099c6345f3.tar.gz CMake-a3a046643aeb6244ac71a3cd645239099c6345f3.tar.bz2 |
ENH: Pass config to cmTarget RPATH install methods
This passes the build configuration to cmTarget methods IsChrpathUsed
and NeedRelinkBeforeInstall. Later these methods will use the value.
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileExecutableTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.cxx b/Source/cmMakefileExecutableTargetGenerator.cxx index cebdf59..e9ac80c 100644 --- a/Source/cmMakefileExecutableTargetGenerator.cxx +++ b/Source/cmMakefileExecutableTargetGenerator.cxx @@ -60,7 +60,7 @@ void cmMakefileExecutableTargetGenerator::WriteRuleFiles() // write the link rules this->WriteExecutableRule(false); - if(this->Target->NeedRelinkBeforeInstall()) + if(this->Target->NeedRelinkBeforeInstall(this->ConfigName)) { // Write rules to link an installable version of the target. this->WriteExecutableRule(true); |