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/cmGlobalGenerator.h | |
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/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 29f11e1..5408c7e 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -154,7 +154,7 @@ public: { return &this->InstallComponents; } ///! Add one installed target to the sets of the exports - void AddTargetToExports(const char* exportSet, cmTargetExport* te); + void AddTargetToExport(const char* exportSet, cmTargetExport* te); ///! Get the export target set with the given name const std::vector<cmTargetExport*>* GetExportSet(const char* name) const; |