diff options
author | Yury G. Kudryashov <urkud.urkud@gmail.com> | 2012-02-26 22:15:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-09-28 13:21:39 (GMT) |
commit | 4e2347cbf39ab72f9bf4ca8bdac7dbecd0143dde (patch) | |
tree | 43cefaf90cda3feac1bb768488bba0cd9bcfaa07 /Source/cmInstallCommand.cxx | |
parent | e846e7031fd16ac3e3418ca3a6871aa3f1b6a822 (diff) | |
download | CMake-4e2347cbf39ab72f9bf4ca8bdac7dbecd0143dde.zip CMake-4e2347cbf39ab72f9bf4ca8bdac7dbecd0143dde.tar.gz CMake-4e2347cbf39ab72f9bf4ca8bdac7dbecd0143dde.tar.bz2 |
exports: Rename cmGlobalGenerator::AddTargetToExport{s,}
This function adds target to one export, not to several exports.
Diffstat (limited to 'Source/cmInstallCommand.cxx')
-rw-r--r-- | Source/cmInstallCommand.cxx | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx index de92538..62fc2ef 100644 --- a/Source/cmInstallCommand.cxx +++ b/Source/cmInstallCommand.cxx @@ -745,24 +745,10 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args) te->LibraryGenerator = libraryGenerator; te->RuntimeGenerator = runtimeGenerator; this->Makefile->GetLocalGenerator()->GetGlobalGenerator() - ->AddTargetToExports(exports.GetCString(), te); + ->AddTargetToExport(exports.GetCString(), te); } } - - // Add this install rule to an export if one was specified and - // this is not a namelink-only rule. - if(!exports.GetString().empty() && !namelinkOnly) - { - this->Makefile->GetLocalGenerator()->GetGlobalGenerator() - ->AddTargetToExports(exports.GetCString(), &target, - archiveGenerator, runtimeGenerator, - libraryGenerator, frameworkGenerator, - bundleGenerator, publicHeaderGenerator); - } - } - - // Tell the global generator about any installation component names // specified if (installsArchive) |