diff options
author | Brad King <brad.king@kitware.com> | 2009-07-08 17:04:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-07-08 17:04:04 (GMT) |
commit | 173448d9886deccb7cadd4fd0ffeaa236fa66e49 (patch) | |
tree | 12ef68b6607c5b223cd5e962d2e63d3ba8e68b69 /Source/cmComputeLinkInformation.cxx | |
parent | a3a046643aeb6244ac71a3cd645239099c6345f3 (diff) | |
download | CMake-173448d9886deccb7cadd4fd0ffeaa236fa66e49.zip CMake-173448d9886deccb7cadd4fd0ffeaa236fa66e49.tar.gz CMake-173448d9886deccb7cadd4fd0ffeaa236fa66e49.tar.bz2 |
ENH: Pass config to cmTarget::GetLinkerLanguage
This passes the build configuration to most GetLinkerLanguage calls. In
the future the linker language will account for targets linked in each
configuration.
Diffstat (limited to 'Source/cmComputeLinkInformation.cxx')
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index 4ca6817..66d355d 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -264,7 +264,7 @@ cmComputeLinkInformation this->OrderDependentRPath = 0; // Get the language used for linking this target. - this->LinkLanguage = this->Target->GetLinkerLanguage(); + this->LinkLanguage = this->Target->GetLinkerLanguage(config); if(!this->LinkLanguage) { // The Compute method will do nothing, so skip the rest of the |