| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file Copyright.txt or https://cmake.org/licensing for details. */
- #include "cmGlobalGenerator.h"
- #include "cmsys/Directory.hxx"
- #include "cmsys/FStream.hxx"
- #include <algorithm>
- #include <assert.h>
- #include <iterator>
- #include <sstream>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #if defined(_WIN32) && !defined(__CYGWIN__)
- #include <windows.h>
- #endif
- #include "cmAlgorithms.h"
- #include "cmCPackPropertiesGenerator.h"
- #include "cmComputeTargetDepends.h"
- #include "cmCustomCommand.h"
- #include "cmCustomCommandLines.h"
- #include "cmExportBuildFileGenerator.h"
- #include "cmExternalMakefileProjectGenerator.h"
- #include "cmGeneratedFileStream.h"
- #include "cmGeneratorExpression.h"
- #include "cmGeneratorTarget.h"
- #include "cmInstallGenerator.h"
- #include "cmLinkLineComputer.h"
- #include "cmLocalGenerator.h"
- #include "cmMSVC60LinkLineComputer.h"
- #include "cmMakefile.h"
- #include "cmOutputConverter.h"
- #include "cmPolicies.h"
- #include "cmQtAutoGeneratorInitializer.h"
- #include "cmSourceFile.h"
- #include "cmState.h"
- #include "cmStateDirectory.h"
- #include "cmStateTypes.h"
- #include "cmVersion.h"
- #include "cmWorkingDirectory.h"
- #include "cmake.h"
- #if defined(CMAKE_BUILD_WITH_CMAKE)
- #include "cmCryptoHash.h"
- #include "cm_jsoncpp_value.h"
- #include "cm_jsoncpp_writer.h"
- #endif
- #if defined(_MSC_VER) && _MSC_VER >= 1800
- #define KWSYS_WINDOWS_DEPRECATED_GetVersionEx
- #endif
- const std::string kCMAKE_PLATFORM_INFO_INITIALIZED =
- "CMAKE_PLATFORM_INFO_INITIALIZED";
- class cmInstalledFile;
- bool cmTarget::StrictTargetComparison::operator()(cmTarget const* t1,
- cmTarget const* t2) const
- {
- int nameResult = strcmp(t1->GetName().c_str(), t2->GetName().c_str());
- if (nameResult == 0) {
- return strcmp(t1->GetMakefile()->GetCurrentBinaryDirectory(),
- t2->GetMakefile()->GetCurrentBinaryDirectory()) < 0;
- }
- return nameResult < 0;
- }
- cmGlobalGenerator::cmGlobalGenerator(cmake* cm)
- : CMakeInstance(cm)
- {
- // By default the .SYMBOLIC dependency is not needed on symbolic rules.
- this->NeedSymbolicMark = false;
- // by default use the native paths
- this->ForceUnixPaths = false;
- // By default do not try to support color.
- this->ToolSupportsColor = false;
- // By default do not use link scripts.
- this->UseLinkScript = false;
- // Whether an install target is needed.
- this->InstallTargetEnabled = false;
- // how long to let try compiles run
- this->TryCompileTimeout = 0;
- this->ExtraGenerator = CM_NULLPTR;
- this->CurrentMakefile = CM_NULLPTR;
- this->TryCompileOuterMakefile = CM_NULLPTR;
- this->ConfigureDoneCMP0026AndCMP0024 = false;
- this->FirstTimeProgress = 0.0f;
- cm->GetState()->SetIsGeneratorMultiConfig(false);
- cm->GetState()->SetMinGWMake(false);
- cm->GetState()->SetMSYSShell(false);
- cm->GetState()->SetNMake(false);
- cm->GetState()->SetWatcomWMake(false);
- cm->GetState()->SetWindowsShell(false);
- cm->GetState()->SetWindowsVSIDE(false);
- }
- cmGlobalGenerator::~cmGlobalGenerator()
- {
- this->ClearGeneratorMembers();
- delete this->ExtraGenerator;
- }
- bool cmGlobalGenerator::SetGeneratorPlatform(std::string const& p,
- cmMakefile* mf)
- {
- if (p.empty()) {
- return true;
- }
- std::ostringstream e;
- /* clang-format off */
- e <<
- "Generator\n"
- " " << this->GetName() << "\n"
- "does not support platform specification, but platform\n"
- " " << p << "\n"
- "was specified.";
- /* clang-format on */
- mf->IssueMessage(cmake::FATAL_ERROR, e.str());
- return false;
- }
- bool cmGlobalGenerator::SetGeneratorToolset(std::string const& ts,
- cmMakefile* mf)
- {
- if (ts.empty()) {
- return true;
- }
- std::ostringstream e;
- /* clang-format off */
- e <<
- "Generator\n"
- " " << this->GetName() << "\n"
- "does not support toolset specification, but toolset\n"
- " " << ts << "\n"
- "was specified.";
- /* clang-format on */
- mf->IssueMessage(cmake::FATAL_ERROR, e.str());
- return false;
- }
- std::string cmGlobalGenerator::SelectMakeProgram(
- const std::string& inMakeProgram, const std::string& makeDefault) const
- {
- std::string makeProgram = inMakeProgram;
- if (cmSystemTools::IsOff(makeProgram.c_str())) {
- const char* makeProgramCSTR =
- this->CMakeInstance->GetCacheDefinition("CMAKE_MAKE_PROGRAM");
- if (cmSystemTools::IsOff(makeProgramCSTR)) {
- makeProgram = makeDefault;
- } else {
- makeProgram = makeProgramCSTR;
- }
- if (cmSystemTools::IsOff(makeProgram.c_str()) && !makeProgram.empty()) {
- makeProgram = "CMAKE_MAKE_PROGRAM-NOTFOUND";
- }
- }
- return makeProgram;
- }
- void cmGlobalGenerator::ResolveLanguageCompiler(const std::string& lang,
- cmMakefile* mf,
- bool optional) const
- {
- std::string langComp = "CMAKE_";
- langComp += lang;
- langComp += "_COMPILER";
- if (!mf->GetDefinition(langComp)) {
- if (!optional) {
- cmSystemTools::Error(langComp.c_str(), " not set, after EnableLanguage");
- }
- return;
- }
- const char* name = mf->GetRequiredDefinition(langComp);
- std::string path;
- if (!cmSystemTools::FileIsFullPath(name)) {
- path = cmSystemTools::FindProgram(name);
- } else {
- path = name;
- }
- if (!optional && (path.empty() || !cmSystemTools::FileExists(path))) {
- return;
- }
- const char* cname =
- this->GetCMakeInstance()->GetState()->GetInitializedCacheValue(langComp);
- std::string changeVars;
- if (cname && !optional) {
- std::string cnameString;
- if (!cmSystemTools::FileIsFullPath(cname)) {
- cnameString = cmSystemTools::FindProgram(cname);
- } else {
- cnameString = cname;
- }
- std::string pathString = path;
- // get rid of potentially multiple slashes:
- cmSystemTools::ConvertToUnixSlashes(cnameString);
- cmSystemTools::ConvertToUnixSlashes(pathString);
- if (cnameString != pathString) {
- const char* cvars =
- this->GetCMakeInstance()->GetState()->GetGlobalProperty(
- "__CMAKE_DELETE_CACHE_CHANGE_VARS_");
- if (cvars) {
- changeVars += cvars;
- changeVars += ";";
- }
- changeVars += langComp;
- changeVars += ";";
- changeVars += cname;
- this->GetCMakeInstance()->GetState()->SetGlobalProperty(
- "__CMAKE_DELETE_CACHE_CHANGE_VARS_", changeVars.c_str());
- }
- }
- }
- void cmGlobalGenerator::AddBuildExportSet(cmExportBuildFileGenerator* gen)
- {
- this->BuildExportSets[gen->GetMainExportFileName()] = gen;
- }
- void cmGlobalGenerator::AddBuildExportExportSet(
- cmExportBuildFileGenerator* gen)
- {
- this->BuildExportSets[gen->GetMainExportFileName()] = gen;
- this->BuildExportExportSets[gen->GetMainExportFileName()] = gen;
- }
- bool cmGlobalGenerator::GenerateImportFile(const std::string& file)
- {
- std::map<std::string, cmExportBuildFileGenerator*>::iterator it =
- this->BuildExportSets.find(file);
- if (it != this->BuildExportSets.end()) {
- bool result = it->second->GenerateImportFile();
- if (!this->ConfigureDoneCMP0026AndCMP0024) {
- for (std::vector<cmMakefile*>::const_iterator mit =
- this->Makefiles.begin();
- mit != this->Makefiles.end(); ++mit) {
- (*mit)->RemoveExportBuildFileGeneratorCMP0024(it->second);
- }
- }
- delete it->second;
- it->second = CM_NULLPTR;
- this->BuildExportSets.erase(it);
- return result;
- }
- return false;
- }
- void cmGlobalGenerator::ForceLinkerLanguages()
- {
- }
- bool cmGlobalGenerator::IsExportedTargetsFile(
- const std::string& filename) const
- {
- const std::map<std::string, cmExportBuildFileGenerator*>::const_iterator it =
- this->BuildExportSets.find(filename);
- if (it == this->BuildExportSets.end()) {
- return false;
- }
- return this->BuildExportExportSets.find(filename) ==
- this->BuildExportExportSets.end();
- }
- // Find the make program for the generator, required for try compiles
- bool cmGlobalGenerator::FindMakeProgram(cmMakefile* mf)
- {
- if (this->FindMakeProgramFile.empty()) {
- cmSystemTools::Error(
- "Generator implementation error, "
- "all generators must specify this->FindMakeProgramFile");
- return false;
- }
- if (!mf->GetDefinition("CMAKE_MAKE_PROGRAM") ||
- cmSystemTools::IsOff(mf->GetDefinition("CMAKE_MAKE_PROGRAM"))) {
- std::string setMakeProgram =
- mf->GetModulesFile(this->FindMakeProgramFile.c_str());
- if (!setMakeProgram.empty()) {
- mf->ReadListFile(setMakeProgram.c_str());
- }
- }
- if (!mf->GetDefinition("CMAKE_MAKE_PROGRAM") ||
- cmSystemTools::IsOff(mf->GetDefinition("CMAKE_MAKE_PROGRAM"))) {
- std::ostringstream 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 false;
- }
- 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(' ') != std::string::npos) {
- std::string dir;
- std::string file;
- cmSystemTools::SplitProgramPath(makeProgram, dir, file);
- std::string saveFile = file;
- cmSystemTools::GetShortPath(makeProgram, makeProgram);
- cmSystemTools::SplitProgramPath(makeProgram, dir, file);
- makeProgram = dir;
- makeProgram += "/";
- makeProgram += saveFile;
- mf->AddCacheDefinition("CMAKE_MAKE_PROGRAM", makeProgram.c_str(),
- "make program", cmStateEnums::FILEPATH);
- }
- return true;
- }
- bool cmGlobalGenerator::CheckLanguages(
- std::vector<std::string> const& /* languages */, cmMakefile* /* mf */) const
- {
- return true;
- }
- // 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 IF CMAKE_SYSTEM
- // not set
- // CMakeSystem.cmake - configured file created by
- // CMakeDetermineSystem.cmake IF CMAKE_SYSTEM_LOADED
- // CMakeSystemSpecificInitialize.cmake
- // - includes Platform/${CMAKE_SYSTEM_NAME}-Initialize.cmake
- // 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
- // (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, bool optional)
- {
- if (languages.empty()) {
- cmSystemTools::Error("EnableLanguage must have a lang specified!");
- cmSystemTools::SetFatalErrorOccured();
- return;
- }
- std::set<std::string> cur_languages(languages.begin(), languages.end());
- for (std::set<std::string>::iterator li = cur_languages.begin();
- li != cur_languages.end(); ++li) {
- if (!this->LanguagesInProgress.insert(*li).second) {
- std::ostringstream e;
- e << "Language '" << *li << "' is currently being enabled. "
- "Recursive call not allowed.";
- mf->IssueMessage(cmake::FATAL_ERROR, e.str());
- cmSystemTools::SetFatalErrorOccured();
- return;
- }
- }
- if (this->TryCompileOuterMakefile) {
- // In a try-compile we can only enable languages provided by caller.
- for (std::vector<std::string>::const_iterator li = languages.begin();
- li != languages.end(); ++li) {
- if (*li == "NONE") {
- this->SetLanguageEnabled("NONE", mf);
- } else {
- const char* lang = li->c_str();
- if (this->LanguagesReady.find(lang) == this->LanguagesReady.end()) {
- std::ostringstream e;
- e << "The test project needs language " << lang
- << " which is not enabled.";
- this->TryCompileOuterMakefile->IssueMessage(cmake::FATAL_ERROR,
- e.str());
- cmSystemTools::SetFatalErrorOccured();
- return;
- }
- }
- }
- }
- bool fatalError = false;
- mf->AddDefinition("RUN_CONFIGURE", true);
- std::string rootBin = this->CMakeInstance->GetHomeOutputDirectory();
- rootBin += cmake::GetCMakeFilesDirectory();
- // 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.empty()) {
- rootBin = this->ConfiguredFilesPath;
- }
- rootBin += "/";
- rootBin += cmVersion::GetCMakeVersion();
- // set the dir for parent files so they can be used by modules
- mf->AddDefinition("CMAKE_PLATFORM_INFO_DIR", rootBin.c_str());
- if (!this->CMakeInstance->GetIsInTryCompile()) {
- // Keep a mark in the cache to indicate that we've initialized the
- // platform information directory. If the platform information
- // directory exists but the mark is missing then CMakeCache.txt
- // has been removed or replaced without also removing the CMakeFiles/
- // directory. In this case remove the platform information directory
- // so that it will be re-initialized and the relevant information
- // restored in the cache.
- if (cmSystemTools::FileIsDirectory(rootBin) &&
- !mf->IsOn(kCMAKE_PLATFORM_INFO_INITIALIZED)) {
- cmSystemTools::RemoveADirectory(rootBin);
- }
- this->GetCMakeInstance()->AddCacheEntry(
- kCMAKE_PLATFORM_INFO_INITIALIZED, "1",
- "Platform information initialized", cmStateEnums::INTERNAL);
- }
- // find and make sure CMAKE_MAKE_PROGRAM is defined
- if (!this->FindMakeProgram(mf)) {
- return;
- }
- if (!this->CheckLanguages(languages, mf)) {
- return;
- }
- // try and load the CMakeSystem.cmake if it is there
- std::string fpath = rootBin;
- bool const readCMakeSystem = !mf->GetDefinition("CMAKE_SYSTEM_LOADED");
- if (readCMakeSystem) {
- fpath += "/CMakeSystem.cmake";
- if (cmSystemTools::FileExists(fpath.c_str())) {
- mf->ReadListFile(fpath.c_str());
- }
- }
- // Load the CMakeDetermineSystem.cmake file and find out
- // what platform we are running on
- if (!mf->GetDefinition("CMAKE_SYSTEM")) {
- #if defined(_WIN32) && !defined(__CYGWIN__)
- /* Windows version number data. */
- OSVERSIONINFOEXW osviex;
- ZeroMemory(&osviex, sizeof(osviex));
- osviex.dwOSVersionInfoSize = sizeof(osviex);
- #ifdef KWSYS_WINDOWS_DEPRECATED_GetVersionEx
- #pragma warning(push)
- #pragma warning(disable : 4996)
- #endif
- GetVersionExW((OSVERSIONINFOW*)&osviex);
- #ifdef KWSYS_WINDOWS_DEPRECATED_GetVersionEx
- #pragma warning(pop)
- #endif
- std::ostringstream windowsVersionString;
- windowsVersionString << osviex.dwMajorVersion << "."
- << osviex.dwMinorVersion << "."
- << osviex.dwBuildNumber;
- windowsVersionString.str();
- mf->AddDefinition("CMAKE_HOST_SYSTEM_VERSION",
- windowsVersionString.str().c_str());
- #endif
- // Read the DetermineSystem file
- std::string systemFile = mf->GetModulesFile("CMakeDetermineSystem.cmake");
- mf->ReadListFile(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(fpath.c_str());
- }
- if (readCMakeSystem) {
- // Tell the generator about the target system.
- std::string system = mf->GetSafeDefinition("CMAKE_SYSTEM_NAME");
- if (!this->SetSystemName(system, mf)) {
- cmSystemTools::SetFatalErrorOccured();
- return;
- }
- // Tell the generator about the platform, if any.
- std::string platform = mf->GetSafeDefinition("CMAKE_GENERATOR_PLATFORM");
- if (!this->SetGeneratorPlatform(platform, mf)) {
- cmSystemTools::SetFatalErrorOccured();
- return;
- }
- // Tell the generator about the toolset, if any.
- std::string toolset = mf->GetSafeDefinition("CMAKE_GENERATOR_TOOLSET");
- if (!this->SetGeneratorToolset(toolset, mf)) {
- cmSystemTools::SetFatalErrorOccured();
- return;
- }
- }
- // **** Load the system specific initialization if not yet loaded
- if (!mf->GetDefinition("CMAKE_SYSTEM_SPECIFIC_INITIALIZE_LOADED")) {
- fpath = mf->GetModulesFile("CMakeSystemSpecificInitialize.cmake");
- if (!mf->ReadListFile(fpath.c_str())) {
- cmSystemTools::Error("Could not find cmake module file: "
- "CMakeSystemSpecificInitialize.cmake");
- }
- }
- std::map<std::string, bool> needTestLanguage;
- std::map<std::string, bool> needSetLanguageEnabledMaps;
- // 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();
- needSetLanguageEnabledMaps[lang] = false;
- if (*l == "NONE") {
- this->SetLanguageEnabled("NONE", mf);
- continue;
- }
- std::string loadedLang = "CMAKE_";
- loadedLang += lang;
- loadedLang += "_COMPILER_LOADED";
- if (!mf->GetDefinition(loadedLang)) {
- fpath = rootBin;
- fpath += "/CMake";
- fpath += lang;
- fpath += "Compiler.cmake";
- // 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.
- if (cmSystemTools::FileExists(fpath.c_str())) {
- if (!mf->ReadListFile(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->SetLanguageEnabledFlag(lang, mf);
- needSetLanguageEnabledMaps[lang] = true;
- // 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 happened. "
- "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(determineFile.c_str())) {
- cmSystemTools::Error("Could not find cmake module file: ",
- determineCompiler.c_str());
- }
- if (cmSystemTools::GetFatalErrorOccured()) {
- return;
- }
- needTestLanguage[lang] = 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);
- std::string envVarValue = mf->GetRequiredDefinition(compilerName);
- std::string env = envVar;
- env += "=";
- env += envVarValue;
- cmSystemTools::PutEnv(env);
- }
- // if determineLanguage was called then load the file it
- // configures CMake(LANG)Compiler.cmake
- fpath = rootBin;
- fpath += "/CMake";
- fpath += lang;
- fpath += "Compiler.cmake";
- if (!mf->ReadListFile(fpath.c_str())) {
- cmSystemTools::Error("Could not find cmake module file: ",
- fpath.c_str());
- }
- this->SetLanguageEnabledFlag(lang, mf);
- needSetLanguageEnabledMaps[lang] = true;
- // 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 if(!this->GetLanguageEnabled(lang) )
- } // 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(fpath.c_str())) {
- cmSystemTools::Error("Could not find cmake module file: "
- "CMakeSystemSpecificInformation.cmake");
- }
- }
- // 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;
- }
- // Check that the compiler was found.
- std::string compilerName = "CMAKE_";
- compilerName += lang;
- compilerName += "_COMPILER";
- std::string compilerEnv = "CMAKE_";
- compilerEnv += lang;
- compilerEnv += "_COMPILER_ENV_VAR";
- std::ostringstream noCompiler;
- const char* compilerFile = mf->GetDefinition(compilerName);
- if (!compilerFile || !*compilerFile ||
- cmSystemTools::IsNOTFOUND(compilerFile)) {
- /* clang-format off */
- noCompiler <<
- "No " << compilerName << " could be found.\n"
- ;
- /* clang-format on */
- } else if (strcmp(lang, "RC") != 0 && strcmp(lang, "ASM_MASM") != 0) {
- if (!cmSystemTools::FileIsFullPath(compilerFile)) {
- /* clang-format off */
- noCompiler <<
- "The " << compilerName << ":\n"
- " " << compilerFile << "\n"
- "is not a full path and was not found in the PATH.\n"
- ;
- /* clang-format on */
- } else if (!cmSystemTools::FileExists(compilerFile)) {
- /* clang-format off */
- noCompiler <<
- "The " << compilerName << ":\n"
- " " << compilerFile << "\n"
- "is not a full path to an existing compiler tool.\n"
- ;
- /* clang-format on */
- }
- }
- if (!noCompiler.str().empty()) {
- // Skip testing this language since the compiler is not found.
- needTestLanguage[lang] = false;
- if (!optional) {
- // The compiler was not found and it is not optional. Remove
- // CMake(LANG)Compiler.cmake so we try again next time CMake runs.
- std::string compilerLangFile = rootBin;
- compilerLangFile += "/CMake";
- compilerLangFile += lang;
- compilerLangFile += "Compiler.cmake";
- cmSystemTools::RemoveFile(compilerLangFile);
- if (!this->CMakeInstance->GetIsInTryCompile()) {
- this->PrintCompilerAdvice(noCompiler, lang,
- mf->GetDefinition(compilerEnv));
- mf->IssueMessage(cmake::FATAL_ERROR, noCompiler.str());
- fatalError = true;
- }
- }
- }
- std::string langLoadedVar = "CMAKE_";
- langLoadedVar += lang;
- langLoadedVar += "_INFORMATION_LOADED";
- if (!mf->GetDefinition(langLoadedVar)) {
- fpath = "CMake";
- fpath += lang;
- fpath += "Information.cmake";
- std::string informationFile = mf->GetModulesFile(fpath.c_str());
- if (informationFile.empty()) {
- cmSystemTools::Error("Could not find cmake module file: ",
- fpath.c_str());
- } else if (!mf->ReadListFile(informationFile.c_str())) {
- cmSystemTools::Error("Could not process cmake module file: ",
- informationFile.c_str());
- }
- }
- if (needSetLanguageEnabledMaps[lang]) {
- this->SetLanguageEnabledMaps(lang, mf);
- }
- this->LanguagesReady.insert(lang);
- // Test the compiler for the language just setup
- // (but only if a compiler has been actually found)
- // 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(ifpath.c_str())) {
- cmSystemTools::Error("Could not find cmake module file: ",
- testLang.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)) {
- std::string compilerLangFile = rootBin;
- compilerLangFile += "/CMake";
- compilerLangFile += lang;
- compilerLangFile += "Compiler.cmake";
- cmSystemTools::RemoveFile(compilerLangFile);
- }
- } // end if in try compile
- } // end need test language
- // Store the shared library flags so that we can satisfy CMP0018
- std::string sharedLibFlagsVar = "CMAKE_SHARED_LIBRARY_";
- sharedLibFlagsVar += lang;
- sharedLibFlagsVar += "_FLAGS";
- const char* sharedLibFlags = mf->GetSafeDefinition(sharedLibFlagsVar);
- if (sharedLibFlags) {
- this->LanguageToOriginalSharedLibFlags[lang] = sharedLibFlags;
- }
- // Translate compiler ids for compatibility.
- this->CheckCompilerIdCompatibility(mf, lang);
- } // 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 = cmSystemTools::GetCMakeRoot();
- projectCompatibility += "/Modules/";
- projectCompatibility += mf->GetSafeDefinition("PROJECT_NAME");
- projectCompatibility += "Compatibility.cmake";
- if (cmSystemTools::FileExists(projectCompatibility.c_str())) {
- mf->ReadListFile(projectCompatibility.c_str());
- }
- // Inform any extra generator of the new language.
- if (this->ExtraGenerator) {
- this->ExtraGenerator->EnableLanguage(languages, mf, false);
- }
- if (fatalError) {
- cmSystemTools::SetFatalErrorOccured();
- }
- for (std::set<std::string>::iterator li = cur_languages.begin();
- li != cur_languages.end(); ++li) {
- this->LanguagesInProgress.erase(*li);
- }
- }
- void cmGlobalGenerator::PrintCompilerAdvice(std::ostream& os,
- std::string const& lang,
- const char* envVar) const
- {
- // Subclasses override this method if they do not support this advice.
- os << "Tell CMake where to find the compiler by setting ";
- if (envVar) {
- os << "either the environment variable \"" << envVar << "\" or ";
- }
- os << "the CMake cache entry CMAKE_" << lang
- << "_COMPILER "
- "to the full path to the compiler, or to the compiler name "
- "if it is in the PATH.";
- }
- void cmGlobalGenerator::CheckCompilerIdCompatibility(
- cmMakefile* mf, std::string const& lang) const
- {
- std::string compilerIdVar = "CMAKE_" + lang + "_COMPILER_ID";
- const char* compilerId = mf->GetDefinition(compilerIdVar);
- if (!compilerId) {
- return;
- }
- if (strcmp(compilerId, "AppleClang") == 0) {
- switch (mf->GetPolicyStatus(cmPolicies::CMP0025)) {
- case cmPolicies::WARN:
- if (!this->CMakeInstance->GetIsInTryCompile() &&
- mf->PolicyOptionalWarningEnabled("CMAKE_POLICY_WARNING_CMP0025")) {
- std::ostringstream w;
- /* clang-format off */
- w << cmPolicies::GetPolicyWarning(cmPolicies::CMP0025) << "\n"
- "Converting " << lang <<
- " compiler id \"AppleClang\" to \"Clang\" for compatibility."
- ;
- /* clang-format on */
- mf->IssueMessage(cmake::AUTHOR_WARNING, w.str());
- }
- CM_FALLTHROUGH;
- case cmPolicies::OLD:
- // OLD behavior is to convert AppleClang to Clang.
- mf->AddDefinition(compilerIdVar, "Clang");
- break;
- case cmPolicies::REQUIRED_IF_USED:
- case cmPolicies::REQUIRED_ALWAYS:
- mf->IssueMessage(
- cmake::FATAL_ERROR,
- cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0025));
- case cmPolicies::NEW:
- // NEW behavior is to keep AppleClang.
- break;
- }
- }
- if (strcmp(compilerId, "QCC") == 0) {
- switch (mf->GetPolicyStatus(cmPolicies::CMP0047)) {
- case cmPolicies::WARN:
- if (!this->CMakeInstance->GetIsInTryCompile() &&
- mf->PolicyOptionalWarningEnabled("CMAKE_POLICY_WARNING_CMP0047")) {
- std::ostringstream w;
- /* clang-format off */
- w << cmPolicies::GetPolicyWarning(cmPolicies::CMP0047) << "\n"
- "Converting " << lang <<
- " compiler id \"QCC\" to \"GNU\" for compatibility."
- ;
- /* clang-format on */
- mf->IssueMessage(cmake::AUTHOR_WARNING, w.str());
- }
- CM_FALLTHROUGH;
- case cmPolicies::OLD:
- // OLD behavior is to convert QCC to GNU.
- mf->AddDefinition(compilerIdVar, "GNU");
- if (lang == "C") {
- mf->AddDefinition("CMAKE_COMPILER_IS_GNUCC", "1");
- } else if (lang == "CXX") {
- mf->AddDefinition("CMAKE_COMPILER_IS_GNUCXX", "1");
- }
- break;
- case cmPolicies::REQUIRED_IF_USED:
- case cmPolicies::REQUIRED_ALWAYS:
- mf->IssueMessage(
- cmake::FATAL_ERROR,
- cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0047));
- CM_FALLTHROUGH;
- case cmPolicies::NEW:
- // NEW behavior is to keep QCC.
- break;
- }
- }
- }
- std::string cmGlobalGenerator::GetLanguageOutputExtension(
- cmSourceFile const& source) const
- {
- const std::string& lang = source.GetLanguage();
- if (!lang.empty()) {
- std::map<std::string, std::string>::const_iterator it =
- this->LanguageToOutputExtension.find(lang);
- if (it != this->LanguageToOutputExtension.end()) {
- return it->second;
- }
- } else {
- // 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.
- std::string const& ext = source.GetExtension();
- if (!ext.empty()) {
- if (this->OutputExtensions.count(ext)) {
- return ext;
- }
- }
- }
- return "";
- }
- std::string cmGlobalGenerator::GetLanguageFromExtension(const char* ext) const
- {
- // 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;
- }
- std::map<std::string, std::string>::const_iterator it =
- this->ExtensionToLanguage.find(ext);
- if (it != this->ExtensionToLanguage.end()) {
- return it->second;
- }
- return "";
- }
- /* SetLanguageEnabled() is now split in two parts:
- at first the enabled-flag is set. This can then be used in EnabledLanguage()
- for checking whether the language is already enabled. After setting this
- flag still the values from the cmake variables have to be copied into the
- internal maps, this is done in SetLanguageEnabledMaps() which is called
- after the system- and compiler specific files have been loaded.
- This split was done originally so that compiler-specific configuration
- files could change the object file extension
- (CMAKE_<LANG>_OUTPUT_EXTENSION) before the CMake variables were copied
- to the C++ maps.
- */
- void cmGlobalGenerator::SetLanguageEnabled(const std::string& l,
- cmMakefile* mf)
- {
- this->SetLanguageEnabledFlag(l, mf);
- this->SetLanguageEnabledMaps(l, mf);
- }
- void cmGlobalGenerator::SetLanguageEnabledFlag(const std::string& l,
- cmMakefile* mf)
- {
- this->CMakeInstance->GetState()->SetLanguageEnabled(l);
- // Fill the language-to-extension map with the current variable
- // settings to make sure it is available for the try_compile()
- // command source file signature. In SetLanguageEnabledMaps this
- // will be done again to account for any compiler- or
- // platform-specific entries.
- this->FillExtensionToLanguageMap(l, mf);
- }
- void cmGlobalGenerator::SetLanguageEnabledMaps(const std::string& l,
- cmMakefile* mf)
- {
- // use LanguageToLinkerPreference to detect whether this functions has
- // run before
- if (this->LanguageToLinkerPreference.find(l) !=
- this->LanguageToLinkerPreference.end()) {
- return;
- }
- std::string linkerPrefVar =
- std::string("CMAKE_") + std::string(l) + std::string("_LINKER_PREFERENCE");
- const char* linkerPref = mf->GetDefinition(linkerPrefVar);
- int preference = 0;
- if (linkerPref) {
- if (sscanf(linkerPref, "%d", &preference) != 1) {
- // backward compatibility: before 2.6 LINKER_PREFERENCE
- // was either "None" or "Preferred", and only the first character was
- // tested. So if there is a custom language out there and it is
- // "Preferred", set its preference high
- if (linkerPref[0] == 'P') {
- preference = 100;
- } else {
- preference = 0;
- }
- }
- }
- if (preference < 0) {
- std::string msg = linkerPrefVar;
- msg += " is negative, adjusting it to 0";
- cmSystemTools::Message(msg.c_str(), "Warning");
- preference = 0;
- }
- this->LanguageToLinkerPreference[l] = preference;
- std::string outputExtensionVar =
- std::string("CMAKE_") + std::string(l) + std::string("_OUTPUT_EXTENSION");
- const char* outputExtension = mf->GetDefinition(outputExtensionVar);
- if (outputExtension) {
- this->LanguageToOutputExtension[l] = outputExtension;
- this->OutputExtensions[outputExtension] = outputExtension;
- if (outputExtension[0] == '.') {
- this->OutputExtensions[outputExtension + 1] = outputExtension + 1;
- }
- }
- // The map was originally filled by SetLanguageEnabledFlag, but
- // since then the compiler- and platform-specific files have been
- // loaded which might have added more entries.
- this->FillExtensionToLanguageMap(l, mf);
- std::string ignoreExtensionsVar =
- std::string("CMAKE_") + std::string(l) + std::string("_IGNORE_EXTENSIONS");
- std::string ignoreExts = mf->GetSafeDefinition(ignoreExtensionsVar);
- std::vector<std::string> extensionList;
- cmSystemTools::ExpandListArgument(ignoreExts, extensionList);
- for (std::vector<std::string>::iterator i = extensionList.begin();
- i != extensionList.end(); ++i) {
- this->IgnoreExtensions[*i] = true;
- }
- }
- void cmGlobalGenerator::FillExtensionToLanguageMap(const std::string& l,
- cmMakefile* mf)
- {
- std::string extensionsVar = std::string("CMAKE_") + std::string(l) +
- std::string("_SOURCE_FILE_EXTENSIONS");
- std::string exts = mf->GetSafeDefinition(extensionsVar);
- 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;
- }
- }
- const char* cmGlobalGenerator::GetGlobalSetting(std::string const& name) const
- {
- assert(!this->Makefiles.empty());
- return this->Makefiles[0]->GetDefinition(name);
- }
- bool cmGlobalGenerator::GlobalSettingIsOn(std::string const& name) const
- {
- assert(!this->Makefiles.empty());
- return this->Makefiles[0]->IsOn(name);
- }
- const char* cmGlobalGenerator::GetSafeGlobalSetting(
- std::string const& name) const
- {
- assert(!this->Makefiles.empty());
- return this->Makefiles[0]->GetSafeDefinition(name);
- }
- bool cmGlobalGenerator::IgnoreFile(const char* ext) const
- {
- if (!this->GetLanguageFromExtension(ext).empty()) {
- return false;
- }
- return (this->IgnoreExtensions.count(ext) > 0);
- }
- bool cmGlobalGenerator::GetLanguageEnabled(const std::string& l) const
- {
- return this->CMakeInstance->GetState()->GetLanguageEnabled(l);
- }
- void cmGlobalGenerator::ClearEnabledLanguages()
- {
- return this->CMakeInstance->GetState()->ClearEnabledLanguages();
- }
- void cmGlobalGenerator::CreateLocalGenerators()
- {
- cmDeleteAll(this->LocalGenerators);
- this->LocalGenerators.clear();
- this->LocalGenerators.reserve(this->Makefiles.size());
- for (std::vector<cmMakefile*>::const_iterator it = this->Makefiles.begin();
- it != this->Makefiles.end(); ++it) {
- this->LocalGenerators.push_back(this->CreateLocalGenerator(*it));
- }
- }
- void cmGlobalGenerator::Configure()
- {
- this->FirstTimeProgress = 0.0f;
- this->ClearGeneratorMembers();
- cmStateSnapshot snapshot = this->CMakeInstance->GetCurrentSnapshot();
- snapshot.GetDirectory().SetCurrentSource(
- this->CMakeInstance->GetHomeDirectory());
- snapshot.GetDirectory().SetCurrentBinary(
- this->CMakeInstance->GetHomeOutputDirectory());
- cmMakefile* dirMf = new cmMakefile(this, snapshot);
- this->Makefiles.push_back(dirMf);
- this->IndexMakefile(dirMf);
- this->BinaryDirectories.insert(
- this->CMakeInstance->GetHomeOutputDirectory());
- // now do it
- this->ConfigureDoneCMP0026AndCMP0024 = false;
- dirMf->Configure();
- dirMf->EnforceDirectoryLevelRules();
- this->ConfigureDoneCMP0026AndCMP0024 = true;
- // Put a copy of each global target in every directory.
- std::vector<GlobalTargetInfo> globalTargets;
- this->CreateDefaultGlobalTargets(globalTargets);
- for (unsigned int i = 0; i < this->Makefiles.size(); ++i) {
- cmMakefile* mf = this->Makefiles[i];
- cmTargets* targets = &(mf->GetTargets());
- for (std::vector<GlobalTargetInfo>::iterator gti = globalTargets.begin();
- gti != globalTargets.end(); ++gti) {
- targets->insert(
- cmTargets::value_type(gti->Name, this->CreateGlobalTarget(*gti, mf)));
- }
- }
- // 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->Makefiles.size()));
- this->GetCMakeInstance()->AddCacheEntry("CMAKE_NUMBER_OF_MAKEFILES", num,
- "number of local generators",
- cmStateEnums::INTERNAL);
- // check for link libraries and include directories containing "NOTFOUND"
- // and for infinite loops
- this->CheckTargetProperties();
- if (this->CMakeInstance->GetWorkingMode() == cmake::NORMAL_MODE) {
- std::ostringstream msg;
- if (cmSystemTools::GetErrorOccuredFlag()) {
- msg << "Configuring incomplete, errors occurred!";
- const char* logs[] = { "CMakeOutput.log", "CMakeError.log", CM_NULLPTR };
- for (const char** log = logs; *log; ++log) {
- std::string f = this->CMakeInstance->GetHomeOutputDirectory();
- f += this->CMakeInstance->GetCMakeFilesDirectory();
- f += "/";
- f += *log;
- if (cmSystemTools::FileExists(f.c_str())) {
- msg << "\nSee also \"" << f << "\".";
- }
- }
- } else {
- msg << "Configuring done";
- }
- this->CMakeInstance->UpdateProgress(msg.str().c_str(), -1);
- }
- }
- void cmGlobalGenerator::CreateGenerationObjects(TargetTypes targetTypes)
- {
- this->CreateLocalGenerators();
- this->CreateGeneratorTargets(targetTypes);
- this->ComputeBuildFileGenerators();
- }
- void cmGlobalGenerator::CreateImportedGenerationObjects(
- cmMakefile* mf, const std::vector<std::string>& targets,
- std::vector<const cmGeneratorTarget*>& exports)
- {
- this->CreateGenerationObjects(ImportedOnly);
- std::vector<cmMakefile*>::iterator mfit =
- std::find(this->Makefiles.begin(), this->Makefiles.end(), mf);
- cmLocalGenerator* lg =
- this->LocalGenerators[std::distance(this->Makefiles.begin(), mfit)];
- for (std::vector<std::string>::const_iterator it = targets.begin();
- it != targets.end(); ++it) {
- cmGeneratorTarget* gt = lg->FindGeneratorTargetToUse(*it);
- if (gt) {
- exports.push_back(gt);
- }
- }
- }
- cmExportBuildFileGenerator* cmGlobalGenerator::GetExportedTargetsFile(
- const std::string& filename) const
- {
- std::map<std::string, cmExportBuildFileGenerator*>::const_iterator it =
- this->BuildExportSets.find(filename);
- return it == this->BuildExportSets.end() ? CM_NULLPTR : it->second;
- }
- void cmGlobalGenerator::AddCMP0042WarnTarget(const std::string& target)
- {
- this->CMP0042WarnTargets.insert(target);
- }
- void cmGlobalGenerator::AddCMP0068WarnTarget(const std::string& target)
- {
- this->CMP0068WarnTargets.insert(target);
- }
- bool cmGlobalGenerator::CheckALLOW_DUPLICATE_CUSTOM_TARGETS() const
- {
- // If the property is not enabled then okay.
- if (!this->CMakeInstance->GetState()->GetGlobalPropertyAsBool(
- "ALLOW_DUPLICATE_CUSTOM_TARGETS")) {
- return true;
- }
- // This generator does not support duplicate custom targets.
- std::ostringstream e;
- e << "This project has enabled the ALLOW_DUPLICATE_CUSTOM_TARGETS "
- << "global property. "
- << "The \"" << this->GetName() << "\" generator does not support "
- << "duplicate custom targets. "
- << "Consider using a Makefiles generator or fix the project to not "
- << "use duplicate target names.";
- cmSystemTools::Error(e.str().c_str());
- return false;
- }
- void cmGlobalGenerator::ComputeBuildFileGenerators()
- {
- for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i) {
- std::vector<cmExportBuildFileGenerator*> gens =
- this->Makefiles[i]->GetExportBuildFileGenerators();
- for (std::vector<cmExportBuildFileGenerator*>::const_iterator it =
- gens.begin();
- it != gens.end(); ++it) {
- (*it)->Compute(this->LocalGenerators[i]);
- }
- }
- }
- bool cmGlobalGenerator::Compute()
- {
- // Some generators track files replaced during the Generate.
- // Start with an empty vector:
- this->FilesReplacedDuringGenerate.clear();
- // clear targets to issue warning CMP0042 for
- this->CMP0042WarnTargets.clear();
- // clear targets to issue warning CMP0068 for
- this->CMP0068WarnTargets.clear();
- // Check whether this generator is allowed to run.
- if (!this->CheckALLOW_DUPLICATE_CUSTOM_TARGETS()) {
- return false;
- }
- this->FinalizeTargetCompileInfo();
- this->CreateGenerationObjects();
- // at this point this->LocalGenerators has been filled,
- // so create the map from project name to vector of local generators
- this->FillProjectMap();
- #ifdef CMAKE_BUILD_WITH_CMAKE
- // Iterate through all targets and set up automoc for those which have
- // the AUTOMOC, AUTOUIC or AUTORCC property set
- std::vector<cmGeneratorTarget const*> autogenTargets =
- this->CreateQtAutoGeneratorsTargets();
- #endif
- unsigned int i;
- // Add generator specific helper commands
- for (i = 0; i < this->LocalGenerators.size(); ++i) {
- this->LocalGenerators[i]->AddHelperCommands();
- }
- // Finalize the set of compile features for each target.
- // FIXME: This turns into calls to cmMakefile::AddRequiredTargetFeature
- // which actually modifies the <lang>_STANDARD target property
- // on the original cmTarget instance. It accumulates features
- // across all configurations. Some refactoring is needed to
- // compute a per-config resulta purely during generation.
- for (i = 0; i < this->LocalGenerators.size(); ++i) {
- if (!this->LocalGenerators[i]->ComputeTargetCompileFeatures()) {
- return false;
- }
- }
- #ifdef CMAKE_BUILD_WITH_CMAKE
- for (std::vector<cmGeneratorTarget const*>::iterator it =
- autogenTargets.begin();
- it != autogenTargets.end(); ++it) {
- cmQtAutoGeneratorInitializer::SetupAutoGenerateTarget(*it);
- }
- #endif
- for (i = 0; i < this->LocalGenerators.size(); ++i) {
- cmMakefile* mf = this->LocalGenerators[i]->GetMakefile();
- std::vector<cmInstallGenerator*>& gens = mf->GetInstallGenerators();
- for (std::vector<cmInstallGenerator*>::const_iterator git = gens.begin();
- git != gens.end(); ++git) {
- (*git)->Compute(this->LocalGenerators[i]);
- }
- }
- this->AddExtraIDETargets();
- // Trace the dependencies, after that no custom commands should be added
- // because their dependencies might not be handled correctly
- for (i = 0; i < this->LocalGenerators.size(); ++i) {
- this->LocalGenerators[i]->TraceDependencies();
- }
- this->ForceLinkerLanguages();
- // Compute the manifest of main targets generated.
- for (i = 0; i < this->LocalGenerators.size(); ++i) {
- this->LocalGenerators[i]->ComputeTargetManifest();
- }
- // Compute the inter-target dependencies.
- if (!this->ComputeTargetDepends()) {
- return false;
- }
- for (i = 0; i < this->LocalGenerators.size(); ++i) {
- this->LocalGenerators[i]->ComputeHomeRelativeOutputPath();
- }
- return true;
- }
- void cmGlobalGenerator::Generate()
- {
- // Create a map from local generator to the complete set of targets
- // it builds by default.
- this->InitializeProgressMarks();
- this->ProcessEvaluationFiles();
- // Generate project files
- for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i) {
- this->SetCurrentMakefile(this->LocalGenerators[i]->GetMakefile());
- this->LocalGenerators[i]->Generate();
- if (!this->LocalGenerators[i]->GetMakefile()->IsOn(
- "CMAKE_SKIP_INSTALL_RULES")) {
- this->LocalGenerators[i]->GenerateInstallRules();
- }
- this->LocalGenerators[i]->GenerateTestFiles();
- this->CMakeInstance->UpdateProgress(
- "Generating", (static_cast<float>(i) + 1.0f) /
- static_cast<float>(this->LocalGenerators.size()));
- }
- this->SetCurrentMakefile(CM_NULLPTR);
- if (!this->GenerateCPackPropertiesFile()) {
- this->GetCMakeInstance()->IssueMessage(
- cmake::FATAL_ERROR, "Could not write CPack properties file.");
- }
- for (std::map<std::string, cmExportBuildFileGenerator*>::iterator it =
- this->BuildExportSets.begin();
- it != this->BuildExportSets.end(); ++it) {
- if (!it->second->GenerateImportFile()) {
- if (!cmSystemTools::GetErrorOccuredFlag()) {
- this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR,
- "Could not write export file.");
- }
- return;
- }
- }
- // Update rule hashes.
- this->CheckRuleHashes();
- this->WriteSummary();
- if (this->ExtraGenerator != CM_NULLPTR) {
- this->ExtraGenerator->Generate();
- }
- if (!this->CMP0042WarnTargets.empty()) {
- std::ostringstream w;
- w << cmPolicies::GetPolicyWarning(cmPolicies::CMP0042) << "\n";
- w << "MACOSX_RPATH is not specified for"
- " the following targets:\n";
- for (std::set<std::string>::iterator iter =
- this->CMP0042WarnTargets.begin();
- iter != this->CMP0042WarnTargets.end(); ++iter) {
- w << " " << *iter << "\n";
- }
- this->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING, w.str());
- }
- if (!this->CMP0068WarnTargets.empty()) {
- std::ostringstream w;
- /* clang-format off */
- w <<
- cmPolicies::GetPolicyWarning(cmPolicies::CMP0068) << "\n"
- "For compatibility with older versions of CMake, the install_name "
- "fields for the following targets are still affected by RPATH "
- "settings:\n"
- ;
- /* clang-format on */
- for (std::set<std::string>::iterator iter =
- this->CMP0068WarnTargets.begin();
- iter != this->CMP0068WarnTargets.end(); ++iter) {
- w << " " << *iter << "\n";
- }
- this->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING, w.str());
- }
- this->CMakeInstance->UpdateProgress("Generating done", -1);
- }
- bool cmGlobalGenerator::ComputeTargetDepends()
- {
- cmComputeTargetDepends ctd(this);
- if (!ctd.Compute()) {
- return false;
- }
- std::vector<cmGeneratorTarget const*> const& targets = ctd.GetTargets();
- for (std::vector<cmGeneratorTarget const*>::const_iterator ti =
- targets.begin();
- ti != targets.end(); ++ti) {
- ctd.GetTargetDirectDepends(*ti, this->TargetDependencies[*ti]);
- }
- return true;
- }
- std::vector<const cmGeneratorTarget*>
- cmGlobalGenerator::CreateQtAutoGeneratorsTargets()
- {
- std::vector<const cmGeneratorTarget*> autogenTargets;
- #ifdef CMAKE_BUILD_WITH_CMAKE
- for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i) {
- std::vector<cmGeneratorTarget*> targets =
- this->LocalGenerators[i]->GetGeneratorTargets();
- std::vector<cmGeneratorTarget*> filteredTargets;
- filteredTargets.reserve(targets.size());
- for (std::vector<cmGeneratorTarget*>::iterator ti = targets.begin();
- ti != targets.end(); ++ti) {
- if ((*ti)->GetType() == cmStateEnums::GLOBAL_TARGET) {
- continue;
- }
- if ((*ti)->GetType() != cmStateEnums::EXECUTABLE &&
- (*ti)->GetType() != cmStateEnums::STATIC_LIBRARY &&
- (*ti)->GetType() != cmStateEnums::SHARED_LIBRARY &&
- (*ti)->GetType() != cmStateEnums::MODULE_LIBRARY &&
- (*ti)->GetType() != cmStateEnums::OBJECT_LIBRARY) {
- continue;
- }
- if ((!(*ti)->GetPropertyAsBool("AUTOMOC") &&
- !(*ti)->GetPropertyAsBool("AUTOUIC") &&
- !(*ti)->GetPropertyAsBool("AUTORCC")) ||
- (*ti)->IsImported()) {
- continue;
- }
- // don't do anything if there is no Qt4 or Qt5Core (which contains moc):
- cmMakefile* mf = (*ti)->Target->GetMakefile();
- std::string qtMajorVersion = mf->GetSafeDefinition("QT_VERSION_MAJOR");
- if (qtMajorVersion == "") {
- qtMajorVersion = mf->GetSafeDefinition("Qt5Core_VERSION_MAJOR");
- }
- if (qtMajorVersion != "4" && qtMajorVersion != "5") {
- continue;
- }
- cmGeneratorTarget* gt = *ti;
- cmQtAutoGeneratorInitializer::InitializeAutogenSources(gt);
- filteredTargets.push_back(gt);
- }
- for (std::vector<cmGeneratorTarget*>::iterator ti =
- filteredTargets.begin();
- ti != filteredTargets.end(); ++ti) {
- cmQtAutoGeneratorInitializer::InitializeAutogenTarget(
- this->LocalGenerators[i], *ti);
- autogenTargets.push_back(*ti);
- }
- }
- #endif
- return autogenTargets;
- }
- cmLinkLineComputer* cmGlobalGenerator::CreateLinkLineComputer(
- cmOutputConverter* outputConverter, cmStateDirectory stateDir) const
- {
- return new cmLinkLineComputer(outputConverter, stateDir);
- }
- cmLinkLineComputer* cmGlobalGenerator::CreateMSVC60LinkLineComputer(
- cmOutputConverter* outputConverter, cmStateDirectory stateDir) const
- {
- return new cmMSVC60LinkLineComputer(outputConverter, stateDir);
- }
- void cmGlobalGenerator::FinalizeTargetCompileInfo()
- {
- std::vector<std::string> const langs =
- this->CMakeInstance->GetState()->GetEnabledLanguages();
- // Construct per-target generator information.
- for (unsigned int i = 0; i < this->Makefiles.size(); ++i) {
- cmMakefile* mf = this->Makefiles[i];
- const cmStringRange noconfig_compile_definitions =
- mf->GetCompileDefinitionsEntries();
- const cmBacktraceRange noconfig_compile_definitions_bts =
- mf->GetCompileDefinitionsBacktraces();
- cmTargets& targets = mf->GetTargets();
- for (cmTargets::iterator ti = targets.begin(); ti != targets.end(); ++ti) {
- cmTarget* t = &ti->second;
- if (t->GetType() == cmStateEnums::GLOBAL_TARGET) {
- continue;
- }
- t->AppendBuildInterfaceIncludes();
- if (t->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
- continue;
- }
- cmBacktraceRange::const_iterator btIt =
- noconfig_compile_definitions_bts.begin();
- for (cmStringRange::const_iterator
- it = noconfig_compile_definitions.begin();
- it != noconfig_compile_definitions.end(); ++it, ++btIt) {
- t->InsertCompileDefinition(*it, *btIt);
- }
- cmPolicies::PolicyStatus polSt =
- mf->GetPolicyStatus(cmPolicies::CMP0043);
- if (polSt == cmPolicies::WARN || polSt == cmPolicies::OLD) {
- std::vector<std::string> configs;
- mf->GetConfigurations(configs);
- for (std::vector<std::string>::const_iterator ci = configs.begin();
- ci != configs.end(); ++ci) {
- std::string defPropName = "COMPILE_DEFINITIONS_";
- defPropName += cmSystemTools::UpperCase(*ci);
- t->AppendProperty(defPropName, mf->GetProperty(defPropName));
- }
- }
- }
- // The standard include directories for each language
- // should be treated as system include directories.
- std::set<std::string> standardIncludesSet;
- for (std::vector<std::string>::const_iterator li = langs.begin();
- li != langs.end(); ++li) {
- std::string const standardIncludesVar =
- "CMAKE_" + *li + "_STANDARD_INCLUDE_DIRECTORIES";
- std::string const standardIncludesStr =
- mf->GetSafeDefinition(standardIncludesVar);
- std::vector<std::string> standardIncludesVec;
- cmSystemTools::ExpandListArgument(standardIncludesStr,
- standardIncludesVec);
- standardIncludesSet.insert(standardIncludesVec.begin(),
- standardIncludesVec.end());
- }
- mf->AddSystemIncludeDirectories(standardIncludesSet);
- }
- }
- void cmGlobalGenerator::CreateGeneratorTargets(
- TargetTypes targetTypes, cmMakefile* mf, cmLocalGenerator* lg,
- std::map<cmTarget*, cmGeneratorTarget*> const& importedMap)
- {
- if (targetTypes == AllTargets) {
- cmTargets& targets = mf->GetTargets();
- for (cmTargets::iterator ti = targets.begin(); ti != targets.end(); ++ti) {
- cmTarget* t = &ti->second;
- cmGeneratorTarget* gt = new cmGeneratorTarget(t, lg);
- lg->AddGeneratorTarget(gt);
- }
- }
- std::vector<cmTarget*> itgts = mf->GetImportedTargets();
- for (std::vector<cmTarget*>::const_iterator j = itgts.begin();
- j != itgts.end(); ++j) {
- lg->AddImportedGeneratorTarget(importedMap.find(*j)->second);
- }
- }
- void cmGlobalGenerator::CreateGeneratorTargets(TargetTypes targetTypes)
- {
- std::map<cmTarget*, cmGeneratorTarget*> importedMap;
- for (unsigned int i = 0; i < this->Makefiles.size(); ++i) {
- cmMakefile* mf = this->Makefiles[i];
- for (std::vector<cmTarget*>::const_iterator j =
- mf->GetOwnedImportedTargets().begin();
- j != mf->GetOwnedImportedTargets().end(); ++j) {
- cmLocalGenerator* lg = this->LocalGenerators[i];
- cmGeneratorTarget* gt = new cmGeneratorTarget(*j, lg);
- lg->AddOwnedImportedGeneratorTarget(gt);
- importedMap[*j] = gt;
- }
- }
- // Construct per-target generator information.
- for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i) {
- this->CreateGeneratorTargets(targetTypes, this->Makefiles[i],
- this->LocalGenerators[i], importedMap);
- }
- }
- void cmGlobalGenerator::ClearGeneratorMembers()
- {
- cmDeleteAll(this->BuildExportSets);
- this->BuildExportSets.clear();
- cmDeleteAll(this->Makefiles);
- this->Makefiles.clear();
- cmDeleteAll(this->LocalGenerators);
- this->LocalGenerators.clear();
- this->ExportSets.clear();
- this->TargetDependencies.clear();
- this->TargetSearchIndex.clear();
- this->GeneratorTargetSearchIndex.clear();
- this->MakefileSearchIndex.clear();
- this->ProjectMap.clear();
- this->RuleHashes.clear();
- this->DirectoryContentMap.clear();
- this->BinaryDirectories.clear();
- }
- void cmGlobalGenerator::ComputeTargetObjectDirectory(
- cmGeneratorTarget* /*unused*/) const
- {
- }
- void cmGlobalGenerator::CheckTargetProperties()
- {
- std::map<std::string, std::string> notFoundMap;
- // std::set<std::string> notFoundMap;
- // after it is all done do a ConfigureFinalPass
- cmState* state = this->GetCMakeInstance()->GetState();
- for (unsigned int i = 0; i < this->Makefiles.size(); ++i) {
- this->Makefiles[i]->ConfigureFinalPass();
- cmTargets& targets = this->Makefiles[i]->GetTargets();
- for (cmTargets::iterator l = targets.begin(); l != targets.end(); l++) {
- if (l->second.GetType() == cmStateEnums::INTERFACE_LIBRARY) {
- continue;
- }
- const cmTarget::LinkLibraryVectorType& libs =
- l->second.GetOriginalLinkLibraries();
- for (cmTarget::LinkLibraryVectorType::const_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);
- if (state->GetCacheEntryPropertyAsBool(varName, "ADVANCED")) {
- varName += " (ADVANCED)";
- }
- std::string text = notFoundMap[varName];
- text += "\n linked by target \"";
- text += l->second.GetName();
- text += "\" in directory ";
- text += this->Makefiles[i]->GetCurrentSourceDirectory();
- notFoundMap[varName] = text;
- }
- }
- std::vector<std::string> incs;
- const char* incDirProp = l->second.GetProperty("INCLUDE_DIRECTORIES");
- if (!incDirProp) {
- continue;
- }
- std::string incDirs = cmGeneratorExpression::Preprocess(
- incDirProp, cmGeneratorExpression::StripAllGeneratorExpressions);
- cmSystemTools::ExpandListArgument(incDirs, incs);
- for (std::vector<std::string>::const_iterator incDir = incs.begin();
- incDir != incs.end(); ++incDir) {
- if (incDir->size() > 9 && cmSystemTools::IsNOTFOUND(incDir->c_str())) {
- std::string varName = incDir->substr(0, incDir->size() - 9);
- if (state->GetCacheEntryPropertyAsBool(varName, "ADVANCED")) {
- varName += " (ADVANCED)";
- }
- std::string text = notFoundMap[varName];
- text += "\n used as include directory in directory ";
- text += this->Makefiles[i]->GetCurrentSourceDirectory();
- notFoundMap[varName] = text;
- }
- }
- }
- this->CMakeInstance->UpdateProgress(
- "Configuring", 0.9f +
- 0.1f * (static_cast<float>(i) + 1.0f) /
- static_cast<float>(this->Makefiles.size()));
- }
- if (!notFoundMap.empty()) {
- std::string notFoundVars;
- for (std::map<std::string, std::string>::const_iterator ii =
- notFoundMap.begin();
- ii != notFoundMap.end(); ++ii) {
- notFoundVars += ii->first;
- notFoundVars += ii->second;
- notFoundVars += "\n";
- }
- cmSystemTools::Error("The following variables are used in this project, "
- "but they are set to NOTFOUND.\n"
- "Please set them or make sure they are set and "
- "tested correctly in the CMake files:\n",
- notFoundVars.c_str());
- }
- }
- int cmGlobalGenerator::TryCompile(const std::string& srcdir,
- const std::string& bindir,
- const std::string& projectName,
- const std::string& target, bool fast,
- std::string& output, cmMakefile* mf)
- {
- // if this is not set, then this is a first time configure
- // and there is a good chance that the try compile stuff will
- // take the bulk of the time, so try and guess some progress
- // by getting closer and closer to 100 without actually getting there.
- if (!this->CMakeInstance->GetState()->GetInitializedCacheValue(
- "CMAKE_NUMBER_OF_MAKEFILES")) {
- // If CMAKE_NUMBER_OF_MAKEFILES is not set
- // we are in the first time progress and we have no
- // idea how long it will be. So, just move 1/10th of the way
- // there each time, and don't go over 95%
- this->FirstTimeProgress += ((1.0f - this->FirstTimeProgress) / 30.0f);
- if (this->FirstTimeProgress > 0.95f) {
- this->FirstTimeProgress = 0.95f;
- }
- this->CMakeInstance->UpdateProgress("Configuring",
- this->FirstTimeProgress);
- }
- std::string newTarget;
- if (!target.empty()) {
- 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
- }
- std::string config =
- mf->GetSafeDefinition("CMAKE_TRY_COMPILE_CONFIGURATION");
- return this->Build(srcdir, bindir, projectName, newTarget, output, "",
- config, false, fast, false, this->TryCompileTimeout);
- }
- void cmGlobalGenerator::GenerateBuildCommand(
- std::vector<std::string>& makeCommand, const std::string& /*unused*/,
- const std::string& /*unused*/, const std::string& /*unused*/,
- const std::string& /*unused*/, const std::string& /*unused*/,
- bool /*unused*/, bool /*unused*/, std::vector<std::string> const& /*unused*/)
- {
- makeCommand.push_back(
- "cmGlobalGenerator::GenerateBuildCommand not implemented");
- }
- int cmGlobalGenerator::Build(const std::string& /*unused*/,
- const std::string& bindir,
- const std::string& projectName,
- const std::string& target, std::string& output,
- const std::string& makeCommandCSTR,
- const std::string& config, bool clean, bool fast,
- bool verbose, double timeout,
- cmSystemTools::OutputOption outputflag,
- std::vector<std::string> const& nativeOptions)
- {
- /**
- * Run an executable command and put the stdout in output.
- */
- cmWorkingDirectory workdir(bindir);
- output += "Change Dir: ";
- output += bindir;
- output += "\n";
- int retVal;
- bool hideconsole = cmSystemTools::GetRunCommandHideConsole();
- cmSystemTools::SetRunCommandHideConsole(true);
- std::string outputBuffer;
- std::string* outputPtr = &outputBuffer;
- std::vector<std::string> makeCommand;
- this->GenerateBuildCommand(makeCommand, makeCommandCSTR, projectName, bindir,
- target, config, fast, verbose, nativeOptions);
- // Workaround to convince VCExpress.exe to produce output.
- if (outputflag == cmSystemTools::OUTPUT_PASSTHROUGH &&
- !makeCommand.empty() &&
- cmSystemTools::LowerCase(
- cmSystemTools::GetFilenameName(makeCommand[0])) == "vcexpress.exe") {
- outputflag = cmSystemTools::OUTPUT_FORWARD;
- }
- // should we do a clean first?
- if (clean) {
- std::vector<std::string> cleanCommand;
- this->GenerateBuildCommand(cleanCommand, makeCommandCSTR, projectName,
- bindir, "clean", config, fast, verbose);
- output += "\nRun Clean Command:";
- output += cmSystemTools::PrintSingleCommand(cleanCommand);
- output += "\n";
- if (!cmSystemTools::RunSingleCommand(cleanCommand, outputPtr, outputPtr,
- &retVal, CM_NULLPTR, outputflag,
- timeout)) {
- cmSystemTools::SetRunCommandHideConsole(hideconsole);
- cmSystemTools::Error("Generator: execution of make clean failed.");
- output += *outputPtr;
- output += "\nGenerator: execution of make clean failed.\n";
- return 1;
- }
- output += *outputPtr;
- }
- // now build
- std::string makeCommandStr = cmSystemTools::PrintSingleCommand(makeCommand);
- output += "\nRun Build Command:";
- output += makeCommandStr;
- output += "\n";
- if (!cmSystemTools::RunSingleCommand(makeCommand, outputPtr, outputPtr,
- &retVal, CM_NULLPTR, outputflag,
- timeout)) {
- cmSystemTools::SetRunCommandHideConsole(hideconsole);
- cmSystemTools::Error(
- "Generator: execution of make failed. Make command was: ",
- makeCommandStr.c_str());
- output += *outputPtr;
- output += "\nGenerator: execution of make failed. Make command was: " +
- makeCommandStr + "\n";
- return 1;
- }
- output += *outputPtr;
- 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;
- }
- return retVal;
- }
- std::string cmGlobalGenerator::GenerateCMakeBuildCommand(
- const std::string& target, const std::string& config,
- const std::string& native, bool ignoreErrors)
- {
- std::string makeCommand = cmSystemTools::GetCMakeCommand();
- makeCommand = cmSystemTools::ConvertToOutputPath(makeCommand.c_str());
- makeCommand += " --build .";
- if (!config.empty()) {
- makeCommand += " --config \"";
- makeCommand += config;
- makeCommand += "\"";
- }
- if (!target.empty()) {
- makeCommand += " --target \"";
- makeCommand += target;
- makeCommand += "\"";
- }
- const char* sep = " -- ";
- if (ignoreErrors) {
- const char* iflag = this->GetBuildIgnoreErrorsFlag();
- if (iflag && *iflag) {
- makeCommand += sep;
- makeCommand += iflag;
- sep = " ";
- }
- }
- if (!native.empty()) {
- makeCommand += sep;
- makeCommand += native;
- }
- return makeCommand;
- }
- void cmGlobalGenerator::AddMakefile(cmMakefile* mf)
- {
- this->Makefiles.push_back(mf);
- this->IndexMakefile(mf);
- // update progress
- // estimate how many lg there will be
- const char* numGenC =
- this->CMakeInstance->GetState()->GetInitializedCacheValue(
- "CMAKE_NUMBER_OF_MAKEFILES");
- if (!numGenC) {
- // If CMAKE_NUMBER_OF_MAKEFILES is not set
- // we are in the first time progress and we have no
- // idea how long it will be. So, just move half way
- // there each time, and don't go over 95%
- this->FirstTimeProgress += ((1.0f - this->FirstTimeProgress) / 30.0f);
- if (this->FirstTimeProgress > 0.95f) {
- this->FirstTimeProgress = 0.95f;
- }
- this->CMakeInstance->UpdateProgress("Configuring",
- this->FirstTimeProgress);
- return;
- }
- int numGen = atoi(numGenC);
- float prog = 0.9f * static_cast<float>(this->Makefiles.size()) /
- static_cast<float>(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);
- }
- }
- void cmGlobalGenerator::EnableInstallTarget()
- {
- this->InstallTargetEnabled = true;
- }
- cmLocalGenerator* cmGlobalGenerator::CreateLocalGenerator(cmMakefile* mf)
- {
- return new cmLocalGenerator(this, mf);
- }
- void cmGlobalGenerator::EnableLanguagesFromGenerator(cmGlobalGenerator* gen,
- cmMakefile* mf)
- {
- this->SetConfiguredFilesPath(gen);
- this->TryCompileOuterMakefile = mf;
- const char* make =
- gen->GetCMakeInstance()->GetCacheDefinition("CMAKE_MAKE_PROGRAM");
- this->GetCMakeInstance()->AddCacheEntry(
- "CMAKE_MAKE_PROGRAM", make, "make program", cmStateEnums::FILEPATH);
- // copy the enabled languages
- this->GetCMakeInstance()->GetState()->SetEnabledLanguages(
- gen->GetCMakeInstance()->GetState()->GetEnabledLanguages());
- this->LanguagesReady = gen->LanguagesReady;
- this->ExtensionToLanguage = gen->ExtensionToLanguage;
- this->IgnoreExtensions = gen->IgnoreExtensions;
- this->LanguageToOutputExtension = gen->LanguageToOutputExtension;
- this->LanguageToLinkerPreference = gen->LanguageToLinkerPreference;
- this->OutputExtensions = gen->OutputExtensions;
- }
- void cmGlobalGenerator::SetConfiguredFilesPath(cmGlobalGenerator* gen)
- {
- if (!gen->ConfiguredFilesPath.empty()) {
- this->ConfiguredFilesPath = gen->ConfiguredFilesPath;
- } else {
- this->ConfiguredFilesPath = gen->CMakeInstance->GetHomeOutputDirectory();
- this->ConfiguredFilesPath += cmake::GetCMakeFilesDirectory();
- }
- }
- bool cmGlobalGenerator::IsExcluded(cmStateSnapshot const& rootSnp,
- cmStateSnapshot const& snp_) const
- {
- cmStateSnapshot snp = snp_;
- while (snp.IsValid()) {
- if (snp == rootSnp) {
- // No directory excludes itself.
- return false;
- }
- if (snp.GetDirectory().GetPropertyAsBool("EXCLUDE_FROM_ALL")) {
- // This directory is excluded from its parent.
- return true;
- }
- snp = snp.GetBuildsystemDirectoryParent();
- }
- return false;
- }
- bool cmGlobalGenerator::IsExcluded(cmLocalGenerator* root,
- cmLocalGenerator* gen) const
- {
- assert(gen);
- cmStateSnapshot rootSnp = root->GetStateSnapshot();
- cmStateSnapshot snp = gen->GetStateSnapshot();
- return this->IsExcluded(rootSnp, snp);
- }
- bool cmGlobalGenerator::IsExcluded(cmLocalGenerator* root,
- cmGeneratorTarget* target) const
- {
- if (target->GetType() == cmStateEnums::INTERFACE_LIBRARY ||
- target->GetPropertyAsBool("EXCLUDE_FROM_ALL")) {
- // This target is excluded from its directory.
- return true;
- }
- // This target is included in its directory. Check whether the
- // directory is excluded.
- return this->IsExcluded(root, target->GetLocalGenerator());
- }
- void cmGlobalGenerator::GetEnabledLanguages(
- std::vector<std::string>& lang) const
- {
- lang = this->CMakeInstance->GetState()->GetEnabledLanguages();
- }
- int cmGlobalGenerator::GetLinkerPreference(const std::string& lang) const
- {
- std::map<std::string, int>::const_iterator it =
- this->LanguageToLinkerPreference.find(lang);
- if (it != this->LanguageToLinkerPreference.end()) {
- return it->second;
- }
- return 0;
- }
- 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
- cmStateSnapshot snp = this->LocalGenerators[i]->GetStateSnapshot();
- std::string name;
- do {
- std::string snpProjName = snp.GetProjectName();
- if (name != snpProjName) {
- name = snpProjName;
- this->ProjectMap[name].push_back(this->LocalGenerators[i]);
- }
- snp = snp.GetBuildsystemDirectoryParent();
- } while (snp.IsValid());
- }
- }
- cmMakefile* cmGlobalGenerator::FindMakefile(const std::string& start_dir) const
- {
- MakefileMap::const_iterator i = this->MakefileSearchIndex.find(start_dir);
- if (i != this->MakefileSearchIndex.end()) {
- return i->second;
- }
- return CM_NULLPTR;
- }
- ///! Find a local generator by its startdirectory
- cmLocalGenerator* cmGlobalGenerator::FindLocalGenerator(
- const std::string& start_dir) const
- {
- for (std::vector<cmLocalGenerator*>::const_iterator it =
- this->LocalGenerators.begin();
- it != this->LocalGenerators.end(); ++it) {
- std::string sd = (*it)->GetCurrentSourceDirectory();
- if (sd == start_dir) {
- return *it;
- }
- }
- return CM_NULLPTR;
- }
- void cmGlobalGenerator::AddAlias(const std::string& name,
- std::string const& tgtName)
- {
- this->AliasTargets[name] = tgtName;
- }
- bool cmGlobalGenerator::IsAlias(const std::string& name) const
- {
- return this->AliasTargets.find(name) != this->AliasTargets.end();
- }
- void cmGlobalGenerator::IndexTarget(cmTarget* t)
- {
- if (!t->IsImported() || t->IsImportedGloballyVisible()) {
- this->TargetSearchIndex[t->GetName()] = t;
- }
- }
- void cmGlobalGenerator::IndexGeneratorTarget(cmGeneratorTarget* gt)
- {
- if (!gt->IsImported() || gt->IsImportedGloballyVisible()) {
- this->GeneratorTargetSearchIndex[gt->GetName()] = gt;
- }
- }
- void cmGlobalGenerator::IndexMakefile(cmMakefile* mf)
- {
- // FIXME: add_subdirectory supports multiple build directories
- // sharing the same source directory. We currently index only the
- // first one, because that is what FindMakefile has always returned.
- // All of its callers will need to be modified to support looking
- // up directories by build directory path.
- this->MakefileSearchIndex.insert(
- MakefileMap::value_type(mf->GetCurrentSourceDirectory(), mf));
- }
- cmTarget* cmGlobalGenerator::FindTargetImpl(std::string const& name) const
- {
- TargetMap::const_iterator i = this->TargetSearchIndex.find(name);
- if (i != this->TargetSearchIndex.end()) {
- return i->second;
- }
- return CM_NULLPTR;
- }
- cmGeneratorTarget* cmGlobalGenerator::FindGeneratorTargetImpl(
- std::string const& name) const
- {
- GeneratorTargetMap::const_iterator i =
- this->GeneratorTargetSearchIndex.find(name);
- if (i != this->GeneratorTargetSearchIndex.end()) {
- return i->second;
- }
- return CM_NULLPTR;
- }
- cmTarget* cmGlobalGenerator::FindTarget(const std::string& name,
- bool excludeAliases) const
- {
- if (!excludeAliases) {
- std::map<std::string, std::string>::const_iterator ai =
- this->AliasTargets.find(name);
- if (ai != this->AliasTargets.end()) {
- return this->FindTargetImpl(ai->second);
- }
- }
- return this->FindTargetImpl(name);
- }
- cmGeneratorTarget* cmGlobalGenerator::FindGeneratorTarget(
- const std::string& name) const
- {
- std::map<std::string, std::string>::const_iterator ai =
- this->AliasTargets.find(name);
- if (ai != this->AliasTargets.end()) {
- return this->FindGeneratorTargetImpl(ai->second);
- }
- return this->FindGeneratorTargetImpl(name);
- }
- bool cmGlobalGenerator::NameResolvesToFramework(
- const std::string& libname) const
- {
- if (cmSystemTools::IsPathToFramework(libname.c_str())) {
- return true;
- }
- if (cmTarget* tgt = this->FindTarget(libname)) {
- if (tgt->IsFrameworkOnApple()) {
- return true;
- }
- }
- return false;
- }
- 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::CreateDefaultGlobalTargets(
- std::vector<GlobalTargetInfo>& targets)
- {
- this->AddGlobalTarget_Package(targets);
- this->AddGlobalTarget_PackageSource(targets);
- this->AddGlobalTarget_Test(targets);
- this->AddGlobalTarget_EditCache(targets);
- this->AddGlobalTarget_RebuildCache(targets);
- this->AddGlobalTarget_Install(targets);
- }
- void cmGlobalGenerator::AddGlobalTarget_Package(
- std::vector<GlobalTargetInfo>& targets)
- {
- cmMakefile* mf = this->Makefiles[0];
- const char* cmakeCfgIntDir = this->GetCMakeCFGIntDir();
- GlobalTargetInfo gti;
- gti.Name = this->GetPackageTargetName();
- gti.Message = "Run CPack packaging tool...";
- gti.UsesTerminal = true;
- gti.WorkingDir = mf->GetCurrentBinaryDirectory();
- cmCustomCommandLine singleLine;
- singleLine.push_back(cmSystemTools::GetCPackCommand());
- if (cmakeCfgIntDir && *cmakeCfgIntDir && cmakeCfgIntDir[0] != '.') {
- singleLine.push_back("-C");
- singleLine.push_back(cmakeCfgIntDir);
- }
- singleLine.push_back("--config");
- std::string configFile = mf->GetCurrentBinaryDirectory();
- configFile += "/CPackConfig.cmake";
- std::string relConfigFile = "./CPackConfig.cmake";
- singleLine.push_back(relConfigFile);
- gti.CommandLines.push_back(singleLine);
- if (this->GetPreinstallTargetName()) {
- gti.Depends.push_back(this->GetPreinstallTargetName());
- } else {
- const char* noPackageAll =
- mf->GetDefinition("CMAKE_SKIP_PACKAGE_ALL_DEPENDENCY");
- if (!noPackageAll || cmSystemTools::IsOff(noPackageAll)) {
- gti.Depends.push_back(this->GetAllTargetName());
- }
- }
- if (cmSystemTools::FileExists(configFile.c_str())) {
- targets.push_back(gti);
- }
- }
- void cmGlobalGenerator::AddGlobalTarget_PackageSource(
- std::vector<GlobalTargetInfo>& targets)
- {
- cmMakefile* mf = this->Makefiles[0];
- const char* packageSourceTargetName = this->GetPackageSourceTargetName();
- if (packageSourceTargetName) {
- GlobalTargetInfo gti;
- gti.Name = packageSourceTargetName;
- gti.Message = "Run CPack packaging tool for source...";
- gti.WorkingDir = mf->GetCurrentBinaryDirectory();
- gti.UsesTerminal = true;
- cmCustomCommandLine singleLine;
- singleLine.push_back(cmSystemTools::GetCPackCommand());
- singleLine.push_back("--config");
- std::string configFile = mf->GetCurrentBinaryDirectory();
- configFile += "/CPackSourceConfig.cmake";
- std::string relConfigFile = "./CPackSourceConfig.cmake";
- singleLine.push_back(relConfigFile);
- if (cmSystemTools::FileExists(configFile.c_str())) {
- singleLine.push_back(configFile);
- gti.CommandLines.push_back(singleLine);
- targets.push_back(gti);
- }
- }
- }
- void cmGlobalGenerator::AddGlobalTarget_Test(
- std::vector<GlobalTargetInfo>& targets)
- {
- cmMakefile* mf = this->Makefiles[0];
- const char* cmakeCfgIntDir = this->GetCMakeCFGIntDir();
- if (mf->IsOn("CMAKE_TESTING_ENABLED")) {
- GlobalTargetInfo gti;
- gti.Name = this->GetTestTargetName();
- gti.Message = "Running tests...";
- gti.UsesTerminal = true;
- cmCustomCommandLine singleLine;
- singleLine.push_back(cmSystemTools::GetCTestCommand());
- singleLine.push_back("--force-new-ctest-process");
- if (cmakeCfgIntDir && *cmakeCfgIntDir && cmakeCfgIntDir[0] != '.') {
- singleLine.push_back("-C");
- singleLine.push_back(cmakeCfgIntDir);
- } else // TODO: This is a hack. Should be something to do with the
- // generator
- {
- singleLine.push_back("$(ARGS)");
- }
- gti.CommandLines.push_back(singleLine);
- targets.push_back(gti);
- }
- }
- void cmGlobalGenerator::AddGlobalTarget_EditCache(
- std::vector<GlobalTargetInfo>& targets)
- {
- const char* editCacheTargetName = this->GetEditCacheTargetName();
- if (editCacheTargetName) {
- GlobalTargetInfo gti;
- gti.Name = editCacheTargetName;
- cmCustomCommandLine singleLine;
- // Use generator preference for the edit_cache rule if it is defined.
- std::string edit_cmd = this->GetEditCacheCommand();
- if (!edit_cmd.empty()) {
- singleLine.push_back(edit_cmd);
- singleLine.push_back("-H$(CMAKE_SOURCE_DIR)");
- singleLine.push_back("-B$(CMAKE_BINARY_DIR)");
- gti.Message = "Running CMake cache editor...";
- gti.UsesTerminal = true;
- gti.CommandLines.push_back(singleLine);
- } else {
- singleLine.push_back(cmSystemTools::GetCMakeCommand());
- singleLine.push_back("-E");
- singleLine.push_back("echo");
- singleLine.push_back("No interactive CMake dialog available.");
- gti.Message = "No interactive CMake dialog available...";
- gti.UsesTerminal = false;
- gti.CommandLines.push_back(singleLine);
- }
- targets.push_back(gti);
- }
- }
- void cmGlobalGenerator::AddGlobalTarget_RebuildCache(
- std::vector<GlobalTargetInfo>& targets)
- {
- const char* rebuildCacheTargetName = this->GetRebuildCacheTargetName();
- if (rebuildCacheTargetName) {
- GlobalTargetInfo gti;
- gti.Name = rebuildCacheTargetName;
- gti.Message = "Running CMake to regenerate build system...";
- gti.UsesTerminal = true;
- cmCustomCommandLine singleLine;
- singleLine.push_back(cmSystemTools::GetCMakeCommand());
- singleLine.push_back("-H$(CMAKE_SOURCE_DIR)");
- singleLine.push_back("-B$(CMAKE_BINARY_DIR)");
- gti.CommandLines.push_back(singleLine);
- targets.push_back(gti);
- }
- }
- void cmGlobalGenerator::AddGlobalTarget_Install(
- std::vector<GlobalTargetInfo>& targets)
- {
- cmMakefile* mf = this->Makefiles[0];
- const char* cmakeCfgIntDir = this->GetCMakeCFGIntDir();
- bool skipInstallRules = mf->IsOn("CMAKE_SKIP_INSTALL_RULES");
- if (this->InstallTargetEnabled && skipInstallRules) {
- this->CMakeInstance->IssueMessage(
- cmake::WARNING, "CMAKE_SKIP_INSTALL_RULES was enabled even though "
- "installation rules have been specified",
- mf->GetBacktrace());
- } else if (this->InstallTargetEnabled && !skipInstallRules) {
- if (!cmakeCfgIntDir || !*cmakeCfgIntDir || cmakeCfgIntDir[0] == '.') {
- std::set<std::string>* componentsSet = &this->InstallComponents;
- std::ostringstream ostr;
- if (!componentsSet->empty()) {
- ostr << "Available install components are: ";
- ostr << cmWrap('"', *componentsSet, '"', " ");
- } else {
- ostr << "Only default component available";
- }
- GlobalTargetInfo gti;
- gti.Name = "list_install_components";
- gti.Message = ostr.str();
- gti.UsesTerminal = false;
- targets.push_back(gti);
- }
- std::string cmd = cmSystemTools::GetCMakeCommand();
- GlobalTargetInfo gti;
- gti.Name = this->GetInstallTargetName();
- gti.Message = "Install the project...";
- gti.UsesTerminal = true;
- cmCustomCommandLine singleLine;
- if (this->GetPreinstallTargetName()) {
- gti.Depends.push_back(this->GetPreinstallTargetName());
- } else {
- const char* noall =
- mf->GetDefinition("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY");
- if (!noall || cmSystemTools::IsOff(noall)) {
- gti.Depends.push_back(this->GetAllTargetName());
- }
- }
- if (mf->GetDefinition("CMake_BINARY_DIR") &&
- !mf->IsOn("CMAKE_CROSSCOMPILING")) {
- // We are building CMake itself. We cannot use the original
- // executable to install over itself. The generator will
- // automatically convert this name to the build-time location.
- cmd = "cmake";
- }
- singleLine.push_back(cmd);
- if (cmakeCfgIntDir && *cmakeCfgIntDir && cmakeCfgIntDir[0] != '.') {
- std::string cfgArg = "-DBUILD_TYPE=";
- bool useEPN = this->UseEffectivePlatformName(mf);
- if (useEPN) {
- cfgArg += "$(CONFIGURATION)";
- singleLine.push_back(cfgArg);
- cfgArg = "-DEFFECTIVE_PLATFORM_NAME=$(EFFECTIVE_PLATFORM_NAME)";
- } else {
- cfgArg += mf->GetDefinition("CMAKE_CFG_INTDIR");
- }
- singleLine.push_back(cfgArg);
- }
- singleLine.push_back("-P");
- singleLine.push_back("cmake_install.cmake");
- gti.CommandLines.push_back(singleLine);
- targets.push_back(gti);
- // install_local
- if (const char* install_local = this->GetInstallLocalTargetName()) {
- gti.Name = install_local;
- gti.Message = "Installing only the local directory...";
- gti.UsesTerminal = true;
- gti.CommandLines.clear();
- cmCustomCommandLine localCmdLine = singleLine;
- localCmdLine.insert(localCmdLine.begin() + 1,
- "-DCMAKE_INSTALL_LOCAL_ONLY=1");
- gti.CommandLines.push_back(localCmdLine);
- targets.push_back(gti);
- }
- // install_strip
- const char* install_strip = this->GetInstallStripTargetName();
- if ((install_strip != CM_NULLPTR) && (mf->IsSet("CMAKE_STRIP"))) {
- gti.Name = install_strip;
- gti.Message = "Installing the project stripped...";
- gti.UsesTerminal = true;
- gti.CommandLines.clear();
- cmCustomCommandLine stripCmdLine = singleLine;
- stripCmdLine.insert(stripCmdLine.begin() + 1,
- "-DCMAKE_INSTALL_DO_STRIP=1");
- gti.CommandLines.push_back(stripCmdLine);
- targets.push_back(gti);
- }
- }
- }
- const char* cmGlobalGenerator::GetPredefinedTargetsFolder()
- {
- const char* prop = this->GetCMakeInstance()->GetState()->GetGlobalProperty(
- "PREDEFINED_TARGETS_FOLDER");
- if (prop) {
- return prop;
- }
- return "CMakePredefinedTargets";
- }
- bool cmGlobalGenerator::UseFolderProperty() const
- {
- const char* prop =
- this->GetCMakeInstance()->GetState()->GetGlobalProperty("USE_FOLDERS");
- // If this property is defined, let the setter turn this on or off...
- //
- if (prop) {
- return cmSystemTools::IsOn(prop);
- }
- // By default, this feature is OFF, since it is not supported in the
- // Visual Studio Express editions until VS11:
- //
- return false;
- }
- cmTarget cmGlobalGenerator::CreateGlobalTarget(GlobalTargetInfo const& gti,
- cmMakefile* mf)
- {
- // Package
- cmTarget target(gti.Name, cmStateEnums::GLOBAL_TARGET,
- cmTarget::VisibilityNormal, mf);
- target.SetProperty("EXCLUDE_FROM_ALL", "TRUE");
- std::vector<std::string> no_outputs;
- std::vector<std::string> no_byproducts;
- std::vector<std::string> no_depends;
- // Store the custom command in the target.
- cmCustomCommand cc(CM_NULLPTR, no_outputs, no_byproducts, no_depends,
- gti.CommandLines, CM_NULLPTR, gti.WorkingDir.c_str());
- cc.SetUsesTerminal(gti.UsesTerminal);
- target.AddPostBuildCommand(cc);
- if (!gti.Message.empty()) {
- target.SetProperty("EchoString", gti.Message.c_str());
- }
- for (std::vector<std::string>::const_iterator dit = gti.Depends.begin();
- dit != gti.Depends.end(); ++dit) {
- target.AddUtility(*dit);
- }
- // Organize in the "predefined targets" folder:
- //
- if (this->UseFolderProperty()) {
- target.SetProperty("FOLDER", this->GetPredefinedTargetsFolder());
- }
- return target;
- }
- std::string cmGlobalGenerator::GenerateRuleFile(
- std::string const& output) const
- {
- std::string ruleFile = output;
- ruleFile += ".rule";
- const char* dir = this->GetCMakeCFGIntDir();
- if (dir && dir[0] == '$') {
- cmSystemTools::ReplaceString(ruleFile, dir,
- cmake::GetCMakeFilesDirectory());
- }
- return ruleFile;
- }
- bool cmGlobalGenerator::ShouldStripResourcePath(cmMakefile* mf) const
- {
- return mf->PlatformIsAppleIos();
- }
- std::string cmGlobalGenerator::GetSharedLibFlagsForLanguage(
- std::string const& l) const
- {
- std::map<std::string, std::string>::const_iterator it =
- this->LanguageToOriginalSharedLibFlags.find(l);
- if (it != this->LanguageToOriginalSharedLibFlags.end()) {
- return it->second;
- }
- return "";
- }
- void cmGlobalGenerator::AppendDirectoryForConfig(const std::string& /*unused*/,
- const std::string& /*unused*/,
- const std::string& /*unused*/,
- std::string& /*unused*/)
- {
- // Subclasses that support multiple configurations should implement
- // this method to append the subdirectory for the given build
- // configuration.
- }
- cmGlobalGenerator::TargetDependSet const&
- cmGlobalGenerator::GetTargetDirectDepends(cmGeneratorTarget const* target)
- {
- return this->TargetDependencies[target];
- }
- bool cmGlobalGenerator::IsReservedTarget(std::string const& name)
- {
- // The following is a list of targets reserved
- // by one or more of the cmake generators.
- // Adding additional targets to this list will require a policy!
- const char* reservedTargets[] = {
- "all", "ALL_BUILD", "help", "install", "INSTALL",
- "preinstall", "clean", "edit_cache", "rebuild_cache", "test",
- "RUN_TESTS", "package", "PACKAGE", "package_source", "ZERO_CHECK"
- };
- return std::find(cmArrayBegin(reservedTargets), cmArrayEnd(reservedTargets),
- name) != cmArrayEnd(reservedTargets);
- }
- void cmGlobalGenerator::SetExternalMakefileProjectGenerator(
- cmExternalMakefileProjectGenerator* extraGenerator)
- {
- this->ExtraGenerator = extraGenerator;
- if (this->ExtraGenerator != CM_NULLPTR) {
- this->ExtraGenerator->SetGlobalGenerator(this);
- }
- }
- std::string cmGlobalGenerator::GetExtraGeneratorName() const
- {
- return this->ExtraGenerator ? this->ExtraGenerator->GetName()
- : std::string();
- }
- void cmGlobalGenerator::FileReplacedDuringGenerate(const std::string& filename)
- {
- this->FilesReplacedDuringGenerate.push_back(filename);
- }
- void cmGlobalGenerator::GetFilesReplacedDuringGenerate(
- std::vector<std::string>& filenames)
- {
- filenames.clear();
- std::copy(this->FilesReplacedDuringGenerate.begin(),
- this->FilesReplacedDuringGenerate.end(),
- std::back_inserter(filenames));
- }
- void cmGlobalGenerator::GetTargetSets(TargetDependSet& projectTargets,
- TargetDependSet& originalTargets,
- cmLocalGenerator* root,
- GeneratorVector const& generators)
- {
- // loop over all local generators
- for (std::vector<cmLocalGenerator*>::const_iterator i = generators.begin();
- i != generators.end(); ++i) {
- // check to make sure generator is not excluded
- if (this->IsExcluded(root, *i)) {
- continue;
- }
- // Get the targets in the makefile
- std::vector<cmGeneratorTarget*> tgts = (*i)->GetGeneratorTargets();
- // loop over all the targets
- for (std::vector<cmGeneratorTarget*>::iterator l = tgts.begin();
- l != tgts.end(); ++l) {
- cmGeneratorTarget* target = *l;
- if (this->IsRootOnlyTarget(target) &&
- target->GetLocalGenerator() != root) {
- continue;
- }
- // put the target in the set of original targets
- originalTargets.insert(target);
- // Get the set of targets that depend on target
- this->AddTargetDepends(target, projectTargets);
- }
- }
- }
- bool cmGlobalGenerator::IsRootOnlyTarget(cmGeneratorTarget* target) const
- {
- return (target->GetType() == cmStateEnums::GLOBAL_TARGET ||
- target->GetName() == this->GetAllTargetName());
- }
- void cmGlobalGenerator::AddTargetDepends(cmGeneratorTarget const* target,
- TargetDependSet& projectTargets)
- {
- // add the target itself
- if (projectTargets.insert(target).second) {
- // This is the first time we have encountered the target.
- // Recursively follow its dependencies.
- TargetDependSet const& ts = this->GetTargetDirectDepends(target);
- for (TargetDependSet::const_iterator i = ts.begin(); i != ts.end(); ++i) {
- this->AddTargetDepends(*i, projectTargets);
- }
- }
- }
- void cmGlobalGenerator::AddToManifest(std::string const& f)
- {
- // Add to the content listing for the file's directory.
- std::string dir = cmSystemTools::GetFilenamePath(f);
- std::string file = cmSystemTools::GetFilenameName(f);
- DirectoryContent& dc = this->DirectoryContentMap[dir];
- dc.Generated.insert(file);
- dc.All.insert(file);
- }
- std::set<std::string> const& cmGlobalGenerator::GetDirectoryContent(
- std::string const& dir, bool needDisk)
- {
- DirectoryContent& dc = this->DirectoryContentMap[dir];
- if (needDisk) {
- long mt = cmSystemTools::ModifiedTime(dir);
- if (mt != dc.LastDiskTime) {
- // Reset to non-loaded directory content.
- dc.All = dc.Generated;
- // Load the directory content from disk.
- cmsys::Directory d;
- if (d.Load(dir)) {
- unsigned long n = d.GetNumberOfFiles();
- for (unsigned long i = 0; i < n; ++i) {
- const char* f = d.GetFile(i);
- if (strcmp(f, ".") != 0 && strcmp(f, "..") != 0) {
- dc.All.insert(f);
- }
- }
- }
- dc.LastDiskTime = mt;
- }
- }
- return dc.All;
- }
- void cmGlobalGenerator::AddRuleHash(const std::vector<std::string>& outputs,
- std::string const& content)
- {
- #if defined(CMAKE_BUILD_WITH_CMAKE)
- // Ignore if there are no outputs.
- if (outputs.empty()) {
- return;
- }
- // Compute a hash of the rule.
- RuleHash hash;
- {
- cmCryptoHash md5(cmCryptoHash::AlgoMD5);
- std::string const md5_hex = md5.HashString(content);
- memcpy(hash.Data, md5_hex.c_str(), 32);
- }
- // Shorten the output name (in expected use case).
- cmOutputConverter converter(this->GetMakefiles()[0]->GetStateSnapshot());
- std::string fname = converter.ConvertToRelativePath(
- this->GetMakefiles()[0]->GetState()->GetBinaryDirectory(), outputs[0]);
- // Associate the hash with this output.
- this->RuleHashes[fname] = hash;
- #else
- (void)outputs;
- (void)content;
- #endif
- }
- void cmGlobalGenerator::CheckRuleHashes()
- {
- #if defined(CMAKE_BUILD_WITH_CMAKE)
- std::string home = this->GetCMakeInstance()->GetHomeOutputDirectory();
- std::string pfile = home;
- pfile += this->GetCMakeInstance()->GetCMakeFilesDirectory();
- pfile += "/CMakeRuleHashes.txt";
- this->CheckRuleHashes(pfile, home);
- this->WriteRuleHashes(pfile);
- #endif
- }
- void cmGlobalGenerator::CheckRuleHashes(std::string const& pfile,
- std::string const& home)
- {
- #if defined(_WIN32) || defined(__CYGWIN__)
- cmsys::ifstream fin(pfile.c_str(), std::ios::in | std::ios::binary);
- #else
- cmsys::ifstream fin(pfile.c_str());
- #endif
- if (!fin) {
- return;
- }
- std::string line;
- std::string fname;
- while (cmSystemTools::GetLineFromStream(fin, line)) {
- // Line format is a 32-byte hex string followed by a space
- // followed by a file name (with no escaping).
- // Skip blank and comment lines.
- if (line.size() < 34 || line[0] == '#') {
- continue;
- }
- // Get the filename.
- fname = line.substr(33);
- // Look for a hash for this file's rule.
- std::map<std::string, RuleHash>::const_iterator rhi =
- this->RuleHashes.find(fname);
- if (rhi != this->RuleHashes.end()) {
- // Compare the rule hash in the file to that we were given.
- if (strncmp(line.c_str(), rhi->second.Data, 32) != 0) {
- // The rule has changed. Delete the output so it will be
- // built again.
- fname = cmSystemTools::CollapseFullPath(fname, home.c_str());
- cmSystemTools::RemoveFile(fname);
- }
- } else {
- // We have no hash for a rule previously listed. This may be a
- // case where a user has turned off a build option and might
- // want to turn it back on later, so do not delete the file.
- // Instead, we keep the rule hash as long as the file exists so
- // that if the feature is turned back on and the rule has
- // changed the file is still rebuilt.
- std::string fpath = cmSystemTools::CollapseFullPath(fname, home.c_str());
- if (cmSystemTools::FileExists(fpath.c_str())) {
- RuleHash hash;
- strncpy(hash.Data, line.c_str(), 32);
- this->RuleHashes[fname] = hash;
- }
- }
- }
- }
- void cmGlobalGenerator::WriteRuleHashes(std::string const& pfile)
- {
- // Now generate a new persistence file with the current hashes.
- if (this->RuleHashes.empty()) {
- cmSystemTools::RemoveFile(pfile);
- } else {
- cmGeneratedFileStream fout(pfile.c_str());
- fout << "# Hashes of file build rules.\n";
- for (std::map<std::string, RuleHash>::const_iterator rhi =
- this->RuleHashes.begin();
- rhi != this->RuleHashes.end(); ++rhi) {
- fout.write(rhi->second.Data, 32);
- fout << " " << rhi->first << "\n";
- }
- }
- }
- void cmGlobalGenerator::WriteSummary()
- {
- // Record all target directories in a central location.
- std::string fname = this->CMakeInstance->GetHomeOutputDirectory();
- fname += cmake::GetCMakeFilesDirectory();
- fname += "/TargetDirectories.txt";
- cmGeneratedFileStream fout(fname.c_str());
- for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i) {
- std::vector<cmGeneratorTarget*> tgts =
- this->LocalGenerators[i]->GetGeneratorTargets();
- for (std::vector<cmGeneratorTarget*>::iterator it = tgts.begin();
- it != tgts.end(); ++it) {
- if ((*it)->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
- continue;
- }
- this->WriteSummary(*it);
- fout << (*it)->GetSupportDirectory() << "\n";
- }
- }
- }
- void cmGlobalGenerator::WriteSummary(cmGeneratorTarget* target)
- {
- // Place the labels file in a per-target support directory.
- std::string dir = target->GetSupportDirectory();
- std::string file = dir;
- file += "/Labels.txt";
- std::string json_file = dir + "/Labels.json";
- #ifdef CMAKE_BUILD_WITH_CMAKE
- // Check whether labels are enabled for this target.
- if (const char* value = target->GetProperty("LABELS")) {
- Json::Value lj_root(Json::objectValue);
- Json::Value& lj_target = lj_root["target"] = Json::objectValue;
- lj_target["name"] = target->GetName();
- Json::Value& lj_target_labels = lj_target["labels"] = Json::arrayValue;
- Json::Value& lj_sources = lj_root["sources"] = Json::arrayValue;
- cmSystemTools::MakeDirectory(dir.c_str());
- cmGeneratedFileStream fout(file.c_str());
- // List the target-wide labels. All sources in the target get
- // these labels.
- std::vector<std::string> labels;
- cmSystemTools::ExpandListArgument(value, labels);
- if (!labels.empty()) {
- fout << "# Target labels\n";
- for (std::vector<std::string>::const_iterator li = labels.begin();
- li != labels.end(); ++li) {
- fout << " " << *li << "\n";
- lj_target_labels.append(*li);
- }
- }
- // List the source files with any per-source labels.
- fout << "# Source files and their labels\n";
- std::vector<cmSourceFile*> sources;
- std::vector<std::string> configs;
- target->Target->GetMakefile()->GetConfigurations(configs);
- if (configs.empty()) {
- configs.push_back("");
- }
- for (std::vector<std::string>::const_iterator ci = configs.begin();
- ci != configs.end(); ++ci) {
- target->GetSourceFiles(sources, *ci);
- }
- std::vector<cmSourceFile*>::const_iterator sourcesEnd =
- cmRemoveDuplicates(sources);
- for (std::vector<cmSourceFile*>::const_iterator si = sources.begin();
- si != sourcesEnd; ++si) {
- Json::Value& lj_source = lj_sources.append(Json::objectValue);
- cmSourceFile* sf = *si;
- std::string const& sfp = sf->GetFullPath();
- fout << sfp << "\n";
- lj_source["file"] = sfp;
- if (const char* svalue = sf->GetProperty("LABELS")) {
- labels.clear();
- Json::Value& lj_source_labels = lj_source["labels"] = Json::arrayValue;
- cmSystemTools::ExpandListArgument(svalue, labels);
- for (std::vector<std::string>::const_iterator li = labels.begin();
- li != labels.end(); ++li) {
- fout << " " << *li << "\n";
- lj_source_labels.append(*li);
- }
- }
- }
- cmGeneratedFileStream json_fout(json_file.c_str());
- json_fout << lj_root;
- } else
- #endif
- {
- cmSystemTools::RemoveFile(file);
- cmSystemTools::RemoveFile(json_file);
- }
- }
- // static
- std::string cmGlobalGenerator::EscapeJSON(const std::string& s)
- {
- std::string result;
- for (std::string::size_type i = 0; i < s.size(); ++i) {
- if (s[i] == '"' || s[i] == '\\') {
- result += '\\';
- }
- result += s[i];
- }
- return result;
- }
- void cmGlobalGenerator::SetFilenameTargetDepends(
- cmSourceFile* sf, std::set<cmGeneratorTarget const*> const& tgts)
- {
- this->FilenameTargetDepends[sf] = tgts;
- }
- std::set<cmGeneratorTarget const*> const&
- cmGlobalGenerator::GetFilenameTargetDepends(cmSourceFile* sf) const
- {
- return this->FilenameTargetDepends[sf];
- }
- void cmGlobalGenerator::CreateEvaluationSourceFiles(
- std::string const& config) const
- {
- unsigned int i;
- for (i = 0; i < this->LocalGenerators.size(); ++i) {
- this->LocalGenerators[i]->CreateEvaluationFileOutputs(config);
- }
- }
- void cmGlobalGenerator::ProcessEvaluationFiles()
- {
- std::vector<std::string> generatedFiles;
- unsigned int i;
- for (i = 0; i < this->LocalGenerators.size(); ++i) {
- this->LocalGenerators[i]->ProcessEvaluationFiles(generatedFiles);
- }
- }
- std::string cmGlobalGenerator::ExpandCFGIntDir(
- const std::string& str, const std::string& /*config*/) const
- {
- return str;
- }
- bool cmGlobalGenerator::GenerateCPackPropertiesFile()
- {
- cmake::InstalledFilesMap const& installedFiles =
- this->CMakeInstance->GetInstalledFiles();
- cmLocalGenerator* lg = this->LocalGenerators[0];
- cmMakefile* mf = lg->GetMakefile();
- std::vector<std::string> configs;
- std::string config = mf->GetConfigurations(configs, false);
- std::string path = this->CMakeInstance->GetHomeOutputDirectory();
- path += "/CPackProperties.cmake";
- if (!cmSystemTools::FileExists(path.c_str()) && installedFiles.empty()) {
- return true;
- }
- cmGeneratedFileStream file(path.c_str());
- file << "# CPack properties\n";
- for (cmake::InstalledFilesMap::const_iterator i = installedFiles.begin();
- i != installedFiles.end(); ++i) {
- cmInstalledFile const& installedFile = i->second;
- cmCPackPropertiesGenerator cpackPropertiesGenerator(lg, installedFile,
- configs);
- cpackPropertiesGenerator.Generate(file, config, configs);
- }
- return true;
- }
|