| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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"
- #include <stdlib.h> // required for atof
- #if defined(_WIN32) && !defined(__CYGWIN__)
- #include <windows.h>
- #endif
- #include <assert.h>
- int cmGlobalGenerator::s_TryCompileTimeout = 0;
- cmGlobalGenerator::cmGlobalGenerator()
- {
- // by default use the native paths
- this->ForceUnixPaths = false;
- // By default do not try to support color.
- this->ToolSupportsColor = false;
- }
- cmGlobalGenerator::~cmGlobalGenerator()
- {
- // Delete any existing cmLocalGenerators
- unsigned int i;
- for (i = 0; i < this->LocalGenerators.size(); ++i)
- {
- delete this->LocalGenerators[i];
- }
- this->LocalGenerators.clear();
- }
- // Find the make program for the generator, required for try compiles
- void cmGlobalGenerator::FindMakeProgram(cmMakefile* mf)
- {
- if(this->FindMakeProgramFile.size() == 0)
- {
- cmSystemTools::Error(
- "Generator implementation error, "
- "all generators must specify this->FindMakeProgramFile");
- }
- if(!mf->GetDefinition("CMAKE_MAKE_PROGRAM")
- || cmSystemTools::IsOff(mf->GetDefinition("CMAKE_MAKE_PROGRAM")))
- {
- std::string setMakeProgram =
- mf->GetModulesFile(this->FindMakeProgramFile.c_str());
- if(setMakeProgram.size())
- {
- mf->ReadListFile(0, setMakeProgram.c_str());
- }
- }
- if(!mf->GetDefinition("CMAKE_MAKE_PROGRAM")
- || cmSystemTools::IsOff(mf->GetDefinition("CMAKE_MAKE_PROGRAM")))
- {
- cmOStringStream err;
- err << "CMake was unable to find a build program corresponding to \""
- << this->GetName() << "\". CMAKE_MAKE_PROGRAM is not set. You "
- << "probably need to select a different build tool.";
- cmSystemTools::Error(err.str().c_str());
- cmSystemTools::SetFatalErrorOccured();
- return;
- }
- std::string makeProgram = mf->GetRequiredDefinition("CMAKE_MAKE_PROGRAM");
- // if there are spaces in the make program use short path
- // but do not short path the actual program name, as
- // this can cause trouble with VSExpress
- if(makeProgram.find(' ') != makeProgram.npos)
- {
- std::string dir;
- std::string file;
- cmSystemTools::SplitProgramPath(makeProgram.c_str(),
- dir, file);
- std::string saveFile = file;
- cmSystemTools::GetShortPath(makeProgram.c_str(), makeProgram);
- cmSystemTools::SplitProgramPath(makeProgram.c_str(),
- dir, file);
- makeProgram = dir;
- makeProgram += "/";
- makeProgram += saveFile;
- mf->AddCacheDefinition("CMAKE_MAKE_PROGRAM", makeProgram.c_str(),
- "make program",
- cmCacheManager::FILEPATH);
- }
- if(makeProgram.find("xcodebuild") != makeProgram.npos)
- {
- // due to the text file busy /bin/sh problem with xcodebuild
- // use the cmakexbuild wrapper instead. This program
- // will run xcodebuild and if it sees the error text file busy
- // it will stop forwarding output, and let the build finish.
- // Then it will retry the build. It will continue this
- // untill no text file busy errors occur.
- std::string cmakexbuild =
- this->CMakeInstance->GetCacheManager()->GetCacheValue("CMAKE_COMMAND");
- cmakexbuild = cmakexbuild.substr(0, cmakexbuild.length()-5);
- cmakexbuild += "cmakexbuild";
-
- mf->AddCacheDefinition("CMAKE_MAKE_PROGRAM",
- cmakexbuild.c_str(),
- "make program",
- cmCacheManager::FILEPATH);
- }
- }
- // enable the given language
- //
- // The following files are loaded in this order:
- //
- // First figure out what OS we are running on:
- //
- // CMakeSystem.cmake - configured file created by CMakeDetermineSystem.cmake
- // CMakeDetermineSystem.cmake - figure out os info and create
- // CMakeSystem.cmake IFF CMAKE_SYSTEM_NAME
- // not set
- // CMakeSystem.cmake - configured file created by
- // CMakeDetermineSystem.cmake IFF CMAKE_SYSTEM_LOADED
- // Next try and enable all languages found in the languages vector
- //
- // FOREACH LANG in languages
- // CMake(LANG)Compiler.cmake - configured file create by
- // CMakeDetermine(LANG)Compiler.cmake
- // CMakeDetermine(LANG)Compiler.cmake - Finds compiler for LANG and
- // creates CMake(LANG)Compiler.cmake
- // CMake(LANG)Compiler.cmake - configured file created by
- // CMakeDetermine(LANG)Compiler.cmake
- //
- // CMakeSystemSpecificInformation.cmake
- // - includes Platform/${CMAKE_SYSTEM_NAME}.cmake
- // may use compiler stuff
- // FOREACH LANG in languages
- // CMake(LANG)Information.cmake
- // - loads Platform/${CMAKE_SYSTEM_NAME}-${COMPILER}.cmake
- // CMakeTest(LANG)Compiler.cmake
- // - Make sure the compiler works with a try compile if
- // CMakeDetermine(LANG) was loaded
- //
- // Now load a few files that can override values set in any of the above
- // CMake(PROJECTNAME)Compatibility.cmake
- // - load any backwards compatibility stuff for current project
- // ${CMAKE_USER_MAKE_RULES_OVERRIDE}
- // - allow users a chance to override system variables
- //
- //
- void
- cmGlobalGenerator::EnableLanguage(std::vector<std::string>const& languages,
- cmMakefile *mf)
- {
- if(languages.size() == 0)
- {
- cmSystemTools::Error("EnableLanguage must have a lang specified!");
- cmSystemTools::SetFatalErrorOccured();
- return;
- }
- mf->AddDefinition("RUN_CONFIGURE", true);
- std::string rootBin = mf->GetHomeOutputDirectory();
- rootBin += "/CMakeFiles";
-
- // If the configuration files path has been set,
- // then we are in a try compile and need to copy the enable language
- // files from the parent cmake bin dir, into the try compile bin dir
- if(this->ConfiguredFilesPath.size())
- {
- for(std::vector<std::string>::const_iterator l = languages.begin();
- l != languages.end(); ++l)
- {
- if(*l == "NONE")
- {
- this->SetLanguageEnabled("NONE", mf);
- break;
- }
- }
- rootBin = this->ConfiguredFilesPath;
- }
- // set the dir for parent files so they can be used by modules
- mf->AddDefinition("CMAKE_PLATFORM_ROOT_BIN",rootBin.c_str());
-
- // find and make sure CMAKE_MAKE_PROGRAM is defined
- this->FindMakeProgram(mf);
- // try and load the CMakeSystem.cmake if it is there
- std::string fpath = rootBin;
- if(!mf->GetDefinition("CMAKE_SYSTEM_LOADED"))
- {
- fpath += "/CMakeSystem.cmake";
- if(cmSystemTools::FileExists(fpath.c_str()))
- {
- mf->ReadListFile(0,fpath.c_str());
- }
- }
- // Load the CMakeDetermineSystem.cmake file and find out
- // what platform we are running on
- if (!mf->GetDefinition("CMAKE_SYSTEM_NAME"))
- {
- #if defined(_WIN32) && !defined(__CYGWIN__)
- /* Windows version number data. */
- OSVERSIONINFO osvi;
- ZeroMemory(&osvi, sizeof(osvi));
- osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
- GetVersionEx (&osvi);
- cmOStringStream windowsVersionString;
- windowsVersionString << osvi.dwMajorVersion << "." << osvi.dwMinorVersion;
- windowsVersionString.str();
- mf->AddDefinition("CMAKE_SYSTEM_VERSION",
- windowsVersionString.str().c_str());
- #endif
- // Read the DetermineSystem file
- std::string systemFile = mf->GetModulesFile("CMakeDetermineSystem.cmake");
- mf->ReadListFile(0, systemFile.c_str());
- // load the CMakeSystem.cmake from the binary directory
- // this file is configured by the CMakeDetermineSystem.cmake file
- fpath = rootBin;
- fpath += "/CMakeSystem.cmake";
- mf->ReadListFile(0,fpath.c_str());
- }
- std::map<cmStdString, bool> needTestLanguage;
- // foreach language
- // load the CMakeDetermine(LANG)Compiler.cmake file to find
- // the compiler
- for(std::vector<std::string>::const_iterator l = languages.begin();
- l != languages.end(); ++l)
- {
- const char* lang = l->c_str();
- if(*l == "NONE")
- {
- this->SetLanguageEnabled("NONE", mf);
- continue;
- }
- bool determineLanguageCalled = false;
- std::string loadedLang = "CMAKE_";
- loadedLang += lang;
- loadedLang += "_COMPILER_LOADED";
- // If the existing build tree was already configured with this
- // version of CMake then try to load the configured file first
- // to avoid duplicate compiler tests.
- unsigned int cacheMajor = mf->GetCacheMajorVersion();
- unsigned int cacheMinor = mf->GetCacheMinorVersion();
- unsigned int selfMajor = cmMakefile::GetMajorVersion();
- unsigned int selfMinor = cmMakefile::GetMinorVersion();
- if((this->CMakeInstance->GetIsInTryCompile() ||
- (selfMajor == cacheMajor && selfMinor == cacheMinor))
- && !mf->GetDefinition(loadedLang.c_str()))
- {
- fpath = rootBin;
- fpath += "/CMake";
- fpath += lang;
- fpath += "Compiler.cmake";
- if(cmSystemTools::FileExists(fpath.c_str()))
- {
- if(!mf->ReadListFile(0,fpath.c_str()))
- {
- cmSystemTools::Error("Could not find cmake module file:",
- fpath.c_str());
- }
- // if this file was found then the language was already determined
- // to be working
- needTestLanguage[lang] = false;
- this->SetLanguageEnabled(lang, mf);
- // this can only be called after loading CMake(LANG)Compiler.cmake
- }
- }
-
- if(!this->GetLanguageEnabled(lang) )
- {
- if (this->CMakeInstance->GetIsInTryCompile())
- {
- cmSystemTools::Error("This should not have happen. "
- "If you see this message, you are probably "
- "using a broken CMakeLists.txt file or a "
- "problematic release of CMake");
- }
- // if the CMake(LANG)Compiler.cmake file was not found then
- // load CMakeDetermine(LANG)Compiler.cmake
- std::string determineCompiler = "CMakeDetermine";
- determineCompiler += lang;
- determineCompiler += "Compiler.cmake";
- std::string determineFile =
- mf->GetModulesFile(determineCompiler.c_str());
- if(!mf->ReadListFile(0,determineFile.c_str()))
- {
- cmSystemTools::Error("Could not find cmake module file:",
- determineFile.c_str());
- }
- needTestLanguage[lang] = true;
- determineLanguageCalled = true;
- // Some generators like visual studio should not use the env variables
- // So the global generator can specify that in this variable
- if(!mf->GetDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV"))
- {
- // put ${CMake_(LANG)_COMPILER_ENV_VAR}=${CMAKE_(LANG)_COMPILER
- // into the environment, in case user scripts want to run
- // configure, or sub cmakes
- std::string compilerName = "CMAKE_";
- compilerName += lang;
- compilerName += "_COMPILER";
- std::string compilerEnv = "CMAKE_";
- compilerEnv += lang;
- compilerEnv += "_COMPILER_ENV_VAR";
- std::string envVar = mf->GetRequiredDefinition(compilerEnv.c_str());
- std::string envVarValue =
- mf->GetRequiredDefinition(compilerName.c_str());
- std::string env = envVar;
- env += "=";
- env += envVarValue;
- cmSystemTools::PutEnv(env.c_str());
- }
- } // end if(!this->GetLanguageEnabled(lang) )
- // if determineLanguage was called then load the file it
- // configures CMake(LANG)Compiler.cmake
- if(determineLanguageCalled)
- {
- fpath = rootBin;
- fpath += "/CMake";
- fpath += lang;
- fpath += "Compiler.cmake";
- if(!mf->ReadListFile(0,fpath.c_str()))
- {
- cmSystemTools::Error("Could not find cmake module file:",
- fpath.c_str());
- }
- this->SetLanguageEnabled(lang, mf);
- // this can only be called after loading CMake(LANG)Compiler.cmake
- // the language must be enabled for try compile to work, but we do
- // not know if it is a working compiler yet so set the test language
- // flag
- needTestLanguage[lang] = true;
- }
- } // end loop over languages
-
- // **** Load the system specific information if not yet loaded
- if (!mf->GetDefinition("CMAKE_SYSTEM_SPECIFIC_INFORMATION_LOADED"))
- {
- fpath = mf->GetModulesFile("CMakeSystemSpecificInformation.cmake");
- if(!mf->ReadListFile(0,fpath.c_str()))
- {
- cmSystemTools::Error("Could not find cmake module file:",
- fpath.c_str());
- }
- }
- // loop over languages again loading CMake(LANG)Information.cmake
- //
- for(std::vector<std::string>::const_iterator l = languages.begin();
- l != languages.end(); ++l)
- {
- const char* lang = l->c_str();
- if(*l == "NONE")
- {
- this->SetLanguageEnabled("NONE", mf);
- continue;
- }
- std::string langLoadedVar = "CMAKE_";
- langLoadedVar += lang;
- langLoadedVar += "_INFORMATION_LOADED";
- if (!mf->GetDefinition(langLoadedVar.c_str()))
- {
- fpath = "CMake";
- fpath += lang;
- fpath += "Information.cmake";
- fpath = mf->GetModulesFile(fpath.c_str());
- if(!mf->ReadListFile(0,fpath.c_str()))
- {
- cmSystemTools::Error("Could not find cmake module file:",
- fpath.c_str());
- }
- }
- // Test the compiler for the language just setup
- // At this point we should have enough info for a try compile
- // which is used in the backward stuff
- // If the language is untested then test it now with a try compile.
- if(needTestLanguage[lang])
- {
- if (!this->CMakeInstance->GetIsInTryCompile())
- {
- std::string testLang = "CMakeTest";
- testLang += lang;
- testLang += "Compiler.cmake";
- std::string ifpath = mf->GetModulesFile(testLang.c_str());
- if(!mf->ReadListFile(0,ifpath.c_str()))
- {
- cmSystemTools::Error("Could not find cmake module file:",
- ifpath.c_str());
- }
- std::string compilerWorks = "CMAKE_";
- compilerWorks += lang;
- compilerWorks += "_COMPILER_WORKS";
- // if the compiler did not work, then remove the
- // CMake(LANG)Compiler.cmake file so that it will get tested the
- // next time cmake is run
- if(!mf->IsOn(compilerWorks.c_str()))
- {
- fpath = rootBin;
- fpath += "/CMake";
- fpath += lang;
- fpath += "Compiler.cmake";
- cmSystemTools::RemoveFile(fpath.c_str());
- }
- else
- {
- // load backwards compatibility stuff for C and CXX
- // for old versions of CMake ListFiles C and CXX had some
- // backwards compatibility files they have to load
- // These files have a bunch of try compiles in them so
- // should only be done
- const char* versionValue
- = mf->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
- if (atof(versionValue) <= 1.4)
- {
- if(strcmp(lang, "C") == 0)
- {
- ifpath =
- mf->GetModulesFile("CMakeBackwardCompatibilityC.cmake");
- mf->ReadListFile(0,ifpath.c_str());
- }
- if(strcmp(lang, "CXX") == 0)
- {
- ifpath =
- mf->GetModulesFile("CMakeBackwardCompatibilityCXX.cmake");
- mf->ReadListFile(0,ifpath.c_str());
- }
- }
- }
- } // end if in try compile
- } // end need test language
- } // end for each language
-
- // Now load files that can override any settings on the platform or for
- // the project First load the project compatibility file if it is in
- // cmake
- std::string projectCompatibility = mf->GetDefinition("CMAKE_ROOT");
- projectCompatibility += "/Modules/";
- projectCompatibility += mf->GetDefinition("PROJECT_NAME");
- projectCompatibility += "Compatibility.cmake";
- if(cmSystemTools::FileExists(projectCompatibility.c_str()))
- {
- mf->ReadListFile(0,projectCompatibility.c_str());
- }
- }
- const char* cmGlobalGenerator
- ::GetLanguageOutputExtensionForLanguage(const char* lang)
- {
- if(!lang)
- {
- return "";
- }
- if(this->LanguageToOutputExtension.count(lang) > 0)
- {
- return this->LanguageToOutputExtension[lang].c_str();
- }
- return "";
- }
- const char* cmGlobalGenerator
- ::GetLanguageOutputExtensionFromExtension(const char* ext)
- {
- if(!ext)
- {
- return "";
- }
- const char* lang = this->GetLanguageFromExtension(ext);
- if(!lang || *lang == 0)
- {
- // if no language is found then check to see if it is already an
- // ouput extension for some language. In that case it should be ignored
- // and in this map, so it will not be compiled but will just be used.
- if(this->OutputExtensions.count(ext))
- {
- return ext;
- }
- }
- return this->GetLanguageOutputExtensionForLanguage(lang);
- }
- const char* cmGlobalGenerator::GetLanguageFromExtension(const char* ext)
- {
- // if there is an extension and it starts with . then move past the
- // . because the extensions are not stored with a . in the map
- if(ext && *ext == '.')
- {
- ++ext;
- }
- if(this->ExtensionToLanguage.count(ext) > 0)
- {
- return this->ExtensionToLanguage[ext].c_str();
- }
- return 0;
- }
- void cmGlobalGenerator::SetLanguageEnabled(const char* l, cmMakefile* mf)
- {
- if(this->LanguageEnabled.count(l) > 0)
- {
- return;
- }
- std::string outputExtensionVar = std::string("CMAKE_") +
- std::string(l) + std::string("_OUTPUT_EXTENSION");
- const char* outputExtension = mf->GetDefinition(outputExtensionVar.c_str());
- if(outputExtension)
- {
- this->LanguageToOutputExtension[l] = outputExtension;
- this->OutputExtensions[outputExtension] = outputExtension;
- if(outputExtension[0] == '.')
- {
- this->OutputExtensions[outputExtension+1] = outputExtension+1;
- }
- }
-
- std::string linkerPrefVar = std::string("CMAKE_") +
- std::string(l) + std::string("_LINKER_PREFERENCE");
- const char* linkerPref = mf->GetDefinition(linkerPrefVar.c_str());
- if(!linkerPref)
- {
- linkerPref = "None";
- }
- this->LanguageToLinkerPreference[l] = linkerPref;
-
- std::string extensionsVar = std::string("CMAKE_") +
- std::string(l) + std::string("_SOURCE_FILE_EXTENSIONS");
- std::string ignoreExtensionsVar = std::string("CMAKE_") +
- std::string(l) + std::string("_IGNORE_EXTENSIONS");
- std::string ignoreExts = mf->GetSafeDefinition(ignoreExtensionsVar.c_str());
- std::string exts = mf->GetSafeDefinition(extensionsVar.c_str());
- std::vector<std::string> extensionList;
- cmSystemTools::ExpandListArgument(exts, extensionList);
- for(std::vector<std::string>::iterator i = extensionList.begin();
- i != extensionList.end(); ++i)
- {
- this->ExtensionToLanguage[*i] = l;
- }
- cmSystemTools::ExpandListArgument(ignoreExts, extensionList);
- for(std::vector<std::string>::iterator i = extensionList.begin();
- i != extensionList.end(); ++i)
- {
- this->IgnoreExtensions[*i] = true;
- }
- this->LanguageEnabled[l] = true;
- }
- bool cmGlobalGenerator::IgnoreFile(const char* l)
- {
- if(this->GetLanguageFromExtension(l))
- {
- return false;
- }
- return (this->IgnoreExtensions.count(l) > 0);
- }
- bool cmGlobalGenerator::GetLanguageEnabled(const char* l)
- {
- return (this->LanguageEnabled.count(l) > 0);
- }
- void cmGlobalGenerator::ClearEnabledLanguages()
- {
- this->LanguageEnabled.clear();
- }
- void cmGlobalGenerator::Configure()
- {
- // Delete any existing cmLocalGenerators
- unsigned int i;
- for (i = 0; i < this->LocalGenerators.size(); ++i)
- {
- delete this->LocalGenerators[i];
- }
- this->LocalGenerators.clear();
- this->TotalTargets.clear();
-
- // start with this directory
- cmLocalGenerator *lg = this->CreateLocalGenerator();
- this->LocalGenerators.push_back(lg);
- // set the Start directories
- lg->GetMakefile()->SetStartDirectory
- (this->CMakeInstance->GetStartDirectory());
- lg->GetMakefile()->SetStartOutputDirectory
- (this->CMakeInstance->GetStartOutputDirectory());
- lg->GetMakefile()->MakeStartDirectoriesCurrent();
-
- // now do it
- lg->Configure();
-
- // update the cache entry for the number of local generators, this is used
- // for progress
- char num[100];
- sprintf(num,"%d",static_cast<int>(this->LocalGenerators.size()));
- this->GetCMakeInstance()->AddCacheEntry
- ("CMAKE_NUMBER_OF_LOCAL_GENERATORS", num,
- "number of local generators", cmCacheManager::INTERNAL);
-
- std::set<cmStdString> notFoundMap;
- // after it is all done do a ConfigureFinalPass
- cmCacheManager* manager = 0;
- for (i = 0; i < this->LocalGenerators.size(); ++i)
- {
- manager = this->LocalGenerators[i]->GetMakefile()->GetCacheManager();
- this->LocalGenerators[i]->ConfigureFinalPass();
- cmTargets & targets =
- this->LocalGenerators[i]->GetMakefile()->GetTargets();
- for (cmTargets::iterator l = targets.begin();
- l != targets.end(); l++)
- {
- cmTarget::LinkLibraryVectorType libs = l->second.GetLinkLibraries();
- for(cmTarget::LinkLibraryVectorType::iterator lib = libs.begin();
- lib != libs.end(); ++lib)
- {
- if(lib->first.size() > 9 &&
- cmSystemTools::IsNOTFOUND(lib->first.c_str()))
- {
- std::string varName = lib->first.substr(0, lib->first.size()-9);
- notFoundMap.insert(varName);
- }
- }
- std::vector<std::string>& incs =
- this->LocalGenerators[i]->GetMakefile()->GetIncludeDirectories();
-
- for( std::vector<std::string>::iterator lib = incs.begin();
- lib != incs.end(); ++lib)
- {
- if(lib->size() > 9 &&
- cmSystemTools::IsNOTFOUND(lib->c_str()))
- {
- std::string varName = lib->substr(0, lib->size()-9);
- notFoundMap.insert(varName);
- }
- }
- this->CMakeInstance->UpdateProgress
- ("Configuring", 0.9f+0.1f*(i+1.0f)/this->LocalGenerators.size());
- this->LocalGenerators[i]->GetMakefile()->CheckInfiniteLoops();
- }
- }
- if(notFoundMap.size())
- {
- std::string notFoundVars;
- for(std::set<cmStdString>::iterator ii = notFoundMap.begin();
- ii != notFoundMap.end(); ++ii)
- {
- notFoundVars += *ii;
- if(manager)
- {
- cmCacheManager::CacheIterator it =
- manager->GetCacheIterator(ii->c_str());
- if(it.GetPropertyAsBool("ADVANCED"))
- {
- notFoundVars += " (ADVANCED)";
- }
- }
- notFoundVars += "\n";
- }
- cmSystemTools::Error("This project requires some variables to be set,\n"
- "and cmake can not find them.\n"
- "Please set the following variables:\n",
- notFoundVars.c_str());
- }
- // at this point this->LocalGenerators has been filled,
- // so create the map from project name to vector of local generators
- this->FillProjectMap();
- if ( !this->CMakeInstance->GetScriptMode() )
- {
- this->CMakeInstance->UpdateProgress("Configuring done", -1);
- }
- }
- void cmGlobalGenerator::Generate()
- {
- // For each existing cmLocalGenerator
- unsigned int i;
- // Consolidate global targets
- cmTargets globalTargets;
- this->CreateDefaultGlobalTargets(&globalTargets);
- for (i = 0; i < this->LocalGenerators.size(); ++i)
- {
- cmTargets* targets =
- &(this->LocalGenerators[i]->GetMakefile()->GetTargets());
- cmTargets::iterator tarIt;
- for ( tarIt = targets->begin(); tarIt != targets->end(); ++ tarIt )
- {
- if ( tarIt->second.GetType() == cmTarget::GLOBAL_TARGET )
- {
- globalTargets[tarIt->first] = tarIt->second;
- }
- }
- }
- for (i = 0; i < this->LocalGenerators.size(); ++i)
- {
- cmTargets* targets =
- &(this->LocalGenerators[i]->GetMakefile()->GetTargets());
- cmTargets::iterator tit;
- for ( tit = globalTargets.begin(); tit != globalTargets.end(); ++ tit )
- {
- (*targets)[tit->first] = tit->second;
- }
- }
- // Compute the manifest of main targets generated.
- for (i = 0; i < this->LocalGenerators.size(); ++i)
- {
- this->LocalGenerators[i]->GenerateTargetManifest(this->TargetManifest);
- }
- // Generate project files
- for (i = 0; i < this->LocalGenerators.size(); ++i)
- {
- this->LocalGenerators[i]->Generate();
- this->LocalGenerators[i]->GenerateInstallRules();
- this->LocalGenerators[i]->GenerateTestFiles();
- this->CMakeInstance->UpdateProgress("Generating",
- (i+1.0f)/this->LocalGenerators.size());
- }
- this->CMakeInstance->UpdateProgress("Generating done", -1);
- }
- int cmGlobalGenerator::TryCompile(const char *srcdir, const char *bindir,
- const char *projectName,
- const char *target,
- std::string *output, cmMakefile *mf)
- {
- std::string makeCommand = this->CMakeInstance->
- GetCacheManager()->GetCacheValue("CMAKE_MAKE_PROGRAM");
- if(makeCommand.size() == 0)
- {
- cmSystemTools::Error(
- "Generator cannot find the appropriate make command.");
- return 1;
- }
- std::string newTarget;
- if (target && strlen(target))
- {
- newTarget += target;
- #if 0
- #if defined(_WIN32) || defined(__CYGWIN__)
- std::string tmp = target;
- // if the target does not already end in . something
- // then assume .exe
- if(tmp.size() < 4 || tmp[tmp.size()-4] != '.')
- {
- newTarget += ".exe";
- }
- #endif // WIN32
- #endif
- }
- const char* config = mf->GetDefinition("CMAKE_TRY_COMPILE_CONFIGURATION");
- return this->Build(srcdir,bindir,projectName,
- newTarget.c_str(),
- output,makeCommand.c_str(),config,false);
- }
- std::string cmGlobalGenerator
- ::GenerateBuildCommand(const char* makeProgram, const char *projectName,
- const char* additionalOptions, const char *targetName,
- const char* config, bool ignoreErrors)
- {
- // Project name and config are not used yet.
- (void)projectName;
- (void)config;
- std::string makeCommand =
- cmSystemTools::ConvertToUnixOutputPath(makeProgram);
- // Since we have full control over the invocation of nmake, let us
- // make it quiet.
- if ( strcmp(this->GetName(), "NMake Makefiles") == 0 )
- {
- makeCommand += " /NOLOGO ";
- }
- if ( ignoreErrors )
- {
- makeCommand += " -i";
- }
- if ( additionalOptions )
- {
- makeCommand += " ";
- makeCommand += additionalOptions;
- }
- if ( targetName )
- {
- makeCommand += " ";
- makeCommand += targetName;
- }
- return makeCommand;
- }
-
- int cmGlobalGenerator::Build(
- const char *, const char *bindir,
- const char *projectName, const char *target,
- std::string *output,
- const char *makeCommandCSTR,
- const char *config,
- bool clean)
- {
- *output += "\nTesting TryCompileWithoutMakefile\n";
-
- /**
- * Run an executable command and put the stdout in output.
- */
- std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
- cmSystemTools::ChangeDirectory(bindir);
- int retVal;
- int timeout = cmGlobalGenerator::s_TryCompileTimeout;
- bool hideconsole = cmSystemTools::GetRunCommandHideConsole();
- cmSystemTools::SetRunCommandHideConsole(true);
- // should we do a clean first?
- if (clean)
- {
- std::string cleanCommand =
- this->GenerateBuildCommand(makeCommandCSTR, projectName,
- 0, "clean", config, false);
- if (!cmSystemTools::RunSingleCommand(cleanCommand.c_str(), output,
- &retVal, 0, false, timeout))
- {
- cmSystemTools::SetRunCommandHideConsole(hideconsole);
- cmSystemTools::Error("Generator: execution of make clean failed.");
- if (output)
- {
- *output += "\nGenerator: execution of make clean failed.\n";
- }
-
- // return to the original directory
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 1;
- }
- }
-
- // now build
- std::string makeCommand =
- this->GenerateBuildCommand(makeCommandCSTR, projectName,
- 0, target, config, false);
-
- if (!cmSystemTools::RunSingleCommand(makeCommand.c_str(), output,
- &retVal, 0, false, timeout))
- {
- cmSystemTools::SetRunCommandHideConsole(hideconsole);
- cmSystemTools::Error
- ("Generator: execution of make failed. Make command was: ",
- makeCommand.c_str());
- if (output)
- {
- *output += "\nGenerator: execution of make failed. Make command was: "
- + makeCommand + "\n";
- }
-
- // return to the original directory
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 1;
- }
- cmSystemTools::SetRunCommandHideConsole(hideconsole);
-
- // The SGI MipsPro 7.3 compiler does not return an error code when
- // the source has a #error in it! This is a work-around for such
- // compilers.
- if((retVal == 0) && (output->find("#error") != std::string::npos))
- {
- retVal = 1;
- }
-
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return retVal;
- }
- void cmGlobalGenerator::AddLocalGenerator(cmLocalGenerator *lg)
- {
- this->LocalGenerators.push_back(lg);
- // update progress
- // estimate how many lg there will be
- const char *numGenC =
- this->CMakeInstance->GetCacheManager()->GetCacheValue
- ("CMAKE_NUMBER_OF_LOCAL_GENERATORS");
-
- if (!numGenC)
- {
- return;
- }
-
- int numGen = atoi(numGenC);
- float prog = 0.9f*this->LocalGenerators.size()/numGen;
- if (prog > 0.9f)
- {
- prog = 0.9f;
- }
- this->CMakeInstance->UpdateProgress("Configuring", prog);
- }
- void cmGlobalGenerator::AddInstallComponent(const char* component)
- {
- if(component && *component)
- {
- this->InstallComponents.insert(component);
- }
- }
- cmLocalGenerator *cmGlobalGenerator::CreateLocalGenerator()
- {
- cmLocalGenerator *lg = new cmLocalGenerator;
- lg->SetGlobalGenerator(this);
- return lg;
- }
- void cmGlobalGenerator::EnableLanguagesFromGenerator(cmGlobalGenerator *gen )
- {
- std::string cfp = gen->GetCMakeInstance()->GetHomeOutputDirectory();
- cfp += "/CMakeFiles";
- this->SetConfiguredFilesPath(cfp.c_str());
- const char* make =
- gen->GetCMakeInstance()->GetCacheDefinition("CMAKE_MAKE_PROGRAM");
- this->GetCMakeInstance()->AddCacheEntry("CMAKE_MAKE_PROGRAM", make,
- "make program",
- cmCacheManager::FILEPATH);
- // copy the enabled languages
- this->LanguageEnabled = gen->LanguageEnabled;
- this->ExtensionToLanguage = gen->ExtensionToLanguage;
- this->IgnoreExtensions = gen->IgnoreExtensions;
- this->LanguageToOutputExtension = gen->LanguageToOutputExtension;
- this->LanguageToLinkerPreference = gen->LanguageToLinkerPreference;
- this->OutputExtensions = gen->OutputExtensions;
- }
- //----------------------------------------------------------------------------
- void cmGlobalGenerator::GetDocumentation(cmDocumentationEntry& entry) const
- {
- entry.name = this->GetName();
- entry.brief = "";
- entry.full = "";
- }
- bool cmGlobalGenerator::IsExcluded(cmLocalGenerator* root,
- cmLocalGenerator* gen)
- {
- cmLocalGenerator* cur = gen->GetParent();
- while(cur && cur != root)
- {
- if(cur->GetExcludeAll())
- {
- return true;
- }
- cur = cur->GetParent();
- }
- return false;
- }
- void cmGlobalGenerator::GetEnabledLanguages(std::vector<std::string>& lang)
- {
- for(std::map<cmStdString, bool>::iterator i =
- this->LanguageEnabled.begin(); i != this->LanguageEnabled.end(); ++i)
- {
- lang.push_back(i->first);
- }
- }
- const char* cmGlobalGenerator::GetLinkerPreference(const char* lang)
- {
- if(this->LanguageToLinkerPreference.count(lang))
- {
- return this->LanguageToLinkerPreference[lang].c_str();
- }
- return "None";
- }
- void cmGlobalGenerator::FillProjectMap()
- {
- this->ProjectMap.clear(); // make sure we start with a clean map
- unsigned int i;
- for(i = 0; i < this->LocalGenerators.size(); ++i)
- {
- // for each local generator add all projects
- cmLocalGenerator *lg = this->LocalGenerators[i];
- std::string name;
- do
- {
- if (name != lg->GetMakefile()->GetProjectName())
- {
- name = lg->GetMakefile()->GetProjectName();
- this->ProjectMap[name].push_back(this->LocalGenerators[i]);
- }
- lg = lg->GetParent();
- }
- while (lg);
- }
- }
- ///! Find a local generator by its startdirectory
- cmLocalGenerator* cmGlobalGenerator::FindLocalGenerator(const char* start_dir)
- {
- std::vector<cmLocalGenerator*>* gens = &this->LocalGenerators;
- for(unsigned int i = 0; i < gens->size(); ++i)
- {
- std::string sd = (*gens)[i]->GetMakefile()->GetStartDirectory();
- if (sd == start_dir)
- {
- return (*gens)[i];
- }
- }
- return 0;
- }
- cmTarget* cmGlobalGenerator::FindTarget(const char* project,
- const char* name)
- {
- // if project specific
- if(project)
- {
- std::vector<cmLocalGenerator*>* gens = &this->ProjectMap[project];
- for(unsigned int i = 0; i < gens->size(); ++i)
- {
- cmTarget* ret = (*gens)[i]->GetMakefile()->FindTarget(name);
- if(ret)
- {
- return ret;
- }
- }
- }
- // if all projects/directories
- else
- {
- std::map<cmStdString,cmTarget *>::iterator i =
- this->TotalTargets.find(name);
- if (i == this->TotalTargets.end())
- {
- return 0;
- }
- return i->second;
- }
- return 0;
- }
- //----------------------------------------------------------------------------
- void cmGlobalGenerator::ConfigureRelativePaths()
- {
- // The current working directory on Windows cannot be a network
- // path. Therefore relative paths cannot work when the build tree
- // is a network path.
- std::string source = this->CMakeInstance->GetHomeDirectory();
- std::string binary = this->CMakeInstance->GetHomeOutputDirectory();
- if(binary.size() < 2 || binary.substr(0, 2) != "//")
- {
- this->RelativePathTopSource = source;
- this->RelativePathTopBinary = binary;
- }
- else
- {
- this->RelativePathTopSource = "";
- this->RelativePathTopBinary = "";
- }
- }
- //----------------------------------------------------------------------------
- std::string cmGlobalGenerator
- ::ConvertToRelativePath(const std::vector<std::string>& local,
- const char* in_remote)
- {
- // The path should never be quoted.
- assert(in_remote[0] != '\"');
- // The local path should never have a trailing slash.
- assert(local.size() > 0 && !(local[local.size()-1] == ""));
- // If the path is already relative then just return the path.
- if(!cmSystemTools::FileIsFullPath(in_remote))
- {
- return in_remote;
- }
- std::string original = in_remote;
- // Skip conversion if the path and local are not both in the source or both
- // in the binary tree
- std::string local_path = cmSystemTools::JoinPath(local);
- bool should_convert = false;
-
- // is the root in the binary tree?
- if (local_path.size() >= this->RelativePathTopBinary.size() &&
- cmSystemTools::ComparePath
- (local_path.substr(0, this->RelativePathTopBinary.size()).c_str(),
- this->RelativePathTopBinary.c_str()))
- {
- // is the source also in the binary tree?
- if (original.size() >= this->RelativePathTopBinary.size() &&
- cmSystemTools::ComparePath
- (original.substr(0, this->RelativePathTopBinary.size()).c_str(),
- this->RelativePathTopBinary.c_str()))
- {
- should_convert = true;
- }
- }
-
- if (local_path.size() >= this->RelativePathTopSource.size() &&
- cmSystemTools::ComparePath
- (local_path.substr(0, this->RelativePathTopSource.size()).c_str(),
- this->RelativePathTopSource.c_str()))
- {
- // is the source also in the binary tree?
- if (original.size() >= this->RelativePathTopSource.size() &&
- cmSystemTools::ComparePath
- (original.substr(0, this->RelativePathTopSource.size()).c_str(),
- this->RelativePathTopSource.c_str()))
- {
- should_convert = true;
- }
- }
-
- if (!should_convert)
- {
- return in_remote;
- }
-
- // Identify the longest shared path component between the remote
- // path and the local path.
- std::vector<std::string> remote;
- cmSystemTools::SplitPath(in_remote, remote);
- unsigned int common=0;
- while(common < remote.size() &&
- common < local.size() &&
- cmSystemTools::ComparePath(remote[common].c_str(),
- local[common].c_str()))
- {
- ++common;
- }
- // If no part of the path is in common then return the full path.
- if(common == 0)
- {
- return in_remote;
- }
- // If the entire path is in common then just return a ".".
- if(common == remote.size() &&
- common == local.size())
- {
- return ".";
- }
- // If the entire path is in common except for a trailing slash then
- // just return a "./".
- if(common+1 == remote.size() &&
- remote[common].size() == 0 &&
- common == local.size())
- {
- return "./";
- }
- // Construct the relative path.
- std::string relative;
- // First add enough ../ to get up to the level of the shared portion
- // of the path. Leave off the trailing slash. Note that the last
- // component of local will never be empty because local should never
- // have a trailing slash.
- for(unsigned int i=common; i < local.size(); ++i)
- {
- relative += "..";
- if(i < local.size()-1)
- {
- relative += "/";
- }
- }
- // Now add the portion of the destination path that is not included
- // in the shared portion of the path. Add a slash the first time
- // only if there was already something in the path. If there was a
- // trailing slash in the input then the last iteration of the loop
- // will add a slash followed by an empty string which will preserve
- // the trailing slash in the output.
- for(unsigned int i=common; i < remote.size(); ++i)
- {
- if(relative.size() > 0)
- {
- relative += "/";
- }
- relative += remote[i];
- }
- // Finally return the path.
- return relative;
- }
- inline std::string removeQuotes(const std::string& s)
- {
- if(s[0] == '\"' && s[s.size()-1] == '\"')
- {
- return s.substr(1, s.size()-2);
- }
- return s;
- }
- void cmGlobalGenerator::SetCMakeInstance(cmake* cm)
- {
- // Store a pointer to the cmake object instance.
- this->CMakeInstance = cm;
- // Setup relative path conversion for the instance.
- this->ConfigureRelativePaths();
- }
- void cmGlobalGenerator::SetupTests()
- {
- std::string ctest = this->LocalGenerators[0]->GetMakefile()->
- GetRequiredDefinition("CMAKE_COMMAND");
- ctest = removeQuotes(ctest);
- ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
- ctest += "/";
- ctest += "ctest";
- ctest += cmSystemTools::GetExecutableExtension();
- if(!cmSystemTools::FileExists(ctest.c_str()))
- {
- ctest = this->LocalGenerators[0]->GetMakefile()->
- GetRequiredDefinition("CMAKE_COMMAND");
- ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
- ctest += "/Debug/";
- ctest += "ctest";
- ctest += cmSystemTools::GetExecutableExtension();
- }
- if(!cmSystemTools::FileExists(ctest.c_str()))
- {
- ctest = this->LocalGenerators[0]->GetMakefile()->
- GetRequiredDefinition("CMAKE_COMMAND");
- ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
- ctest += "/Release/";
- ctest += "ctest";
- ctest += cmSystemTools::GetExecutableExtension();
- }
- // if we found ctest
- if (cmSystemTools::FileExists(ctest.c_str()))
- {
- // Create a full path filename for output Testfile
- std::string fname;
- fname = this->CMakeInstance->GetStartOutputDirectory();
- fname += "/";
- if ( this->LocalGenerators[0]->GetMakefile()->IsSet("CTEST_NEW_FORMAT") )
- {
- fname += "CTestTestfile.txt";
- }
- else
- {
- fname += "DartTestfile.txt";
- }
- // Add run_test only if any tests are foun
- size_t total_tests = 0;
- size_t i;
- for (i = 0; i < this->LocalGenerators.size(); ++i)
- {
- total_tests +=
- this->LocalGenerators[i]->GetMakefile()->GetTests()->size();
- }
- // If the file doesn't exist, then ENABLE_TESTING hasn't been run
- if (total_tests > 0)
- {
- const char* no_output = 0;
- const char* no_working_dir = 0;
- std::vector<std::string> no_depends;
- std::map<cmStdString, std::vector<cmLocalGenerator*> >::iterator it;
- for(it = this->ProjectMap.begin(); it!= this->ProjectMap.end(); ++it)
- {
- std::vector<cmLocalGenerator*>& gen = it->second;
- // add the RUN_TESTS to the first local generator of each project
- if(gen.size())
- {
- cmMakefile* mf = gen[0]->GetMakefile();
- if(const char* outDir = mf->GetDefinition("CMAKE_CFG_INTDIR"))
- {
- mf->AddUtilityCommand("RUN_TESTS", false, no_output, no_depends,
- no_working_dir,
- ctest.c_str(), "-C", outDir);
- }
- }
- }
- }
- }
- }
- void cmGlobalGenerator::CreateDefaultGlobalTargets(cmTargets* targets)
- {
- cmMakefile* mf = this->LocalGenerators[0]->GetMakefile();
- const char* cmakeCfgIntDir = this->GetCMakeCFGInitDirectory();
- const char* cmakeCommand = mf->GetRequiredDefinition("CMAKE_COMMAND");
- // CPack
- cmCustomCommandLines cpackCommandLines;
- std::vector<std::string> depends;
- cmCustomCommandLine singleLine;
- cpackCommandLines.erase(cpackCommandLines.begin(), cpackCommandLines.end());
- singleLine.erase(singleLine.begin(), singleLine.end());
- depends.erase(depends.begin(), depends.end());
- singleLine.push_back(this->GetCMakeInstance()->GetCPackCommand());
- if ( cmakeCfgIntDir && *cmakeCfgIntDir && cmakeCfgIntDir[0] != '.' )
- {
- singleLine.push_back("-C");
- singleLine.push_back(mf->GetDefinition("CMAKE_CFG_INTDIR"));
- }
- singleLine.push_back("--config");
- std::string configFile = mf->GetStartOutputDirectory();;
- configFile += "/CPackConfig.cmake";
- singleLine.push_back(configFile);
- cpackCommandLines.push_back(singleLine);
- if ( this->GetPreinstallTargetName() )
- {
- depends.push_back("preinstall");
- }
- if(cmSystemTools::FileExists(configFile.c_str()))
- {
- (*targets)[this->GetPackageTargetName()]
- = this->CreateGlobalTarget(this->GetPackageTargetName(),
- "Run CPack packaging tool...",
- &cpackCommandLines, depends);
- }
- // CPack source
- const char* packageSourceTargetName = this->GetPackageSourceTargetName();
- if ( packageSourceTargetName )
- {
- cpackCommandLines.erase(cpackCommandLines.begin(),
- cpackCommandLines.end());
- singleLine.erase(singleLine.begin(), singleLine.end());
- depends.erase(depends.begin(), depends.end());
- singleLine.push_back(this->GetCMakeInstance()->GetCPackCommand());
- singleLine.push_back("--config");
- configFile = mf->GetStartOutputDirectory();;
- configFile += "/CPackSourceConfig.cmake";
- if(cmSystemTools::FileExists(configFile.c_str()))
- {
- singleLine.push_back(configFile);
- cpackCommandLines.push_back(singleLine);
- (*targets)[packageSourceTargetName]
- = this->CreateGlobalTarget(packageSourceTargetName,
- "Run CPack packaging tool for source...",
- &cpackCommandLines, depends);
- }
- }
- // Test
- if(mf->IsOn("CMAKE_TESTING_ENABLED"))
- {
- cpackCommandLines.erase(cpackCommandLines.begin(),
- cpackCommandLines.end());
- singleLine.erase(singleLine.begin(), singleLine.end());
- depends.erase(depends.begin(), depends.end());
- singleLine.push_back(this->GetCMakeInstance()->GetCTestCommand());
- if(cmakeCfgIntDir && *cmakeCfgIntDir && cmakeCfgIntDir[0] != '.')
- {
- singleLine.push_back("-C");
- singleLine.push_back(mf->GetDefinition("CMAKE_CFG_INTDIR"));
- }
- singleLine.push_back("--force-new-ctest-process");
- cpackCommandLines.push_back(singleLine);
- (*targets)[this->GetTestTargetName()]
- = this->CreateGlobalTarget(this->GetTestTargetName(),
- "Running tests...", &cpackCommandLines, depends);
- }
- //Edit Cache
- const char* editCacheTargetName = this->GetEditCacheTargetName();
- if ( editCacheTargetName )
- {
- cpackCommandLines.erase(cpackCommandLines.begin(),
- cpackCommandLines.end());
- singleLine.erase(singleLine.begin(), singleLine.end());
- depends.erase(depends.begin(), depends.end());
- // Use CMAKE_EDIT_COMMAND for the edit_cache rule if it is defined.
- // Otherwise default to the interactive command-line interface.
- if(mf->GetDefinition("CMAKE_EDIT_COMMAND"))
- {
- singleLine.push_back(mf->GetDefinition("CMAKE_EDIT_COMMAND"));
- singleLine.push_back("-H$(CMAKE_SOURCE_DIR)");
- singleLine.push_back("-B$(CMAKE_BINARY_DIR)");
- cpackCommandLines.push_back(singleLine);
- (*targets)[editCacheTargetName] =
- this->CreateGlobalTarget(
- editCacheTargetName, "Running CMake cache editor...",
- &cpackCommandLines, depends);
- }
- else
- {
- singleLine.push_back(cmakeCommand);
- singleLine.push_back("-i");
- singleLine.push_back(".");
- cpackCommandLines.push_back(singleLine);
- (*targets)[editCacheTargetName] =
- this->CreateGlobalTarget(
- editCacheTargetName,
- "Running interactive CMake command-line interface...",
- &cpackCommandLines, depends);
- }
- }
- //Rebuild Cache
- const char* rebuildCacheTargetName = this->GetRebuildCacheTargetName();
- if ( rebuildCacheTargetName )
- {
- cpackCommandLines.erase(cpackCommandLines.begin(),
- cpackCommandLines.end());
- singleLine.erase(singleLine.begin(), singleLine.end());
- depends.erase(depends.begin(), depends.end());
- singleLine.push_back(cmakeCommand);
- singleLine.push_back("-H$(CMAKE_SOURCE_DIR)");
- singleLine.push_back("-B$(CMAKE_BINARY_DIR)");
- cpackCommandLines.push_back(singleLine);
- (*targets)[rebuildCacheTargetName] =
- this->CreateGlobalTarget(
- rebuildCacheTargetName, "Running CMake to regenerate build system...",
- &cpackCommandLines, depends);
- }
- //Install
- std::string cmd;
- cpackCommandLines.erase(cpackCommandLines.begin(), cpackCommandLines.end());
- singleLine.erase(singleLine.begin(), singleLine.end());
- depends.erase(depends.begin(), depends.end());
- if ( this->GetPreinstallTargetName() )
- {
- depends.push_back(this->GetPreinstallTargetName());
- }
- else
- {
- const char* noall =
- mf->GetDefinition("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY");
- if(!noall || cmSystemTools::IsOff(noall))
- {
- depends.push_back(this->GetAllTargetName());
- }
- }
- if(mf->GetDefinition("CMake_BINARY_DIR"))
- {
- // We are building CMake itself. We cannot use the original
- // executable to install over itself.
- cmd = mf->GetDefinition("EXECUTABLE_OUTPUT_PATH");
- if(cmakeCfgIntDir && *cmakeCfgIntDir && cmakeCfgIntDir[0] != '.')
- {
- cmd += "/";
- cmd += cmakeCfgIntDir;
- }
- cmd += "/cmake";
- }
- else
- {
- cmd = cmakeCommand;
- }
- singleLine.push_back(cmd.c_str());
- if ( cmakeCfgIntDir && *cmakeCfgIntDir && cmakeCfgIntDir[0] != '.' )
- {
- std::string cfgArg = "-DBUILD_TYPE=";
- cfgArg += mf->GetDefinition("CMAKE_CFG_INTDIR");
- singleLine.push_back(cfgArg);
- }
- singleLine.push_back("-P");
- singleLine.push_back("cmake_install.cmake");
- cpackCommandLines.push_back(singleLine);
- (*targets)[this->GetInstallTargetName()] =
- this->CreateGlobalTarget(
- this->GetInstallTargetName(), "Install the project...",
- &cpackCommandLines, depends);
- }
- cmTarget cmGlobalGenerator::CreateGlobalTarget(
- const char* name, const char* message,
- const cmCustomCommandLines* commandLines,
- std::vector<std::string> depends,
- bool depends_on_all /* = false */)
- {
- // Package
- cmTarget target;
- target.SetType(cmTarget::GLOBAL_TARGET, name);
- target.SetInAll(false);
- std::vector<std::string> no_outputs;
- std::vector<std::string> no_depends;
- // Store the custom command in the target.
- cmCustomCommand cc(no_outputs, no_depends, *commandLines, 0, 0);
- target.GetPostBuildCommands().push_back(cc);
- target.SetProperty("EchoString", message);
- if ( depends_on_all )
- {
- target.AddUtility("all");
- }
- std::vector<std::string>::iterator dit;
- for ( dit = depends.begin(); dit != depends.end(); ++ dit )
- {
- target.AddUtility(dit->c_str());
- }
- return target;
- }
- //----------------------------------------------------------------------------
- void cmGlobalGenerator::AppendDirectoryForConfig(const char*, const char*,
- const char*, std::string&)
- {
- // Subclasses that support multiple configurations should implement
- // this method to append the subdirectory for the given build
- // configuration.
- }
- //----------------------------------------------------------------------------
- void cmGlobalGenerator::CheckMultipleOutputs(cmMakefile*, bool)
- {
- // Only certain generators need this check. They define this
- // method.
- }
|