diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-10-31 19:28:48 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-10-31 19:28:48 (GMT) |
commit | 897a2a9029f96ce02349bd71c373a5278a655aa3 (patch) | |
tree | 9e88f94ce86c06ffc892ef5c9808cc57a38906a0 /Source/cmake.cxx | |
parent | 605d8871bb2a8d3cd2798538db95a45ff8df5ef2 (diff) | |
download | CMake-897a2a9029f96ce02349bd71c373a5278a655aa3.zip CMake-897a2a9029f96ce02349bd71c373a5278a655aa3.tar.gz CMake-897a2a9029f96ce02349bd71c373a5278a655aa3.tar.bz2 |
ENH: Cleanup of install component list. There was already the list in the global generator. Use that one
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index e5ebac7..af6fdc9 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1308,17 +1308,6 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args) } //---------------------------------------------------------------------------- -void cmake::AddInstallComponent(const char* component) -{ - if ( !component ) - { - return; - } - this->InstallComponents.insert(component); -} - - -//---------------------------------------------------------------------------- void cmake::GetRegisteredGenerators(std::vector<std::string>& names) { for(RegisteredGeneratorsMap::const_iterator i = this->Generators.begin(); |