| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /*=========================================================================
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Insight Consortium. All rights reserved.
- See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmGlobalGenerator.h"
- #include "cmLocalGenerator.h"
- #include "cmake.h"
- #include "cmMakefile.h"
- cmGlobalGenerator::cmGlobalGenerator()
- {
- m_LanguagesEnabled = false;
- }
- cmGlobalGenerator::~cmGlobalGenerator()
- {
- // Delete any existing cmLocalGenerators
- int i;
- for (i = 0; i < m_LocalGenerators.size(); ++i)
- {
- delete m_LocalGenerators[i];
- }
- m_LocalGenerators.clear();
- }
- void cmGlobalGenerator::SetLanguageEnabled(const char* l)
- {
- m_LanguageEnabled[l] = true;
- }
- bool cmGlobalGenerator::GetLanguageEnabled(const char* l)
- {
- return (m_LanguageEnabled.count(l) > 0);
- }
- void cmGlobalGenerator::ClearEnabledLanguages()
- {
- m_LanguageEnabled.clear();
- }
- void cmGlobalGenerator::Configure()
- {
- // reset theLanguages
- m_LanguagesEnabled = false;
-
- // Delete any existing cmLocalGenerators
- int i;
- for (i = 0; i < m_LocalGenerators.size(); ++i)
- {
- delete m_LocalGenerators[i];
- }
- m_LocalGenerators.clear();
-
- // start with this directory
- cmLocalGenerator *lg = this->CreateLocalGenerator();
- m_LocalGenerators.push_back(lg);
- // set the Start directories
- lg->GetMakefile()->SetStartDirectory(m_CMakeInstance->GetStartDirectory());
- lg->GetMakefile()->SetStartOutputDirectory(m_CMakeInstance->GetStartOutputDirectory());
- lg->GetMakefile()->MakeStartDirectoriesCurrent();
-
- // now do it
- this->RecursiveConfigure(lg);
- }
- // loop through the directories creating cmLocalGenerators and Configure()
- void cmGlobalGenerator::RecursiveConfigure(cmLocalGenerator *lg)
- {
- // configure the current directory
- lg->Configure();
-
- // get all the subdirectories
- std::vector<std::string> subdirs = lg->GetMakefile()->GetSubDirectories();
-
- // for each subdir recurse
- int i;
- for (i = 0; i < subdirs.size(); ++i)
- {
- cmLocalGenerator *lg2 = this->CreateLocalGenerator();
- m_LocalGenerators.push_back(lg2);
-
- // add the subdir to the start output directory
- std::string outdir = lg->GetMakefile()->GetStartOutputDirectory();
- outdir += "/";
- outdir += subdirs[i];
- lg2->GetMakefile()->SetStartOutputDirectory(outdir.c_str());
-
- // add the subdir to the start source directory
- std::string currentDir = lg->GetMakefile()->GetStartDirectory();
- currentDir += "/";
- currentDir += subdirs[i];
- lg2->GetMakefile()->SetStartDirectory(currentDir.c_str());
- lg2->GetMakefile()->MakeStartDirectoriesCurrent();
-
- this->RecursiveConfigure(lg2);
- }
- }
- void cmGlobalGenerator::Generate()
- {
- // For each existing cmLocalGenerator
- int i;
- for (i = 0; i < m_LocalGenerators.size(); ++i)
- {
- m_LocalGenerators[i]->Generate(true);
- }
- }
- void cmGlobalGenerator::LocalGenerate()
- {
- // for this case we create one LocalGenerator
- // configure it, and then Generate it
- // start with this directory
- cmLocalGenerator *lg = this->CreateLocalGenerator();
- // set the Start directories
- lg->GetMakefile()->SetStartDirectory(m_CMakeInstance->GetStartDirectory());
- lg->GetMakefile()->SetStartOutputDirectory(m_CMakeInstance->GetStartOutputDirectory());
- lg->GetMakefile()->MakeStartDirectoriesCurrent();
-
- // now do trhe configure
- lg->Configure();
- lg->Generate(false);
- delete lg;
- }
- int cmGlobalGenerator::TryCompile(const char *, const char *bindir,
- const char *)
- {
- // now build the test
- std::string makeCommand =
- m_CMakeInstance->GetCacheManager()->GetCacheValue("CMAKE_MAKE_PROGRAM");
- if(makeCommand.size() == 0)
- {
- cmSystemTools::Error(
- "Generator cannot find the appropriate make command.");
- return 1;
- }
- makeCommand = cmSystemTools::ConvertToOutputPath(makeCommand.c_str());
- /**
- * Run an executable command and put the stdout in output.
- */
- std::string output;
- std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
- cmSystemTools::ChangeDirectory(bindir);
-
- // now build
- makeCommand += " all";
- if (!cmSystemTools::RunCommand(makeCommand.c_str(), output))
- {
- cmSystemTools::Error("Generator: execution of make failed.");
- // return to the original directory
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 1;
- }
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 0;
- }
- cmLocalGenerator *cmGlobalGenerator::CreateLocalGenerator()
- {
- cmLocalGenerator *lg = new cmLocalGenerator;
- lg->SetGlobalGenerator(this);
- return lg;
- }
|