| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmMakefile.h"
- #include "cmVersion.h"
- #include "cmCommand.h"
- #include "cmSourceFile.h"
- #include "cmSourceFileLocation.h"
- #include "cmSystemTools.h"
- #include "cmGlobalGenerator.h"
- #include "cmLocalGenerator.h"
- #include "cmCommands.h"
- #include "cmCacheManager.h"
- #include "cmFunctionBlocker.h"
- #include "cmListFileCache.h"
- #include "cmCommandArgumentParserHelper.h"
- #include "cmTest.h"
- #ifdef CMAKE_BUILD_WITH_CMAKE
- # include "cmVariableWatch.h"
- #endif
- #include "cmInstallGenerator.h"
- #include "cmake.h"
- #include <stdlib.h> // required for atoi
- #include <cmsys/RegularExpression.hxx>
- #include <cmsys/auto_ptr.hxx>
- #include <ctype.h> // for isspace
- // default is not to be building executables
- cmMakefile::cmMakefile()
- {
- this->DefinitionStack.push_back(DefinitionMap());
- // Enter a policy level for this directory.
- this->PushPolicy();
- // Setup the default include file regular expression (match everything).
- this->IncludeFileRegularExpression = "^.*$";
- // Setup the default include complaint regular expression (match nothing).
- this->ComplainFileRegularExpression = "^$";
- // Source and header file extensions that we can handle
- // Set up a list of source and header extensions
- // these are used to find files when the extension
- // is not given
- // The "c" extension MUST precede the "C" extension.
- this->SourceFileExtensions.push_back( "c" );
- this->SourceFileExtensions.push_back( "C" );
- this->SourceFileExtensions.push_back( "c++" );
- this->SourceFileExtensions.push_back( "cc" );
- this->SourceFileExtensions.push_back( "cpp" );
- this->SourceFileExtensions.push_back( "cxx" );
- this->SourceFileExtensions.push_back( "m" );
- this->SourceFileExtensions.push_back( "M" );
- this->SourceFileExtensions.push_back( "mm" );
- this->HeaderFileExtensions.push_back( "h" );
- this->HeaderFileExtensions.push_back( "hh" );
- this->HeaderFileExtensions.push_back( "h++" );
- this->HeaderFileExtensions.push_back( "hm" );
- this->HeaderFileExtensions.push_back( "hpp" );
- this->HeaderFileExtensions.push_back( "hxx" );
- this->HeaderFileExtensions.push_back( "in" );
- this->HeaderFileExtensions.push_back( "txx" );
- this->DefineFlags = " ";
- this->LocalGenerator = 0;
- #if defined(CMAKE_BUILD_WITH_CMAKE)
- this->AddSourceGroup("", "^.*$");
- this->AddSourceGroup
- ("Source Files",
- "\\.(C|M|c|c\\+\\+|cc|cpp|cxx|m|mm|rc|def|r|odl|idl|hpj|bat)$");
- this->AddSourceGroup("Header Files",
- "\\.(h|hh|h\\+\\+|hm|hpp|hxx|in|txx|inl)$");
- this->AddSourceGroup("CMake Rules", "\\.rule$");
- this->AddSourceGroup("Resources", "\\.plist$");
- #endif
- this->AddDefaultDefinitions();
- this->Initialize();
- this->PreOrder = false;
- }
- cmMakefile::cmMakefile(const cmMakefile& mf)
- {
- this->Prefix = mf.Prefix;
- this->AuxSourceDirectories = mf.AuxSourceDirectories;
- this->cmStartDirectory = mf.cmStartDirectory;
- this->StartOutputDirectory = mf.StartOutputDirectory;
- this->cmHomeDirectory = mf.cmHomeDirectory;
- this->HomeOutputDirectory = mf.HomeOutputDirectory;
- this->cmCurrentListFile = mf.cmCurrentListFile;
- this->ProjectName = mf.ProjectName;
- this->Targets = mf.Targets;
- this->SourceFiles = mf.SourceFiles;
- this->Tests = mf.Tests;
- this->IncludeDirectories = mf.IncludeDirectories;
- this->LinkDirectories = mf.LinkDirectories;
- this->SystemIncludeDirectories = mf.SystemIncludeDirectories;
- this->ListFiles = mf.ListFiles;
- this->OutputFiles = mf.OutputFiles;
- this->LinkLibraries = mf.LinkLibraries;
- this->InstallGenerators = mf.InstallGenerators;
- this->IncludeFileRegularExpression = mf.IncludeFileRegularExpression;
- this->ComplainFileRegularExpression = mf.ComplainFileRegularExpression;
- this->SourceFileExtensions = mf.SourceFileExtensions;
- this->HeaderFileExtensions = mf.HeaderFileExtensions;
- this->DefineFlags = mf.DefineFlags;
- #if defined(CMAKE_BUILD_WITH_CMAKE)
- this->SourceGroups = mf.SourceGroups;
- #endif
- this->DefinitionStack.push_back(mf.DefinitionStack.back());
- this->LocalGenerator = mf.LocalGenerator;
- this->FunctionBlockers = mf.FunctionBlockers;
- this->DataMap = mf.DataMap;
- this->MacrosMap = mf.MacrosMap;
- this->SubDirectoryOrder = mf.SubDirectoryOrder;
- this->TemporaryDefinitionKey = mf.TemporaryDefinitionKey;
- this->Properties = mf.Properties;
- this->PreOrder = mf.PreOrder;
- this->ListFileStack = mf.ListFileStack;
- this->Initialize();
- this->PushPolicy();
- }
- //----------------------------------------------------------------------------
- void cmMakefile::Initialize()
- {
- this->cmDefineRegex.compile("#cmakedefine[ \t]+([A-Za-z_0-9]*)");
- this->cmDefine01Regex.compile("#cmakedefine01[ \t]+([A-Za-z_0-9]*)");
- this->cmAtVarRegex.compile("(@[A-Za-z_0-9/.+-]+@)");
- }
- unsigned int cmMakefile::GetCacheMajorVersion()
- {
- return this->GetCacheManager()->GetCacheMajorVersion();
- }
- unsigned int cmMakefile::GetCacheMinorVersion()
- {
- return this->GetCacheManager()->GetCacheMinorVersion();
- }
- bool cmMakefile::NeedCacheCompatibility(int major, int minor)
- {
- return this->GetCacheManager()->NeedCacheCompatibility(major, minor);
- }
- cmMakefile::~cmMakefile()
- {
- for(std::vector<cmInstallGenerator*>::iterator
- i = this->InstallGenerators.begin();
- i != this->InstallGenerators.end(); ++i)
- {
- delete *i;
- }
- for(std::vector<cmSourceFile*>::iterator i = this->SourceFiles.begin();
- i != this->SourceFiles.end(); ++i)
- {
- delete *i;
- }
- for(std::vector<cmTest*>::iterator i = this->Tests.begin();
- i != this->Tests.end(); ++i)
- {
- delete *i;
- }
- for(std::vector<cmTarget*>::iterator
- i = this->ImportedTargetsOwned.begin();
- i != this->ImportedTargetsOwned.end(); ++i)
- {
- delete *i;
- }
- for(unsigned int i=0; i < this->UsedCommands.size(); i++)
- {
- delete this->UsedCommands[i];
- }
- for(DataMapType::const_iterator d = this->DataMap.begin();
- d != this->DataMap.end(); ++d)
- {
- if(d->second)
- {
- delete d->second;
- }
- }
- std::list<cmFunctionBlocker *>::iterator pos;
- for (pos = this->FunctionBlockers.begin();
- pos != this->FunctionBlockers.end(); ++pos)
- {
- cmFunctionBlocker* b = *pos;
- delete b;
- }
- this->FunctionBlockers.clear();
- this->PolicyStack.pop_back();
- }
- void cmMakefile::PrintStringVector(const char* s,
- const std::vector<std::string>& v) const
- {
- std::cout << s << ": ( \n";
- for(std::vector<std::string>::const_iterator i = v.begin();
- i != v.end(); ++i)
- {
- std::cout << (*i).c_str() << " ";
- }
- std::cout << " )\n";
- }
- void cmMakefile
- ::PrintStringVector(const char* s,
- const std::vector<std::pair<cmStdString, bool> >& v) const
- {
- std::cout << s << ": ( \n";
- for(std::vector<std::pair<cmStdString, bool> >::const_iterator i
- = v.begin(); i != v.end(); ++i)
- {
- std::cout << i->first.c_str() << " " << i->second;
- }
- std::cout << " )\n";
- }
- // call print on all the classes in the makefile
- void cmMakefile::Print()
- {
- // print the class lists
- std::cout << "classes:\n";
- std::cout << " this->Targets: ";
- for (cmTargets::iterator l = this->Targets.begin();
- l != this->Targets.end(); l++)
- {
- std::cout << l->first << std::endl;
- }
- std::cout << " this->StartOutputDirectory; " <<
- this->StartOutputDirectory.c_str() << std::endl;
- std::cout << " this->HomeOutputDirectory; " <<
- this->HomeOutputDirectory.c_str() << std::endl;
- std::cout << " this->cmStartDirectory; " <<
- this->cmStartDirectory.c_str() << std::endl;
- std::cout << " this->cmHomeDirectory; " <<
- this->cmHomeDirectory.c_str() << std::endl;
- std::cout << " this->ProjectName; "
- << this->ProjectName.c_str() << std::endl;
- this->PrintStringVector("this->IncludeDirectories;",
- this->IncludeDirectories);
- this->PrintStringVector("this->LinkDirectories", this->LinkDirectories);
- #if defined(CMAKE_BUILD_WITH_CMAKE)
- for( std::vector<cmSourceGroup>::const_iterator i =
- this->SourceGroups.begin(); i != this->SourceGroups.end(); ++i)
- {
- std::cout << "Source Group: " << i->GetName() << std::endl;
- }
- #endif
- }
- bool cmMakefile::CommandExists(const char* name) const
- {
- return this->GetCMakeInstance()->CommandExists(name);
- }
- bool cmMakefile::ExecuteCommand(const cmListFileFunction& lff,
- cmExecutionStatus &status)
- {
- bool result = true;
- // quick return if blocked
- if(this->IsFunctionBlocked(lff,status))
- {
- // No error.
- return result;
- }
-
- std::string name = lff.Name;
- // execute the command
- cmCommand *rm =
- this->GetCMakeInstance()->GetCommand(name.c_str());
- if(rm)
- {
- // const char* versionValue
- // = this->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
- // int major = 0;
- // int minor = 0;
- // if ( versionValue )
- // {
- // sscanf(versionValue, "%d.%d", &major, &minor);
- // }
- cmCommand* usedCommand = rm->Clone();
- usedCommand->SetMakefile(this);
- bool keepCommand = false;
- if(usedCommand->GetEnabled() && !cmSystemTools::GetFatalErrorOccured() &&
- (!this->GetCMakeInstance()->GetScriptMode() ||
- usedCommand->IsScriptable()))
- {
- if(!usedCommand->InvokeInitialPass(lff.Arguments,status))
- {
- cmOStringStream error;
- error << "Error in cmake code at\n"
- << lff.FilePath << ":" << lff.Line << ":\n"
- << usedCommand->GetError() << std::endl
- << " Called from: " << this->GetListFileStack().c_str();
- cmSystemTools::Error(error.str().c_str());
- result = false;
- if ( this->GetCMakeInstance()->GetScriptMode() )
- {
- cmSystemTools::SetFatalErrorOccured();
- }
- }
- else
- {
- // use the command
- keepCommand = true;
- this->UsedCommands.push_back(usedCommand);
- }
- }
- else if ( this->GetCMakeInstance()->GetScriptMode()
- && !usedCommand->IsScriptable() )
- {
- cmOStringStream error;
- error << "Error in cmake code at\n"
- << lff.FilePath << ":" << lff.Line << ":\n"
- << "Command " << usedCommand->GetName()
- << "() is not scriptable" << std::endl;
- cmSystemTools::Error(error.str().c_str());
- result = false;
- cmSystemTools::SetFatalErrorOccured();
- }
- // if the Cloned command was not used
- // then delete it
- if(!keepCommand)
- {
- delete usedCommand;
- }
- }
- else
- {
- if(!cmSystemTools::GetFatalErrorOccured())
- {
- cmOStringStream error;
- error << "Error in cmake code at\n"
- << lff.FilePath << ":" << lff.Line << ":\n"
- << "Unknown CMake command \"" << lff.Name.c_str() << "\".";
- cmSystemTools::Error(error.str().c_str());
- result = false;
- cmSystemTools::SetFatalErrorOccured();
- }
- }
- return result;
- }
- // Parse the given CMakeLists.txt file executing all commands
- //
- bool cmMakefile::ReadListFile(const char* filename_in,
- const char *external_in,
- std::string* fullPath)
- {
- std::string currentParentFile
- = this->GetSafeDefinition("CMAKE_PARENT_LIST_FILE");
- std::string currentFile
- = this->GetSafeDefinition("CMAKE_CURRENT_LIST_FILE");
- this->AddDefinition("CMAKE_PARENT_LIST_FILE", filename_in);
- // used to watch for blockers going out of scope
- // e.g. mismatched IF statement
- std::set<cmFunctionBlocker *> originalBlockers;
- const char* external = 0;
- std::string external_abs;
- const char* filename = filename_in;
- std::string filename_abs;
- if (external_in)
- {
- external_abs =
- cmSystemTools::CollapseFullPath(external_in,
- this->cmStartDirectory.c_str());
- external = external_abs.c_str();
- if (filename_in)
- {
- filename_abs =
- cmSystemTools::CollapseFullPath(filename_in,
- this->cmStartDirectory.c_str());
- filename = filename_abs.c_str();
- }
- }
- // keep track of the current file being read
- if (filename)
- {
- if(this->cmCurrentListFile != filename)
- {
- this->cmCurrentListFile = filename;
- }
- // loop over current function blockers and record them
- std::list<cmFunctionBlocker *>::iterator pos;
- for (pos = this->FunctionBlockers.begin();
- pos != this->FunctionBlockers.end(); ++pos)
- {
- originalBlockers.insert(*pos);
- }
- }
- // Now read the input file
- const char *filenametoread= filename;
- if( external)
- {
- filenametoread= external;
- }
- this->AddDefinition("CMAKE_CURRENT_LIST_FILE", filenametoread);
- // try to see if the list file is the top most
- // list file for a project, and if it is, then it
- // must have a project command. If there is not
- // one, then cmake will provide one via the
- // cmListFileCache class.
- bool requireProjectCommand = false;
- if(!external && this->cmStartDirectory == this->cmHomeDirectory)
- {
- if(cmSystemTools::LowerCase(
- cmSystemTools::GetFilenameName(filename)) == "cmakelists.txt")
- {
- requireProjectCommand = true;
- }
- }
- // push the listfile onto the stack
- this->ListFileStack.push_back(filenametoread);
- if(fullPath!=0)
- {
- *fullPath=filenametoread;
- }
- cmListFile cacheFile;
- if( !cacheFile.ParseFile(filenametoread, requireProjectCommand) )
- {
- // pop the listfile off the stack
- this->ListFileStack.pop_back();
- if(fullPath!=0)
- {
- *fullPath = "";
- }
- this->AddDefinition("CMAKE_PARENT_LIST_FILE", currentParentFile.c_str());
- this->AddDefinition("CMAKE_CURRENT_LIST_FILE", currentFile.c_str());
- return false;
- }
- // add this list file to the list of dependencies
- this->ListFiles.push_back( filenametoread);
- const size_t numberFunctions = cacheFile.Functions.size();
- for(size_t i =0; i < numberFunctions; ++i)
- {
- cmExecutionStatus status;
- this->ExecuteCommand(cacheFile.Functions[i],status);
- if (status.GetReturnInvoked() ||
- cmSystemTools::GetFatalErrorOccured() )
- {
- // pop the listfile off the stack
- this->ListFileStack.pop_back();
- this->AddDefinition("CMAKE_PARENT_LIST_FILE",
- currentParentFile.c_str());
- this->AddDefinition("CMAKE_CURRENT_LIST_FILE", currentFile.c_str());
- return true;
- }
- }
- // send scope ended to and function blockers
- if (filename)
- {
- // loop over all function blockers to see if any block this command
- std::list<cmFunctionBlocker *>::iterator pos;
- for (pos = this->FunctionBlockers.begin();
- pos != this->FunctionBlockers.end(); ++pos)
- {
- // if this blocker was not in the original then send a
- // scope ended message
- if (originalBlockers.find(*pos) == originalBlockers.end())
- {
- (*pos)->ScopeEnded(*this);
- }
- }
- }
- this->AddDefinition("CMAKE_PARENT_LIST_FILE", currentParentFile.c_str());
- this->AddDefinition("CMAKE_CURRENT_LIST_FILE", currentFile.c_str());
- // pop the listfile off the stack
- this->ListFileStack.pop_back();
- return true;
- }
- void cmMakefile::AddCommand(cmCommand* wg)
- {
- this->GetCMakeInstance()->AddCommand(wg);
- }
- // Set the make file
- void cmMakefile::SetLocalGenerator(cmLocalGenerator* lg)
- {
- this->LocalGenerator = lg;
- }
- bool cmMakefile::NeedBackwardsCompatibility(unsigned int major,
- unsigned int minor,
- unsigned int patch)
- {
- if(this->LocalGenerator)
- {
- return
- this->LocalGenerator->NeedBackwardsCompatibility(major, minor, patch);
- }
- else
- {
- return false;
- }
- }
- void cmMakefile::FinalPass()
- {
- // do all the variable expansions here
- this->ExpandVariables();
- // give all the commands a chance to do something
- // after the file has been parsed before generation
- for(std::vector<cmCommand*>::iterator i = this->UsedCommands.begin();
- i != this->UsedCommands.end(); ++i)
- {
- (*i)->FinalPass();
- }
- }
- // Generate the output file
- void cmMakefile::ConfigureFinalPass()
- {
- this->FinalPass();
- const char* oldValue
- = this->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
- if (oldValue && atof(oldValue) <= 1.2)
- {
- cmSystemTools::Error("You have requested backwards compatibility "
- "with CMake version 1.2 or earlier. This version "
- "of CMake only supports backwards compatibility "
- "with CMake 1.4 or later. For compatibility with "
- "1.2 or earlier please use CMake 2.0");
- }
- for (cmTargets::iterator l = this->Targets.begin();
- l != this->Targets.end(); l++)
- {
- l->second.AnalyzeLibDependencies(*this);
- }
- }
- //----------------------------------------------------------------------------
- void
- cmMakefile::AddCustomCommandToTarget(const char* target,
- const std::vector<std::string>& depends,
- const cmCustomCommandLines& commandLines,
- cmTarget::CustomCommandType type,
- const char* comment,
- const char* workingDir,
- bool escapeOldStyle)
- {
- // Find the target to which to add the custom command.
- cmTargets::iterator ti = this->Targets.find(target);
- if(ti != this->Targets.end())
- {
- // Add the command to the appropriate build step for the target.
- std::vector<std::string> no_output;
- cmCustomCommand cc(no_output, depends, commandLines, comment, workingDir);
- cc.SetEscapeOldStyle(escapeOldStyle);
- switch(type)
- {
- case cmTarget::PRE_BUILD:
- ti->second.GetPreBuildCommands().push_back(cc);
- break;
- case cmTarget::PRE_LINK:
- ti->second.GetPreLinkCommands().push_back(cc);
- break;
- case cmTarget::POST_BUILD:
- ti->second.GetPostBuildCommands().push_back(cc);
- break;
- }
- }
- }
- //----------------------------------------------------------------------------
- void
- cmMakefile::AddCustomCommandToOutput(const std::vector<std::string>& outputs,
- const std::vector<std::string>& depends,
- const char* main_dependency,
- const cmCustomCommandLines& commandLines,
- const char* comment,
- const char* workingDir,
- bool replace,
- bool escapeOldStyle)
- {
- // Make sure there is at least one output.
- if(outputs.empty())
- {
- cmSystemTools::Error("Attempt to add a custom rule with no output!");
- return;
- }
- // Choose a source file on which to store the custom command.
- cmSourceFile* file = 0;
- if(main_dependency && main_dependency[0])
- {
- // The main dependency was specified. Use it unless a different
- // custom command already used it.
- file = this->GetSource(main_dependency);
- if(file && file->GetCustomCommand() && !replace)
- {
- // The main dependency already has a custom command.
- if(commandLines == file->GetCustomCommand()->GetCommandLines())
- {
- // The existing custom command is identical. Silently ignore
- // the duplicate.
- return;
- }
- else
- {
- // The existing custom command is different. We need to
- // generate a rule file for this new command.
- file = 0;
- }
- }
- else
- {
- // The main dependency does not have a custom command or we are
- // allowed to replace it. Use it to store the command.
- file = this->GetOrCreateSource(main_dependency);
- }
- }
- // Generate a rule file if the main dependency is not available.
- if(!file)
- {
- // Construct a rule file associated with the first output produced.
- std::string outName = outputs[0];
- outName += ".rule";
- // Check if the rule file already exists.
- file = this->GetSource(outName.c_str());
- if(file && file->GetCustomCommand() && !replace)
- {
- // The rule file already exists.
- if(commandLines != file->GetCustomCommand()->GetCommandLines())
- {
- cmSystemTools::Error("Attempt to add a custom rule to output \"",
- outName.c_str(),
- "\" which already has a custom rule.");
- }
- return;
- }
- // Create a cmSourceFile for the rule file.
- file = this->GetOrCreateSource(outName.c_str(), true);
- }
- // Always create the output sources and mark them generated.
- for(std::vector<std::string>::const_iterator o = outputs.begin();
- o != outputs.end(); ++o)
- {
- if(cmSourceFile* out = this->GetOrCreateSource(o->c_str(), true))
- {
- out->SetProperty("GENERATED", "1");
- }
- }
- // Construct a complete list of dependencies.
- std::vector<std::string> depends2(depends);
- if(main_dependency && main_dependency[0])
- {
- depends2.push_back(main_dependency);
- }
- // Attach the custom command to the file.
- if(file)
- {
- cmCustomCommand* cc =
- new cmCustomCommand(outputs, depends2, commandLines,
- comment, workingDir);
- cc->SetEscapeOldStyle(escapeOldStyle);
- file->SetCustomCommand(cc);
- }
- }
- //----------------------------------------------------------------------------
- void
- cmMakefile::AddCustomCommandToOutput(const char* output,
- const std::vector<std::string>& depends,
- const char* main_dependency,
- const cmCustomCommandLines& commandLines,
- const char* comment,
- const char* workingDir,
- bool replace,
- bool escapeOldStyle)
- {
- std::vector<std::string> outputs;
- outputs.push_back(output);
- this->AddCustomCommandToOutput(outputs, depends, main_dependency,
- commandLines, comment, workingDir,
- replace, escapeOldStyle);
- }
- //----------------------------------------------------------------------------
- void
- cmMakefile::AddCustomCommandOldStyle(const char* target,
- const std::vector<std::string>& outputs,
- const std::vector<std::string>& depends,
- const char* source,
- const cmCustomCommandLines& commandLines,
- const char* comment)
- {
- // Translate the old-style signature to one of the new-style
- // signatures.
- if(strcmp(source, target) == 0)
- {
- // In the old-style signature if the source and target were the
- // same then it added a post-build rule to the target. Preserve
- // this behavior.
- this->AddCustomCommandToTarget(target, depends, commandLines,
- cmTarget::POST_BUILD, comment, 0);
- return;
- }
- // Each output must get its own copy of this rule.
- cmsys::RegularExpression sourceFiles("\\.(C|M|c|c\\+\\+|cc|cpp|cxx|m|mm|"
- "rc|def|r|odl|idl|hpj|bat|h|h\\+\\+|"
- "hm|hpp|hxx|in|txx|inl)$");
- for(std::vector<std::string>::const_iterator oi = outputs.begin();
- oi != outputs.end(); ++oi)
- {
- // Get the name of this output.
- const char* output = oi->c_str();
- // Choose whether to use a main dependency.
- if(sourceFiles.find(source))
- {
- // The source looks like a real file. Use it as the main dependency.
- this->AddCustomCommandToOutput(output, depends, source,
- commandLines, comment, 0);
- }
- else
- {
- // The source may not be a real file. Do not use a main dependency.
- const char* no_main_dependency = 0;
- std::vector<std::string> depends2 = depends;
- depends2.push_back(source);
- this->AddCustomCommandToOutput(output, depends2, no_main_dependency,
- commandLines, comment, 0);
- }
- // If the rule was added to the source (and not a .rule file),
- // then add the source to the target to make sure the rule is
- // included.
- std::string sname = output;
- sname += ".rule";
- if(!this->GetSource(sname.c_str()))
- {
- if (this->Targets.find(target) != this->Targets.end())
- {
- this->Targets[target].AddSource(source);
- }
- else
- {
- cmSystemTools::Error("Attempt to add a custom rule to a target "
- "that does not exist yet for target ", target);
- return;
- }
- }
- }
- }
- //----------------------------------------------------------------------------
- void cmMakefile::AddUtilityCommand(const char* utilityName,
- bool excludeFromAll,
- const std::vector<std::string>& depends,
- const char* workingDirectory,
- const char* command,
- const char* arg1,
- const char* arg2,
- const char* arg3,
- const char* arg4)
- {
- // Construct the command line for the custom command.
- cmCustomCommandLine commandLine;
- commandLine.push_back(command);
- if(arg1)
- {
- commandLine.push_back(arg1);
- }
- if(arg2)
- {
- commandLine.push_back(arg2);
- }
- if(arg3)
- {
- commandLine.push_back(arg3);
- }
- if(arg4)
- {
- commandLine.push_back(arg4);
- }
- cmCustomCommandLines commandLines;
- commandLines.push_back(commandLine);
- // Call the real signature of this method.
- this->AddUtilityCommand(utilityName, excludeFromAll, workingDirectory,
- depends, commandLines);
- }
- //----------------------------------------------------------------------------
- void cmMakefile::AddUtilityCommand(const char* utilityName,
- bool excludeFromAll,
- const char* workingDirectory,
- const std::vector<std::string>& depends,
- const cmCustomCommandLines& commandLines,
- bool escapeOldStyle, const char* comment)
- {
- // Create a target instance for this utility.
- cmTarget* target = this->AddNewTarget(cmTarget::UTILITY, utilityName);
- if (excludeFromAll)
- {
- target->SetProperty("EXCLUDE_FROM_ALL", "TRUE");
- }
- if(!comment)
- {
- // Use an empty comment to avoid generation of default comment.
- comment = "";
- }
- // Store the custom command in the target.
- std::string force = this->GetStartOutputDirectory();
- force += cmake::GetCMakeFilesDirectory();
- force += "/";
- force += utilityName;
- const char* no_main_dependency = 0;
- bool no_replace = false;
- this->AddCustomCommandToOutput(force.c_str(), depends,
- no_main_dependency,
- commandLines, comment,
- workingDirectory, no_replace,
- escapeOldStyle);
- cmSourceFile* sf = target->AddSource(force.c_str());
- // The output is not actually created so mark it symbolic.
- if(sf)
- {
- sf->SetProperty("SYMBOLIC", "1");
- }
- else
- {
- cmSystemTools::Error("Could not get source file entry for ",
- force.c_str());
- }
- }
- void cmMakefile::AddDefineFlag(const char* flag)
- {
- if (!flag)
- {
- return;
- }
- // If this is really a definition, update COMPILE_DEFINITIONS.
- if(this->ParseDefineFlag(flag, false))
- {
- return;
- }
- // remove any \n\r
- std::string ret = flag;
- std::string::size_type pos = 0;
- while((pos = ret.find('\n', pos)) != std::string::npos)
- {
- ret[pos] = ' ';
- pos++;
- }
- pos = 0;
- while((pos = ret.find('\r', pos)) != std::string::npos)
- {
- ret[pos] = ' ';
- pos++;
- }
- this->DefineFlags += " ";
- this->DefineFlags += ret;
- }
- void cmMakefile::RemoveDefineFlag(const char* flag)
- {
- // Check the length of the flag to remove.
- std::string::size_type len = strlen(flag);
- if(len < 1)
- {
- return;
- }
- // If this is really a definition, update COMPILE_DEFINITIONS.
- if(this->ParseDefineFlag(flag, true))
- {
- return;
- }
- // Remove all instances of the flag that are surrounded by
- // whitespace or the beginning/end of the string.
- for(std::string::size_type lpos = this->DefineFlags.find(flag, 0);
- lpos != std::string::npos; lpos = this->DefineFlags.find(flag, lpos))
- {
- std::string::size_type rpos = lpos + len;
- if((lpos <= 0 || isspace(this->DefineFlags[lpos-1])) &&
- (rpos >= this->DefineFlags.size() || isspace(this->DefineFlags[rpos])))
- {
- this->DefineFlags.erase(lpos, len);
- }
- else
- {
- ++lpos;
- }
- }
- }
- bool cmMakefile::ParseDefineFlag(std::string const& def, bool remove)
- {
- // Create a regular expression to match valid definitions.
- // Definitions with non-trivial values must not be matched because
- // escaping them could break compatibility with escapes added by
- // users.
- static cmsys::RegularExpression
- regex("^[-/]D[A-Za-z_][A-Za-z0-9_]*(=[A-Za-z0-9_.]+)?$");
- // Make sure the definition matches.
- if(!regex.find(def.c_str()))
- {
- return false;
- }
- // VS6 IDE does not support definitions with values.
- if((strcmp(this->LocalGenerator->GetGlobalGenerator()->GetName(),
- "Visual Studio 6") == 0) &&
- (def.find("=") != def.npos))
- {
- return false;
- }
- // Get the definition part after the flag.
- const char* define = def.c_str() + 2;
- if(remove)
- {
- if(const char* cdefs = this->GetProperty("COMPILE_DEFINITIONS"))
- {
- // Expand the list.
- std::vector<std::string> defs;
- cmSystemTools::ExpandListArgument(cdefs, defs);
- // Recompose the list without the definition.
- std::string ndefs;
- const char* sep = "";
- for(std::vector<std::string>::const_iterator di = defs.begin();
- di != defs.end(); ++di)
- {
- if(*di != define)
- {
- ndefs += sep;
- sep = ";";
- ndefs += *di;
- }
- }
- // Store the new list.
- this->SetProperty("COMPILE_DEFINITIONS", ndefs.c_str());
- }
- }
- else
- {
- // Append the definition to the directory property.
- this->AppendProperty("COMPILE_DEFINITIONS", define);
- }
- return true;
- }
- void cmMakefile::AddLinkLibrary(const char* lib,
- cmTarget::LinkLibraryType llt)
- {
- cmTarget::LibraryID tmp;
- tmp.first = lib;
- tmp.second = llt;
- this->LinkLibraries.push_back(tmp);
- }
- void cmMakefile::AddLinkLibraryForTarget(const char *target,
- const char* lib,
- cmTarget::LinkLibraryType llt)
- {
- cmTargets::iterator i = this->Targets.find(target);
- if ( i != this->Targets.end())
- {
- cmTarget* tgt =
- this->GetCMakeInstance()->GetGlobalGenerator()->FindTarget(0,lib);
- if(tgt)
- {
- bool allowModules = true;
- const char* versionValue
- = this->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
- if (versionValue && (atof(versionValue) >= 2.4) )
- {
- allowModules = false;
- }
- // if it is not a static or shared library then you can not link to it
- if(!((tgt->GetType() == cmTarget::STATIC_LIBRARY) ||
- (tgt->GetType() == cmTarget::SHARED_LIBRARY) ||
- tgt->IsExecutableWithExports()))
- {
- cmOStringStream e;
- e << "Attempt to add link target " << lib << " of type: "
- << cmTarget::TargetTypeNames[static_cast<int>(tgt->GetType())]
- << "\nto target " << target
- << ". One can only link to STATIC or SHARED libraries, or "
- << "to executables with the ENABLE_EXPORTS property set.";
- // in older versions of cmake linking to modules was allowed
- if( tgt->GetType() == cmTarget::MODULE_LIBRARY )
- {
- e <<
- "\nTo allow linking of modules set "
- "CMAKE_BACKWARDS_COMPATIBILITY to 2.2 or lower\n";
- }
- // if no modules are allowed then this is always an error
- if(!allowModules ||
- // if we allow modules but the type is not a module then it is
- // still an error
- (allowModules && tgt->GetType() != cmTarget::MODULE_LIBRARY))
- {
- cmSystemTools::Error(e.str().c_str());
- }
- }
- }
- i->second.AddLinkLibrary( *this, target, lib, llt );
- }
- else
- {
- cmOStringStream e;
- e << "Attempt to add link library \""
- << lib << "\" to target \""
- << target << "\" which is not built by this project.";
- cmSystemTools::Error(e.str().c_str());
- }
- }
- void cmMakefile::AddLinkDirectoryForTarget(const char *target,
- const char* d)
- {
- cmTargets::iterator i = this->Targets.find(target);
- if ( i != this->Targets.end())
- {
- i->second.AddLinkDirectory( d );
- }
- else
- {
- cmSystemTools::Error
- ("Attempt to add link directories to non-existant target: ",
- target, " for directory ", d);
- }
- }
- void cmMakefile::AddLinkLibrary(const char* lib)
- {
- this->AddLinkLibrary(lib,cmTarget::GENERAL);
- }
- void cmMakefile::AddLinkDirectory(const char* dir)
- {
- // Don't add a link directory that is already present. Yes, this
- // linear search results in n^2 behavior, but n won't be getting
- // much bigger than 20. We cannot use a set because of order
- // dependency of the link search path.
- if(!dir)
- {
- return;
- }
- // remove trailing slashes
- if(dir[strlen(dir)-1] == '/')
- {
- std::string newdir = dir;
- newdir = newdir.substr(0, newdir.size()-1);
- if(std::find(this->LinkDirectories.begin(),
- this->LinkDirectories.end(),
- newdir.c_str()) == this->LinkDirectories.end())
- {
- this->LinkDirectories.push_back(newdir);
- }
- }
- else
- {
- if(std::find(this->LinkDirectories.begin(),
- this->LinkDirectories.end(), dir)
- == this->LinkDirectories.end())
- {
- this->LinkDirectories.push_back(dir);
- }
- }
- }
- void cmMakefile::InitializeFromParent()
- {
- cmMakefile *parent = this->LocalGenerator->GetParent()->GetMakefile();
- // copy the definitions
- this->DefinitionStack.front() = parent->DefinitionStack.back();
- // copy include paths
- this->IncludeDirectories = parent->IncludeDirectories;
- this->SystemIncludeDirectories = parent->SystemIncludeDirectories;
- // define flags
- this->DefineFlags = parent->DefineFlags;
- // compile definitions property and per-config versions
- {
- this->SetProperty("COMPILE_DEFINITIONS",
- parent->GetProperty("COMPILE_DEFINITIONS"));
- std::vector<std::string> configs;
- if(const char* configTypes =
- this->GetDefinition("CMAKE_CONFIGURATION_TYPES"))
- {
- cmSystemTools::ExpandListArgument(configTypes, configs);
- }
- else if(const char* buildType =
- this->GetDefinition("CMAKE_BUILD_TYPE"))
- {
- configs.push_back(buildType);
- }
- for(std::vector<std::string>::const_iterator ci = configs.begin();
- ci != configs.end(); ++ci)
- {
- std::string defPropName = "COMPILE_DEFINITIONS_";
- defPropName += cmSystemTools::UpperCase(*ci);
- this->SetProperty(defPropName.c_str(),
- parent->GetProperty(defPropName.c_str()));
- }
- }
- // link libraries
- this->LinkLibraries = parent->LinkLibraries;
- // link directories
- this->LinkDirectories = parent->LinkDirectories;
- // the initial project name
- this->ProjectName = parent->ProjectName;
- // Copy include regular expressions.
- this->IncludeFileRegularExpression = parent->IncludeFileRegularExpression;
- this->ComplainFileRegularExpression = parent->ComplainFileRegularExpression;
- // Imported targets.
- this->ImportedTargets = parent->ImportedTargets;
- }
- void cmMakefile::ConfigureSubDirectory(cmLocalGenerator *lg2)
- {
- // copy our variables from the child makefile
- lg2->GetMakefile()->InitializeFromParent();
- lg2->GetMakefile()->MakeStartDirectoriesCurrent();
- if (this->GetCMakeInstance()->GetDebugOutput())
- {
- std::string msg=" Entering ";
- msg += lg2->GetMakefile()->GetCurrentDirectory();
- cmSystemTools::Message(msg.c_str());
- }
- // finally configure the subdir
- lg2->Configure();
- if (this->GetCMakeInstance()->GetDebugOutput())
- {
- std::string msg=" Returning to ";
- msg += this->GetCurrentDirectory();
- cmSystemTools::Message(msg.c_str());
- }
- }
- void cmMakefile::AddSubDirectory(const char* sub,
- bool excludeFromAll, bool preorder)
- {
- // the source path must be made full if it isn't already
- std::string srcPath = sub;
- if (!cmSystemTools::FileIsFullPath(srcPath.c_str()))
- {
- srcPath = this->GetCurrentDirectory();
- srcPath += "/";
- srcPath += sub;
- }
- // binary path must be made full if it isn't already
- std::string binPath = sub;
- if (!cmSystemTools::FileIsFullPath(binPath.c_str()))
- {
- binPath = this->GetCurrentOutputDirectory();
- binPath += "/";
- binPath += sub;
- }
- this->AddSubDirectory(srcPath.c_str(), binPath.c_str(),
- excludeFromAll, preorder, false);
- }
- void cmMakefile::AddSubDirectory(const char* srcPath, const char *binPath,
- bool excludeFromAll, bool preorder,
- bool immediate)
- {
- std::vector<cmLocalGenerator *>& children =
- this->LocalGenerator->GetChildren();
- // has this directory already been added? If so error
- unsigned int i;
- for (i = 0; i < children.size(); ++i)
- {
- if (srcPath == children[i]->GetMakefile()->GetStartDirectory())
- {
- cmSystemTools::Error
- ("Attempt to add subdirectory multiple times for directory.\n",
- srcPath);
- return;
- }
- }
- // create a new local generator and set its parent
- cmLocalGenerator *lg2 =
- this->LocalGenerator->GetGlobalGenerator()->CreateLocalGenerator();
- lg2->SetParent(this->LocalGenerator);
- this->LocalGenerator->GetGlobalGenerator()->AddLocalGenerator(lg2);
- // set the subdirs start dirs
- lg2->GetMakefile()->SetStartDirectory(srcPath);
- lg2->GetMakefile()->SetStartOutputDirectory(binPath);
- if(excludeFromAll)
- {
- lg2->GetMakefile()->SetProperty("EXCLUDE_FROM_ALL", "TRUE");
- }
- lg2->GetMakefile()->SetPreOrder(preorder);
- if (immediate)
- {
- this->ConfigureSubDirectory(lg2);
- }
- }
- void cmMakefile::AddIncludeDirectory(const char* inc, bool before)
- {
- // if there is a newline then break it into multiple arguments
- if (!inc)
- {
- return;
- }
- // Don't add an include directory that is already present. Yes,
- // this linear search results in n^2 behavior, but n won't be
- // getting much bigger than 20. We cannot use a set because of
- // order dependency of the include path.
- std::vector<std::string>::iterator i =
- std::find(this->IncludeDirectories.begin(),
- this->IncludeDirectories.end(), inc);
- if(i == this->IncludeDirectories.end())
- {
- if (before)
- {
- // WARNING: this *is* expensive (linear time) since it's a vector
- this->IncludeDirectories.insert(this->IncludeDirectories.begin(), inc);
- }
- else
- {
- this->IncludeDirectories.push_back(inc);
- }
- }
- else
- {
- if(before)
- {
- // if this before and already in the path then remove it
- this->IncludeDirectories.erase(i);
- // WARNING: this *is* expensive (linear time) since it's a vector
- this->IncludeDirectories.insert(this->IncludeDirectories.begin(), inc);
- }
- }
- }
- //----------------------------------------------------------------------------
- void cmMakefile::AddSystemIncludeDirectory(const char* dir)
- {
- this->SystemIncludeDirectories.insert(dir);
- }
- //----------------------------------------------------------------------------
- bool cmMakefile::IsSystemIncludeDirectory(const char* dir)
- {
- return (this->SystemIncludeDirectories.find(dir) !=
- this->SystemIncludeDirectories.end());
- }
- void cmMakefile::AddDefinition(const char* name, const char* value)
- {
- if (!value )
- {
- return;
- }
- #ifdef CMAKE_STRICT
- if (this->GetCMakeInstance())
- {
- this->GetCMakeInstance()->
- RecordPropertyAccess(name,cmProperty::VARIABLE);
- }
- #endif
- this->TemporaryDefinitionKey = name;
- this->DefinitionStack.back()[this->TemporaryDefinitionKey] = value;
- #ifdef CMAKE_BUILD_WITH_CMAKE
- cmVariableWatch* vv = this->GetVariableWatch();
- if ( vv )
- {
- vv->VariableAccessed(this->TemporaryDefinitionKey,
- cmVariableWatch::VARIABLE_MODIFIED_ACCESS,
- value,
- this);
- }
- #endif
- }
- void cmMakefile::AddCacheDefinition(const char* name, const char* value,
- const char* doc,
- cmCacheManager::CacheEntryType type)
- {
- const char* val = value;
- cmCacheManager::CacheIterator it =
- this->GetCacheManager()->GetCacheIterator(name);
- if(!it.IsAtEnd() && (it.GetType() == cmCacheManager::UNINITIALIZED) &&
- it.Initialized())
- {
- val = it.GetValue();
- if ( type == cmCacheManager::PATH || type == cmCacheManager::FILEPATH )
- {
- std::vector<std::string>::size_type cc;
- std::vector<std::string> files;
- std::string nvalue = "";
- cmSystemTools::ExpandListArgument(val, files);
- for ( cc = 0; cc < files.size(); cc ++ )
- {
- files[cc] = cmSystemTools::CollapseFullPath(files[cc].c_str());
- if ( cc > 0 )
- {
- nvalue += ";";
- }
- nvalue += files[cc];
- }
- this->GetCacheManager()->AddCacheEntry(name, nvalue.c_str(), doc, type);
- val = it.GetValue();
- }
- }
- this->GetCacheManager()->AddCacheEntry(name, val, doc, type);
- // if there was a definition then remove it
- this->DefinitionStack.back().erase( DefinitionMap::key_type(name));
- }
- void cmMakefile::AddDefinition(const char* name, bool value)
- {
- if(value)
- {
- this->DefinitionStack.back()
- .erase( DefinitionMap::key_type(name));
- this->DefinitionStack.back()
- .insert(DefinitionMap::value_type(name, "ON"));
- }
- else
- {
- this->DefinitionStack.back()
- .erase( DefinitionMap::key_type(name));
- this->DefinitionStack.back()
- .insert(DefinitionMap::value_type(name, "OFF"));
- }
- #ifdef CMAKE_BUILD_WITH_CMAKE
- cmVariableWatch* vv = this->GetVariableWatch();
- if ( vv )
- {
- vv->VariableAccessed(name, cmVariableWatch::VARIABLE_MODIFIED_ACCESS,
- value?"ON":"OFF", this);
- }
- #endif
- }
- void cmMakefile::AddCacheDefinition(const char* name,
- bool value,
- const char* doc)
- {
- bool val = value;
- cmCacheManager::CacheIterator it =
- this->GetCacheManager()->GetCacheIterator(name);
- if(!it.IsAtEnd() && (it.GetType() == cmCacheManager::UNINITIALIZED) &&
- it.Initialized())
- {
- val = it.GetValueAsBool();
- }
- this->GetCacheManager()->AddCacheEntry(name, val, doc);
- this->AddDefinition(name, val);
- }
- void cmMakefile::RemoveDefinition(const char* name)
- {
- this->DefinitionStack.back().erase(DefinitionMap::key_type(name));
- #ifdef CMAKE_BUILD_WITH_CMAKE
- cmVariableWatch* vv = this->GetVariableWatch();
- if ( vv )
- {
- vv->VariableAccessed(name, cmVariableWatch::VARIABLE_REMOVED_ACCESS,
- 0, this);
- }
- #endif
- }
- void cmMakefile::SetProjectName(const char* p)
- {
- this->ProjectName = p;
- }
- void cmMakefile::AddGlobalLinkInformation(const char* name, cmTarget& target)
- {
- // for these targets do not add anything
- switch(target.GetType())
- {
- case cmTarget::UTILITY:
- case cmTarget::GLOBAL_TARGET:
- return;
- default:;
- }
- std::vector<std::string>::iterator j;
- for(j = this->LinkDirectories.begin();
- j != this->LinkDirectories.end(); ++j)
- {
- target.AddLinkDirectory(j->c_str());
- }
- target.MergeLinkLibraries( *this, name, this->LinkLibraries );
- }
- void cmMakefile::AddLibrary(const char* lname, cmTarget::TargetType type,
- const std::vector<std::string> &srcs,
- bool excludeFromAll)
- {
- // wrong type ? default to STATIC
- if ( (type != cmTarget::STATIC_LIBRARY)
- && (type != cmTarget::SHARED_LIBRARY)
- && (type != cmTarget::MODULE_LIBRARY))
- {
- type = cmTarget::STATIC_LIBRARY;
- }
- cmTarget* target = this->AddNewTarget(type, lname);
- // Clear its dependencies. Otherwise, dependencies might persist
- // over changes in CMakeLists.txt, making the information stale and
- // hence useless.
- target->ClearDependencyInformation( *this, lname );
- if(excludeFromAll)
- {
- target->SetProperty("EXCLUDE_FROM_ALL", "TRUE");
- }
- target->AddSources(srcs);
- this->AddGlobalLinkInformation(lname, *target);
- }
- cmTarget* cmMakefile::AddExecutable(const char *exeName,
- const std::vector<std::string> &srcs,
- bool excludeFromAll)
- {
- cmTarget* target = this->AddNewTarget(cmTarget::EXECUTABLE, exeName);
- if(excludeFromAll)
- {
- target->SetProperty("EXCLUDE_FROM_ALL", "TRUE");
- }
- target->AddSources(srcs);
- this->AddGlobalLinkInformation(exeName, *target);
- return target;
- }
- //----------------------------------------------------------------------------
- cmTarget*
- cmMakefile::AddNewTarget(cmTarget::TargetType type, const char* name)
- {
- cmTargets::iterator it;
- cmTarget target;
- target.SetType(type, name);
- target.SetMakefile(this);
- it=this->Targets.insert(
- cmTargets::value_type(target.GetName(), target)).first;
- this->LocalGenerator->GetGlobalGenerator()->AddTarget(*it);
- return &it->second;
- }
- cmSourceFile *cmMakefile::GetSourceFileWithOutput(const char *cname)
- {
- std::string name = cname;
- std::string out;
- // look through all the source files that have custom commands
- // and see if the custom command has the passed source file as an output
- // keep in mind the possible .rule extension that may be tacked on
- for(std::vector<cmSourceFile*>::const_iterator i =
- this->SourceFiles.begin(); i != this->SourceFiles.end(); ++i)
- {
- // does this source file have a custom command?
- if ((*i)->GetCustomCommand())
- {
- // is the output of the custom command match the source files name
- const std::vector<std::string>& outputs =
- (*i)->GetCustomCommand()->GetOutputs();
- for(std::vector<std::string>::const_iterator o = outputs.begin();
- o != outputs.end(); ++o)
- {
- out = *o;
- std::string::size_type pos = out.rfind(name);
- // If the output matches exactly
- if (pos != out.npos &&
- pos == out.size() - name.size() &&
- (pos ==0 || out[pos-1] == '/'))
- {
- return *i;
- }
- }
- }
- }
- // otherwise return NULL
- return 0;
- }
- #if defined(CMAKE_BUILD_WITH_CMAKE)
- cmSourceGroup* cmMakefile::GetSourceGroup(const std::vector<std::string>&name)
- {
- cmSourceGroup* sg = 0;
- // first look for source group starting with the same as the one we wants
- for (std::vector<cmSourceGroup>::iterator sgIt = this->SourceGroups.begin();
- sgIt != this->SourceGroups.end(); ++sgIt)
- {
- std::string sgName = sgIt->GetName();
- if(sgName == name[0])
- {
- sg = &(*sgIt);
- break;
- }
- }
- if(sg != 0)
- {
- // iterate through its children to find match source group
- for(unsigned int i=1; i<name.size(); ++i)
- {
- sg = sg->lookupChild(name[i].c_str());
- if(sg == 0)
- {
- break;
- }
- }
- }
- return sg;
- }
- void cmMakefile::AddSourceGroup(const char* name,
- const char* regex)
- {
- if (name)
- {
- std::vector<std::string> nameVector;
- nameVector.push_back(name);
- AddSourceGroup(nameVector, regex);
- }
- }
- void cmMakefile::AddSourceGroup(const std::vector<std::string>& name,
- const char* regex)
- {
- cmSourceGroup* sg = 0;
- std::vector<std::string> currentName;
- int i = 0;
- const int lastElement = static_cast<int>(name.size()-1);
- for(i=lastElement; i>=0; --i)
- {
- currentName.assign(name.begin(), name.begin()+i+1);
- sg = this->GetSourceGroup(currentName);
- if(sg != 0)
- {
- break;
- }
- }
- // i now contains the index of the last found component
- if(i==lastElement)
- {
- // group already exists, replace its regular expression
- if ( regex )
- {
- // We only want to set the regular expression. If there are already
- // source files in the group, we don't want to remove them.
- sg->SetGroupRegex(regex);
- }
- return;
- }
- else if(i==-1)
- {
- // group does not exists nor belong to any existing group
- // add its first component
- this->SourceGroups.push_back(cmSourceGroup(name[0].c_str(), regex));
- sg = this->GetSourceGroup(currentName);
- i = 0; // last component found
- }
- // build the whole source group path
- for(++i; i<=lastElement; ++i)
- {
- sg->AddChild(cmSourceGroup(name[i].c_str(), 0));
- sg = sg->lookupChild(name[i].c_str());
- }
- sg->SetGroupRegex(regex);
- }
- #endif
- void cmMakefile::AddExtraDirectory(const char* dir)
- {
- this->AuxSourceDirectories.push_back(dir);
- }
- // expance CMAKE_BINARY_DIR and CMAKE_SOURCE_DIR in the
- // include and library directories.
- void cmMakefile::ExpandVariables()
- {
- // Now expand variables in the include and link strings
- for(std::vector<std::string>::iterator d = this->IncludeDirectories.begin();
- d != this->IncludeDirectories.end(); ++d)
- {
- this->ExpandVariablesInString(*d, true, true);
- }
- for(std::vector<std::string>::iterator d = this->LinkDirectories.begin();
- d != this->LinkDirectories.end(); ++d)
- {
- this->ExpandVariablesInString(*d, true, true);
- }
- for(cmTarget::LinkLibraryVectorType::iterator l =
- this->LinkLibraries.begin();
- l != this->LinkLibraries.end(); ++l)
- {
- this->ExpandVariablesInString(l->first, true, true);
- }
- }
- bool cmMakefile::IsOn(const char* name) const
- {
- const char* value = this->GetDefinition(name);
- return cmSystemTools::IsOn(value);
- }
- bool cmMakefile::IsSet(const char* name) const
- {
- const char* value = this->GetDefinition(name);
- if ( !value )
- {
- return false;
- }
- if ( ! *value )
- {
- return false;
- }
- if ( cmSystemTools::IsNOTFOUND(value) )
- {
- return false;
- }
- return true;
- }
- bool cmMakefile::CanIWriteThisFile(const char* fileName)
- {
- if ( !this->IsOn("CMAKE_DISABLE_SOURCE_CHANGES") )
- {
- return true;
- }
- // If we are doing an in-source build, than the test will always fail
- if ( cmSystemTools::SameFile(this->GetHomeDirectory(),
- this->GetHomeOutputDirectory()) )
- {
- if ( this->IsOn("CMAKE_DISABLE_IN_SOURCE_BUILD") )
- {
- return false;
- }
- return true;
- }
- // Check if this is subdirectory of the source tree but not a
- // subdirectory of a build tree
- if ( cmSystemTools::IsSubDirectory(fileName,
- this->GetHomeDirectory()) &&
- !cmSystemTools::IsSubDirectory(fileName,
- this->GetHomeOutputDirectory()) )
- {
- return false;
- }
- return true;
- }
- const char* cmMakefile::GetRequiredDefinition(const char* name) const
- {
- const char* ret = this->GetDefinition(name);
- if(!ret)
- {
- cmSystemTools::Error("Error required internal CMake variable not "
- "set, cmake may be not be built correctly.\n",
- "Missing variable is:\n",
- name);
- return "";
- }
- return ret;
- }
- bool cmMakefile::IsDefinitionSet(const char* name) const
- {
- const char* def = 0;
- DefinitionMap::const_iterator pos =
- this->DefinitionStack.back().find(name);
- if(pos != this->DefinitionStack.back().end())
- {
- def = (*pos).second.c_str();
- }
- else
- {
- def = this->GetCacheManager()->GetCacheValue(name);
- }
- #ifdef CMAKE_BUILD_WITH_CMAKE
- if(cmVariableWatch* vv = this->GetVariableWatch())
- {
- if(!def)
- {
- vv->VariableAccessed
- (name, cmVariableWatch::UNKNOWN_VARIABLE_DEFINED_ACCESS,
- def, this);
- }
- }
- #endif
- return def?true:false;
- }
- const char* cmMakefile::GetDefinition(const char* name) const
- {
- #ifdef CMAKE_STRICT
- if (this->GetCMakeInstance())
- {
- this->GetCMakeInstance()->
- RecordPropertyAccess(name,cmProperty::VARIABLE);
- }
- #endif
- const char* def = 0;
- DefinitionMap::const_iterator pos =
- this->DefinitionStack.back().find(name);
- if(pos != this->DefinitionStack.back().end())
- {
- def = (*pos).second.c_str();
- }
- else
- {
- def = this->GetCacheManager()->GetCacheValue(name);
- }
- #ifdef CMAKE_BUILD_WITH_CMAKE
- cmVariableWatch* vv = this->GetVariableWatch();
- if ( vv )
- {
- if ( def )
- {
- vv->VariableAccessed(name, cmVariableWatch::VARIABLE_READ_ACCESS,
- def, this);
- }
- else
- {
- // are unknown access allowed
- DefinitionMap::const_iterator pos2 =
- this->DefinitionStack.back()
- .find("CMAKE_ALLOW_UNKNOWN_VARIABLE_READ_ACCESS");
- if (pos2 != this->DefinitionStack.back().end() &&
- cmSystemTools::IsOn((*pos2).second.c_str()))
- {
- vv->VariableAccessed(name,
- cmVariableWatch::ALLOWED_UNKNOWN_VARIABLE_READ_ACCESS, def, this);
- }
- else
- {
- vv->VariableAccessed(name,
- cmVariableWatch::UNKNOWN_VARIABLE_READ_ACCESS, def, this);
- }
- }
- }
- #endif
- return def;
- }
- const char* cmMakefile::GetSafeDefinition(const char* def) const
- {
- const char* ret = this->GetDefinition(def);
- if(!ret)
- {
- return "";
- }
- return ret;
- }
- std::vector<std::string> cmMakefile
- ::GetDefinitions(int cacheonly /* = 0 */) const
- {
- std::map<cmStdString, int> definitions;
- if ( !cacheonly )
- {
- DefinitionMap::const_iterator it;
- for ( it = this->DefinitionStack.back().begin();
- it != this->DefinitionStack.back().end(); it ++ )
- {
- definitions[it->first] = 1;
- }
- }
- cmCacheManager::CacheIterator cit =
- this->GetCacheManager()->GetCacheIterator();
- for ( cit.Begin(); !cit.IsAtEnd(); cit.Next() )
- {
- definitions[cit.GetName()] = 1;
- }
- std::vector<std::string> res;
- std::map<cmStdString, int>::iterator fit;
- for ( fit = definitions.begin(); fit != definitions.end(); fit ++ )
- {
- res.push_back(fit->first);
- }
- return res;
- }
- const char *cmMakefile::ExpandVariablesInString(std::string& source)
- {
- return this->ExpandVariablesInString(source, false, false);
- }
- const char *cmMakefile::ExpandVariablesInString(std::string& source,
- bool escapeQuotes,
- bool noEscapes,
- bool atOnly,
- const char* filename,
- long line,
- bool removeEmpty,
- bool replaceAt)
- {
- if ( source.empty() || source.find_first_of("$@\\") == source.npos)
- {
- return source.c_str();
- }
- // Special-case the @ONLY mode.
- if(atOnly)
- {
- if(!noEscapes || !removeEmpty || !replaceAt)
- {
- // This case should never be called. At-only is for
- // configure-file/string which always does no escapes.
- abort();
- }
- // Store an original copy of the input.
- std::string input = source;
- // Start with empty output.
- source = "";
- // Look for one @VAR@ at a time.
- const char* in = input.c_str();
- while(this->cmAtVarRegex.find(in))
- {
- // Get the range of the string to replace.
- const char* first = in + this->cmAtVarRegex.start();
- const char* last = in + this->cmAtVarRegex.end();
- // Store the unchanged part of the string now.
- source.append(in, first-in);
- // Lookup the definition of VAR.
- std::string var(first+1, last-first-2);
- if(const char* val = this->GetDefinition(var.c_str()))
- {
- // Store the value in the output escaping as requested.
- if(escapeQuotes)
- {
- source.append(cmSystemTools::EscapeQuotes(val));
- }
- else
- {
- source.append(val);
- }
- }
- // Continue looking for @VAR@ further along the string.
- in = last;
- }
- // Append the rest of the unchanged part of the string.
- source.append(in);
- return source.c_str();
- }
- // This method replaces ${VAR} and @VAR@ where VAR is looked up
- // with GetDefinition(), if not found in the map, nothing is expanded.
- // It also supports the $ENV{VAR} syntax where VAR is looked up in
- // the current environment variables.
- cmCommandArgumentParserHelper parser;
- parser.SetMakefile(this);
- parser.SetLineFile(line, filename);
- parser.SetEscapeQuotes(escapeQuotes);
- parser.SetNoEscapeMode(noEscapes);
- parser.SetReplaceAtSyntax(replaceAt);
- parser.SetRemoveEmpty(removeEmpty);
- int res = parser.ParseString(source.c_str(), 0);
- if ( res )
- {
- source = parser.GetResult();
- }
- else
- {
- cmOStringStream error;
- error << "Syntax error in cmake code at\n"
- << (filename?filename:"(no filename given)")
- << ":" << line << ":\n"
- << parser.GetError() << ", when parsing string \""
- << source.c_str() << "\"";
- const char* versionValue
- = this->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
- int major = 0;
- int minor = 0;
- if ( versionValue )
- {
- sscanf(versionValue, "%d.%d", &major, &minor);
- }
- if ( major < 2 || major == 2 && minor < 1 )
- {
- cmSystemTools::Error(error.str().c_str());
- cmSystemTools::SetFatalErrorOccured();
- return source.c_str();
- }
- else
- {
- cmSystemTools::Message(error.str().c_str());
- }
- }
- return source.c_str();
- }
- void cmMakefile::RemoveVariablesInString(std::string& source,
- bool atOnly) const
- {
- if(!atOnly)
- {
- cmsys::RegularExpression var("(\\${[A-Za-z_0-9]*})");
- while (var.find(source))
- {
- source.erase(var.start(),var.end() - var.start());
- }
- }
- if(!atOnly)
- {
- cmsys::RegularExpression varb("(\\$ENV{[A-Za-z_0-9]*})");
- while (varb.find(source))
- {
- source.erase(varb.start(),varb.end() - varb.start());
- }
- }
- cmsys::RegularExpression var2("(@[A-Za-z_0-9]*@)");
- while (var2.find(source))
- {
- source.erase(var2.start(),var2.end() - var2.start());
- }
- }
- /**
- * Add the default definitions to the makefile. These values must not
- * be dependent on anything that isn't known when this cmMakefile instance
- * is constructed.
- */
- void cmMakefile::AddDefaultDefinitions()
- {
- /* Up to CMake 2.4 here only WIN32, UNIX and APPLE were set.
- With CMake must separate between target and host platform. In most cases
- the tests for WIN32, UNIX and APPLE will be for the target system, so an
- additional set of variables for the host system is required ->
- CMAKE_HOST_WIN32, CMAKE_HOST_UNIX, CMAKE_HOST_APPLE.
- WIN32, UNIX and APPLE are now set in the platform files in
- Modules/Platforms/.
- To keep cmake scripts (-P) and custom language and compiler modules
- working, these variables are still also set here in this place, but they
- will be reset in CMakeSystemSpecificInformation.cmake before the platform
- files are executed. */
- #if defined(_WIN32) || defined(__CYGWIN__)
- this->AddDefinition("WIN32", "1");
- this->AddDefinition("CMAKE_HOST_WIN32", "1");
- #else
- this->AddDefinition("UNIX", "1");
- this->AddDefinition("CMAKE_HOST_UNIX", "1");
- #endif
- // Cygwin is more like unix so enable the unix commands
- #if defined(__CYGWIN__)
- this->AddDefinition("UNIX", "1");
- this->AddDefinition("CMAKE_HOST_UNIX", "1");
- #endif
- #if defined(__APPLE__)
- this->AddDefinition("APPLE", "1");
- this->AddDefinition("CMAKE_HOST_APPLE", "1");
- #endif
- char temp[1024];
- sprintf(temp, "%d", cmVersion::GetMinorVersion());
- this->AddDefinition("CMAKE_MINOR_VERSION", temp);
- sprintf(temp, "%d", cmVersion::GetMajorVersion());
- this->AddDefinition("CMAKE_MAJOR_VERSION", temp);
- sprintf(temp, "%d", cmVersion::GetPatchVersion());
- this->AddDefinition("CMAKE_PATCH_VERSION", temp);
- this->AddDefinition("CMAKE_FILES_DIRECTORY",
- cmake::GetCMakeFilesDirectory());
- }
- #if defined(CMAKE_BUILD_WITH_CMAKE)
- /**
- * Find a source group whose regular expression matches the filename
- * part of the given source name. Search backward through the list of
- * source groups, and take the first matching group found. This way
- * non-inherited SOURCE_GROUP commands will have precedence over
- * inherited ones.
- */
- cmSourceGroup&
- cmMakefile::FindSourceGroup(const char* source,
- std::vector<cmSourceGroup> &groups)
- {
- // First search for a group that lists the file explicitly.
- for(std::vector<cmSourceGroup>::reverse_iterator sg = groups.rbegin();
- sg != groups.rend(); ++sg)
- {
- cmSourceGroup *result = sg->MatchChildrenFiles(source);
- if(result)
- {
- return *result;
- }
- }
- // Now search for a group whose regex matches the file.
- for(std::vector<cmSourceGroup>::reverse_iterator sg = groups.rbegin();
- sg != groups.rend(); ++sg)
- {
- cmSourceGroup *result = sg->MatchChildrenRegex(source);
- if(result)
- {
- return *result;
- }
- }
- // Shouldn't get here, but just in case, return the default group.
- return groups.front();
- }
- #endif
- bool cmMakefile::IsFunctionBlocked(const cmListFileFunction& lff,
- cmExecutionStatus &status)
- {
- // if there are no blockers get out of here
- if (this->FunctionBlockers.begin() == this->FunctionBlockers.end())
- {
- return false;
- }
- // loop over all function blockers to see if any block this command
- // evaluate in reverse, this is critical for balanced IF statements etc
- std::list<cmFunctionBlocker *>::reverse_iterator pos;
- for (pos = this->FunctionBlockers.rbegin();
- pos != this->FunctionBlockers.rend(); ++pos)
- {
- if((*pos)->IsFunctionBlocked(lff, *this, status))
- {
- return true;
- }
- }
- return false;
- }
- void cmMakefile::ExpandArguments(
- std::vector<cmListFileArgument> const& inArgs,
- std::vector<std::string>& outArgs)
- {
- std::vector<cmListFileArgument>::const_iterator i;
- std::string value;
- outArgs.reserve(inArgs.size());
- for(i = inArgs.begin(); i != inArgs.end(); ++i)
- {
- // Expand the variables in the argument.
- value = i->Value;
- this->ExpandVariablesInString(value, false, false, false,
- i->FilePath, i->Line,
- false, true);
- // If the argument is quoted, it should be one argument.
- // Otherwise, it may be a list of arguments.
- if(i->Quoted)
- {
- outArgs.push_back(value);
- }
- else
- {
- cmSystemTools::ExpandListArgument(value, outArgs);
- }
- }
- }
- void cmMakefile::RemoveFunctionBlocker(const cmListFileFunction& lff)
- {
- // loop over all function blockers to see if any block this command
- std::list<cmFunctionBlocker *>::reverse_iterator pos;
- for (pos = this->FunctionBlockers.rbegin();
- pos != this->FunctionBlockers.rend(); ++pos)
- {
- if ((*pos)->ShouldRemove(lff, *this))
- {
- cmFunctionBlocker* b = *pos;
- this->FunctionBlockers.remove(b);
- delete b;
- break;
- }
- }
- return;
- }
- void cmMakefile::SetHomeDirectory(const char* dir)
- {
- this->cmHomeDirectory = dir;
- cmSystemTools::ConvertToUnixSlashes(this->cmHomeDirectory);
- this->AddDefinition("CMAKE_SOURCE_DIR", this->GetHomeDirectory());
- if ( !this->GetDefinition("CMAKE_CURRENT_SOURCE_DIR") )
- {
- this->AddDefinition("CMAKE_CURRENT_SOURCE_DIR", this->GetHomeDirectory());
- }
- }
- void cmMakefile::SetHomeOutputDirectory(const char* lib)
- {
- this->HomeOutputDirectory = lib;
- cmSystemTools::ConvertToUnixSlashes(this->HomeOutputDirectory);
- this->AddDefinition("CMAKE_BINARY_DIR", this->GetHomeOutputDirectory());
- if ( !this->GetDefinition("CMAKE_CURRENT_BINARY_DIR") )
- {
- this->AddDefinition("CMAKE_CURRENT_BINARY_DIR",
- this->GetHomeOutputDirectory());
- }
- }
- /**
- * Register the given cmData instance with its own name.
- */
- void cmMakefile::RegisterData(cmData* data)
- {
- std::string name = data->GetName();
- DataMapType::const_iterator d = this->DataMap.find(name);
- if((d != this->DataMap.end()) && (d->second != 0) && (d->second != data))
- {
- delete d->second;
- }
- this->DataMap[name] = data;
- }
- /**
- * Register the given cmData instance with the given name. This can be used
- * to register a NULL pointer.
- */
- void cmMakefile::RegisterData(const char* name, cmData* data)
- {
- DataMapType::const_iterator d = this->DataMap.find(name);
- if((d != this->DataMap.end()) && (d->second != 0) && (d->second != data))
- {
- delete d->second;
- }
- this->DataMap[name] = data;
- }
- /**
- * Lookup a cmData instance previously registered with the given name. If
- * the instance cannot be found, return NULL.
- */
- cmData* cmMakefile::LookupData(const char* name) const
- {
- DataMapType::const_iterator d = this->DataMap.find(name);
- if(d != this->DataMap.end())
- {
- return d->second;
- }
- else
- {
- return 0;
- }
- }
- //----------------------------------------------------------------------------
- cmSourceFile* cmMakefile::GetSource(const char* sourceName)
- {
- cmSourceFileLocation sfl(this, sourceName);
- for(std::vector<cmSourceFile*>::const_iterator
- sfi = this->SourceFiles.begin();
- sfi != this->SourceFiles.end(); ++sfi)
- {
- cmSourceFile* sf = *sfi;
- if(sf->Matches(sfl))
- {
- return sf;
- }
- }
- return 0;
- }
- //----------------------------------------------------------------------------
- cmSourceFile* cmMakefile::GetOrCreateSource(const char* sourceName,
- bool generated)
- {
- if(cmSourceFile* esf = this->GetSource(sourceName))
- {
- return esf;
- }
- else
- {
- cmSourceFile* sf = new cmSourceFile(this, sourceName);
- if(generated)
- {
- sf->SetProperty("GENERATED", "1");
- }
- this->SourceFiles.push_back(sf);
- return sf;
- }
- }
- void cmMakefile::EnableLanguage(std::vector<std::string> const & lang,
- bool optional)
- {
- this->AddDefinition("CMAKE_CFG_INTDIR",
- this->LocalGenerator->GetGlobalGenerator()->GetCMakeCFGInitDirectory());
- this->LocalGenerator->GetGlobalGenerator()->EnableLanguage(lang, this,
- optional);
- }
- void cmMakefile::ExpandSourceListArguments(
- std::vector<std::string> const& arguments,
- std::vector<std::string>& newargs, unsigned int /* start */)
- {
- // now expand the args
- unsigned int i;
- for(i = 0; i < arguments.size(); ++i)
- {
- // List expansion will have been done already.
- newargs.push_back(arguments[i]);
- }
- }
- int cmMakefile::TryCompile(const char *srcdir, const char *bindir,
- const char *projectName, const char *targetName,
- const std::vector<std::string> *cmakeArgs,
- std::string *output)
- {
- // does the binary directory exist ? If not create it...
- if (!cmSystemTools::FileIsDirectory(bindir))
- {
- cmSystemTools::MakeDirectory(bindir);
- }
- // change to the tests directory and run cmake
- // use the cmake object instead of calling cmake
- std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
- cmSystemTools::ChangeDirectory(bindir);
- // make sure the same generator is used
- // use this program as the cmake to be run, it should not
- // be run that way but the cmake object requires a vailid path
- std::string cmakeCommand = this->GetDefinition("CMAKE_COMMAND");
- cmake cm;
- cm.SetIsInTryCompile(true);
- cmGlobalGenerator *gg = cm.CreateGlobalGenerator
- (this->LocalGenerator->GetGlobalGenerator()->GetName());
- if (!gg)
- {
- cmSystemTools::Error(
- "Internal CMake error, TryCompile bad GlobalGenerator");
- // return to the original directory
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 1;
- }
- cm.SetGlobalGenerator(gg);
- // do a configure
- cm.SetHomeDirectory(srcdir);
- cm.SetHomeOutputDirectory(bindir);
- cm.SetStartDirectory(srcdir);
- cm.SetStartOutputDirectory(bindir);
- cm.SetCMakeCommand(cmakeCommand.c_str());
- cm.LoadCache();
- // if cmake args were provided then pass them in
- if (cmakeArgs)
- {
- cm.SetCacheArgs(*cmakeArgs);
- }
- // to save time we pass the EnableLanguage info directly
- gg->EnableLanguagesFromGenerator
- (this->LocalGenerator->GetGlobalGenerator());
- if (cm.Configure() != 0)
- {
- cmSystemTools::Error(
- "Internal CMake error, TryCompile configure of cmake failed");
- // return to the original directory
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 1;
- }
- if (cm.Generate() != 0)
- {
- cmSystemTools::Error(
- "Internal CMake error, TryCompile generation of cmake failed");
- // return to the original directory
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return 1;
- }
- // finally call the generator to actually build the resulting project
- int ret =
- this->LocalGenerator->GetGlobalGenerator()->TryCompile(srcdir,bindir,
- projectName,
- targetName,
- output,
- this);
- cmSystemTools::ChangeDirectory(cwd.c_str());
- return ret;
- }
- cmake *cmMakefile::GetCMakeInstance() const
- {
- if ( this->LocalGenerator && this->LocalGenerator->GetGlobalGenerator() )
- {
- return this->LocalGenerator->GetGlobalGenerator()->GetCMakeInstance();
- }
- return 0;
- }
- #ifdef CMAKE_BUILD_WITH_CMAKE
- cmVariableWatch *cmMakefile::GetVariableWatch() const
- {
- if ( this->GetCMakeInstance() &&
- this->GetCMakeInstance()->GetVariableWatch() )
- {
- return this->GetCMakeInstance()->GetVariableWatch();
- }
- return 0;
- }
- #endif
- void cmMakefile::AddMacro(const char* name, const char* signature)
- {
- if ( !name || !signature )
- {
- return;
- }
- this->MacrosMap[name] = signature;
- }
- void cmMakefile::GetListOfMacros(std::string& macros)
- {
- StringStringMap::iterator it;
- macros = "";
- int cc = 0;
- for ( it = this->MacrosMap.begin(); it != this->MacrosMap.end(); ++it )
- {
- if ( cc > 0 )
- {
- macros += ";";
- }
- macros += it->first;
- cc ++;
- }
- }
- cmCacheManager *cmMakefile::GetCacheManager() const
- {
- return this->GetCMakeInstance()->GetCacheManager();
- }
- void cmMakefile::DisplayStatus(const char* message, float s)
- {
- this->GetLocalGenerator()->GetGlobalGenerator()
- ->GetCMakeInstance()->UpdateProgress(message, s);
- }
- std::string cmMakefile::GetModulesFile(const char* filename)
- {
- std::vector<std::string> modulePath;
- const char* def = this->GetDefinition("CMAKE_MODULE_PATH");
- if(def)
- {
- cmSystemTools::ExpandListArgument(def, modulePath);
- }
- // Also search in the standard modules location.
- def = this->GetDefinition("CMAKE_ROOT");
- if(def)
- {
- std::string rootModules = def;
- rootModules += "/Modules";
- modulePath.push_back(rootModules);
- }
- //std::string Look through the possible module directories.
- for(std::vector<std::string>::iterator i = modulePath.begin();
- i != modulePath.end(); ++i)
- {
- std::string itempl = *i;
- cmSystemTools::ConvertToUnixSlashes(itempl);
- itempl += "/";
- itempl += filename;
- if(cmSystemTools::FileExists(itempl.c_str()))
- {
- return itempl;
- }
- }
- return "";
- }
- void cmMakefile::ConfigureString(const std::string& input,
- std::string& output, bool atOnly,
- bool escapeQuotes)
- {
- // Split input to handle one line at a time.
- std::string::const_iterator lineStart = input.begin();
- while(lineStart != input.end())
- {
- // Find the end of this line.
- std::string::const_iterator lineEnd = lineStart;
- while(lineEnd != input.end() && *lineEnd != '\n')
- {
- ++lineEnd;
- }
- // Copy the line.
- std::string line(lineStart, lineEnd);
- // Skip the newline character.
- bool haveNewline = (lineEnd != input.end());
- if(haveNewline)
- {
- ++lineEnd;
- }
- // Replace #cmakedefine instances.
- if(this->cmDefineRegex.find(line))
- {
- const char* def =
- this->GetDefinition(this->cmDefineRegex.match(1).c_str());
- if(!cmSystemTools::IsOff(def))
- {
- cmSystemTools::ReplaceString(line, "#cmakedefine", "#define");
- output += line;
- }
- else
- {
- output += "/* #undef ";
- output += this->cmDefineRegex.match(1);
- output += " */";
- }
- }
- else if(this->cmDefine01Regex.find(line))
- {
- const char* def =
- this->GetDefinition(this->cmDefine01Regex.match(1).c_str());
- cmSystemTools::ReplaceString(line, "#cmakedefine01", "#define");
- output += line;
- if(!cmSystemTools::IsOff(def))
- {
- output += " 1";
- }
- else
- {
- output += " 0";
- }
- }
- else
- {
- output += line;
- }
- if(haveNewline)
- {
- output += "\n";
- }
- // Move to the next line.
- lineStart = lineEnd;
- }
- // Perform variable replacements.
- this->ExpandVariablesInString(output, escapeQuotes, true,
- atOnly, 0, -1, true);
- }
- int cmMakefile::ConfigureFile(const char* infile, const char* outfile,
- bool copyonly, bool atOnly, bool escapeQuotes)
- {
- int res = 1;
- if ( !this->CanIWriteThisFile(outfile) )
- {
- cmSystemTools::Error("Attempt to write file: ",
- outfile, " into a source directory.");
- return 0;
- }
- if ( !cmSystemTools::FileExists(infile) )
- {
- cmSystemTools::Error("File ", infile, " does not exist.");
- return 0;
- }
- std::string soutfile = outfile;
- std::string sinfile = infile;
- this->AddCMakeDependFile(infile);
- cmSystemTools::ConvertToUnixSlashes(soutfile);
- mode_t perm = 0;
- cmSystemTools::GetPermissions(sinfile.c_str(), perm);
- std::string::size_type pos = soutfile.rfind('/');
- if(pos != std::string::npos)
- {
- std::string path = soutfile.substr(0, pos);
- cmSystemTools::MakeDirectory(path.c_str());
- }
- if(copyonly)
- {
- if ( !cmSystemTools::CopyFileIfDifferent(sinfile.c_str(),
- soutfile.c_str()))
- {
- return 0;
- }
- }
- else
- {
- std::string tempOutputFile = soutfile;
- tempOutputFile += ".tmp";
- std::ofstream fout(tempOutputFile.c_str());
- if(!fout)
- {
- cmSystemTools::Error(
- "Could not open file for write in copy operation ",
- tempOutputFile.c_str());
- cmSystemTools::ReportLastSystemError("");
- return 0;
- }
- std::ifstream fin(sinfile.c_str());
- if(!fin)
- {
- cmSystemTools::Error("Could not open file for read in copy operation ",
- sinfile.c_str());
- return 0;
- }
- // now copy input to output and expand variables in the
- // input file at the same time
- std::string inLine;
- std::string outLine;
- while( cmSystemTools::GetLineFromStream(fin, inLine) )
- {
- outLine = "";
- this->ConfigureString(inLine, outLine, atOnly, escapeQuotes);
- fout << outLine.c_str() << "\n";
- }
- // close the files before attempting to copy
- fin.close();
- fout.close();
- if ( !cmSystemTools::CopyFileIfDifferent(tempOutputFile.c_str(),
- soutfile.c_str()) )
- {
- res = 0;
- }
- else
- {
- cmSystemTools::SetPermissions(soutfile.c_str(), perm);
- }
- cmSystemTools::RemoveFile(tempOutputFile.c_str());
- }
- return res;
- }
- void cmMakefile::AddWrittenFile(const char* file)
- { this->GetCMakeInstance()->AddWrittenFile(file); }
- bool cmMakefile::HasWrittenFile(const char* file)
- { return this->GetCMakeInstance()->HasWrittenFile(file); }
- bool cmMakefile::CheckInfiniteLoops()
- {
- std::vector<std::string>::iterator it;
- for ( it = this->ListFiles.begin();
- it != this->ListFiles.end();
- ++ it )
- {
- if ( this->HasWrittenFile(it->c_str()) )
- {
- cmOStringStream str;
- str << "File " << it->c_str() <<
- " is written by WRITE_FILE (or FILE WRITE) command and should "
- "not be used as input to CMake. Please use CONFIGURE_FILE to "
- "be safe. Refer to the note next to FILE WRITE command.";
- cmSystemTools::Error(str.str().c_str());
- return false;
- }
- }
- return true;
- }
- void cmMakefile::SetProperty(const char* prop, const char* value)
- {
- if (!prop)
- {
- return;
- }
-
- // handle special props
- std::string propname = prop;
- if ( propname == "INCLUDE_DIRECTORIES" )
- {
- std::vector<std::string> varArgsExpanded;
- cmSystemTools::ExpandListArgument(value, varArgsExpanded);
- this->SetIncludeDirectories(varArgsExpanded);
- return;
- }
- if ( propname == "LINK_DIRECTORIES" )
- {
- std::vector<std::string> varArgsExpanded;
- cmSystemTools::ExpandListArgument(value, varArgsExpanded);
- this->SetLinkDirectories(varArgsExpanded);
- return;
- }
-
- if ( propname == "INCLUDE_REGULAR_EXPRESSION" )
- {
- this->SetIncludeRegularExpression(value);
- return;
- }
- if ( propname == "ADDITIONAL_MAKE_CLEAN_FILES" )
- {
- // This property is not inherrited
- if ( strcmp(this->GetCurrentDirectory(),
- this->GetStartDirectory()) != 0 )
- {
- return;
- }
- }
- this->Properties.SetProperty(prop,value,cmProperty::DIRECTORY);
- }
- void cmMakefile::AppendProperty(const char* prop, const char* value)
- {
- if (!prop)
- {
- return;
- }
- // handle special props
- std::string propname = prop;
- if ( propname == "INCLUDE_DIRECTORIES" )
- {
- std::vector<std::string> varArgsExpanded;
- cmSystemTools::ExpandListArgument(value, varArgsExpanded);
- for(std::vector<std::string>::const_iterator vi = varArgsExpanded.begin();
- vi != varArgsExpanded.end(); ++vi)
- {
- this->AddIncludeDirectory(vi->c_str());
- }
- return;
- }
- if ( propname == "LINK_DIRECTORIES" )
- {
- std::vector<std::string> varArgsExpanded;
- cmSystemTools::ExpandListArgument(value, varArgsExpanded);
- for(std::vector<std::string>::const_iterator vi = varArgsExpanded.begin();
- vi != varArgsExpanded.end(); ++vi)
- {
- this->AddLinkDirectory(vi->c_str());
- }
- return;
- }
- this->Properties.AppendProperty(prop,value,cmProperty::DIRECTORY);
- }
- const char *cmMakefile::GetPropertyOrDefinition(const char* prop)
- {
- const char *ret = this->GetProperty(prop, cmProperty::DIRECTORY);
- if (!ret)
- {
- ret = this->GetDefinition(prop);
- }
- return ret;
- }
- const char *cmMakefile::GetProperty(const char* prop)
- {
- return this->GetProperty(prop, cmProperty::DIRECTORY);
- }
- const char *cmMakefile::GetProperty(const char* prop,
- cmProperty::ScopeType scope)
- {
- // watch for specific properties
- static std::string output;
- output = "";
- if (!strcmp("PARENT_DIRECTORY",prop))
- {
- output = this->LocalGenerator->GetParent()
- ->GetMakefile()->GetStartDirectory();
- return output.c_str();
- }
- else if (!strcmp("INCLUDE_REGULAR_EXPRESSION",prop) )
- {
- output = this->GetIncludeRegularExpression();
- return output.c_str();
- }
- else if (!strcmp("LISTFILE_STACK",prop))
- {
- for (std::deque<cmStdString>::iterator i = this->ListFileStack.begin();
- i != this->ListFileStack.end(); ++i)
- {
- if (i != this->ListFileStack.begin())
- {
- output += ";";
- }
- output += *i;
- }
- return output.c_str();
- }
- else if (!strcmp("VARIABLES",prop) || !strcmp("CACHE_VARIABLES",prop))
- {
- int cacheonly = 0;
- if ( !strcmp("CACHE_VARIABLES",prop) )
- {
- cacheonly = 1;
- }
- std::vector<std::string> vars = this->GetDefinitions(cacheonly);
- for (unsigned int cc = 0; cc < vars.size(); cc ++ )
- {
- if ( cc > 0 )
- {
- output += ";";
- }
- output += vars[cc];
- }
- return output.c_str();
- }
- else if (!strcmp("MACROS",prop))
- {
- this->GetListOfMacros(output);
- return output.c_str();
- }
- else if (!strcmp("DEFINITIONS",prop))
- {
- output = this->GetDefineFlags();
- return output.c_str();
- }
- else if (!strcmp("INCLUDE_DIRECTORIES",prop) )
- {
- cmOStringStream str;
- for (std::vector<std::string>::const_iterator
- it = this->GetIncludeDirectories().begin();
- it != this->GetIncludeDirectories().end();
- ++ it )
- {
- if ( it != this->GetIncludeDirectories().begin())
- {
- str << ";";
- }
- str << it->c_str();
- }
- output = str.str();
- return output.c_str();
- }
- else if (!strcmp("LINK_DIRECTORIES",prop))
- {
- cmOStringStream str;
- for (std::vector<std::string>::const_iterator
- it = this->GetLinkDirectories().begin();
- it != this->GetLinkDirectories().end();
- ++ it )
- {
- if ( it != this->GetLinkDirectories().begin())
- {
- str << ";";
- }
- str << it->c_str();
- }
- output = str.str();
- return output.c_str();
- }
- bool chain = false;
- const char *retVal =
- this->Properties.GetPropertyValue(prop, scope, chain);
- if (chain)
- {
- if(this->LocalGenerator->GetParent())
- {
- return this->LocalGenerator->GetParent()->GetMakefile()->
- GetProperty(prop, scope);
- }
- return this->GetCMakeInstance()->GetProperty(prop,scope);
- }
- return retVal;
- }
- bool cmMakefile::GetPropertyAsBool(const char* prop)
- {
- return cmSystemTools::IsOn(this->GetProperty(prop));
- }
- cmTarget* cmMakefile::FindTarget(const char* name)
- {
- cmTargets& tgts = this->GetTargets();
- cmTargets::iterator i = tgts.find ( name );
- if ( i != tgts.end() )
- {
- return &i->second;
- }
- return 0;
- }
- cmTest* cmMakefile::CreateTest(const char* testName)
- {
- if ( !testName )
- {
- return 0;
- }
- cmTest* test = this->GetTest(testName);
- if ( test )
- {
- return test;
- }
- test = new cmTest;
- test->SetName(testName);
- test->SetMakefile(this);
- this->Tests.push_back(test);
- return test;
- }
- cmTest* cmMakefile::GetTest(const char* testName) const
- {
- if ( !testName )
- {
- return 0;
- }
- std::vector<cmTest*>::const_iterator it;
- for ( it = this->Tests.begin(); it != this->Tests.end(); ++ it )
- {
- if ( strcmp((*it)->GetName(), testName) == 0 )
- {
- return *it;
- }
- }
- return 0;
- }
- const std::vector<cmTest*> *cmMakefile::GetTests() const
- {
- return &this->Tests;
- }
- std::vector<cmTest*> *cmMakefile::GetTests()
- {
- return &this->Tests;
- }
- std::string cmMakefile::GetListFileStack()
- {
- cmOStringStream tmp;
- size_t depth = this->ListFileStack.size();
- if (depth > 0)
- {
- std::deque<cmStdString>::iterator it = this->ListFileStack.end();
- do
- {
- if (depth != this->ListFileStack.size())
- {
- tmp << "\n ";
- }
- --it;
- tmp << "[";
- tmp << depth;
- tmp << "]\t";
- tmp << *it;
- depth--;
- }
- while (it != this->ListFileStack.begin());
- }
- return tmp.str();
- }
- void cmMakefile::PushScope()
- {
- // Get the index of the next stack entry.
- std::vector<DefinitionMap>::size_type index = this->DefinitionStack.size();
- // Allocate a new stack entry.
- this->DefinitionStack.push_back(DefinitionMap());
- // Copy the previous top to the new top.
- this->DefinitionStack[index] = this->DefinitionStack[index-1];
- }
- void cmMakefile::PopScope()
- {
- this->DefinitionStack.pop_back();
- }
- void cmMakefile::RaiseScope(const char *var, const char *varDef)
- {
- if (!var || !strlen(var))
- {
- return;
- }
- // multiple scopes in this directory?
- if (this->DefinitionStack.size() > 1)
- {
- if(varDef)
- {
- this->DefinitionStack[this->DefinitionStack.size()-2][var] = varDef;
- }
- else
- {
- this->DefinitionStack[this->DefinitionStack.size()-2].erase(var);
- }
- }
- // otherwise do the parent (if one exists)
- else if (this->LocalGenerator->GetParent())
- {
- cmMakefile *parent = this->LocalGenerator->GetParent()->GetMakefile();
- if (parent)
- {
- if(varDef)
- {
- parent->AddDefinition(var,varDef);
- }
- else
- {
- parent->RemoveDefinition(var);
- }
- }
- }
- }
- // define properties
- void cmMakefile::DefineProperties(cmake *cm)
- {
- cm->DefineProperty
- ("ADDITIONAL_MAKE_CLEAN_FILES", cmProperty::DIRECTORY,
- "Additional files to clean during the make clean stage.",
- "A list of files that will be cleaned as a part of the "
- "\"make clean\" stage. ");
- cm->DefineProperty
- ("CLEAN_NO_CUSTOM", cmProperty::DIRECTORY,
- "Should the output of custom commands be left.",
- "If this is true then the outputs of custom commands for this "
- "directory will not be removed during the \"make clean\" stage. ");
- cm->DefineProperty
- ("LISTFILE_STACK", cmProperty::DIRECTORY,
- "The current stack of listfiles being processed.",
- "This property is mainly useful when trying to debug errors "
- "in your CMake scripts. It returns a list of what list files "
- "are currently being processed, in order. So if one listfile "
- "does an INCLUDE command then that is effectively pushing "
- "the included listfile onto the stack.");
- cm->DefineProperty
- ("TEST_INCLUDE_FILE", cmProperty::DIRECTORY,
- "A cmake file that will be included when ctest is run.",
- "If you specify TEST_INCLUDE_FILE, that file will be "
- "included and processed when ctest is run on the directory.");
- cm->DefineProperty
- ("COMPILE_DEFINITIONS", cmProperty::DIRECTORY,
- "Preprocessor definitions for compiling a directory's sources.",
- "The COMPILE_DEFINITIONS property may be set to a list of preprocessor "
- "definitions using the syntax VAR or VAR=value. Function-style "
- "definitions are not supported. CMake will automatically escape "
- "the value correctly for the native build system (note that CMake "
- "language syntax may require escapes to specify some values). "
- "This property may be set on a per-configuration basis using the name "
- "COMPILE_DEFINITIONS_<CONFIG> where <CONFIG> is an upper-case name "
- "(ex. \"COMPILE_DEFINITIONS_DEBUG\"). "
- "This property will be initialized in each directory by its value "
- "in the directory's parent.\n"
- "CMake will automatically drop some definitions that "
- "are not supported by the native build tool. "
- "The VS6 IDE does not support definitions with values "
- "(but NMake does).\n"
- "Dislaimer: Most native build tools have poor support for escaping "
- "certain values. CMake has work-arounds for many cases but some "
- "values may just not be possible to pass correctly. If a value "
- "does not seem to be escaped correctly, do not attempt to "
- "work-around the problem by adding escape sequences to the value. "
- "Your work-around may break in a future version of CMake that "
- "has improved escape support. Instead consider defining the macro "
- "in a (configured) header file. Then report the limitation.");
- cm->DefineProperty
- ("COMPILE_DEFINITIONS_<CONFIG>", cmProperty::DIRECTORY,
- "Per-configuration preprocessor definitions in a directory.",
- "This is the configuration-specific version of COMPILE_DEFINITIONS. "
- "This property will be initialized in each directory by its value "
- "in the directory's parent.\n");
- cm->DefineProperty
- ("EXCLUDE_FROM_ALL", cmProperty::DIRECTORY,
- "Exclude the directory from the all target of its parent.",
- "A property on a directory that indicates if its targets are excluded "
- "from the default build target. If it is not, then with a Makefile "
- "for example typing make will cause the targets to be built. "
- "The same concept applies to the default build of other generators.",
- false);
- }
- //----------------------------------------------------------------------------
- cmTarget*
- cmMakefile::AddImportedTarget(const char* name, cmTarget::TargetType type)
- {
- // Create the target.
- cmsys::auto_ptr<cmTarget> target(new cmTarget);
- target->SetType(type, name);
- target->SetMakefile(this);
- target->MarkAsImported();
- // Add to the set of available imported targets.
- this->ImportedTargets[name] = target.get();
- // Transfer ownership to this cmMakefile object.
- this->ImportedTargetsOwned.push_back(target.get());
- return target.release();
- }
- //----------------------------------------------------------------------------
- cmTarget* cmMakefile::FindTargetToUse(const char* name)
- {
- // Look for an imported target. These take priority because they
- // are more local in scope and do not have to be globally unique.
- std::map<cmStdString, cmTarget*>::const_iterator
- imported = this->ImportedTargets.find(name);
- if(imported != this->ImportedTargets.end())
- {
- return imported->second;
- }
- // Look for a target built in this project.
- return this->LocalGenerator->GetGlobalGenerator()->FindTarget(0, name);
- }
- //----------------------------------------------------------------------------
- bool cmMakefile::EnforceUniqueName(std::string const& name, std::string& msg,
- bool isCustom)
- {
- if(cmTarget* existing = this->FindTargetToUse(name.c_str()))
- {
- // The name given conflicts with an existing target. Produce an
- // error in a compatible way.
- if(existing->IsImported())
- {
- // Imported targets were not supported in previous versions.
- // This is new code, so we can make it an error.
- cmOStringStream e;
- e << "cannot create target \"" << name
- << "\" because an imported target with the same name already exists.";
- msg = e.str();
- return false;
- }
- else
- {
- // target names must be globally unique
- switch (this->GetPolicyStatus(cmPolicies::CMP_0002))
- {
- case cmPolicies::WARN:
- msg = this->GetPolicies()->
- GetPolicyWarning(cmPolicies::CMP_0002);
- case cmPolicies::OLD:
- return true;
- case cmPolicies::REQUIRED_IF_USED:
- case cmPolicies::REQUIRED_ALWAYS:
- msg = this->GetPolicies()->
- GetRequiredPolicyError(cmPolicies::CMP_0002);
- return false;
- case cmPolicies::NEW:
- break;
- }
-
- // The conflict is with a non-imported target.
- // Allow this if the user has requested support.
- cmake* cm =
- this->LocalGenerator->GetGlobalGenerator()->GetCMakeInstance();
- if(isCustom && existing->GetType() == cmTarget::UTILITY &&
- this != existing->GetMakefile() &&
- cm->GetPropertyAsBool("ALLOW_DUPLICATE_CUSTOM_TARGETS"))
- {
- return true;
- }
- // Produce an error that tells the user how to work around the
- // problem.
- cmOStringStream e;
- e << "cannot create target \"" << name
- << "\" because another target with the same name already exists. "
- << "The existing target is ";
- switch(existing->GetType())
- {
- case cmTarget::EXECUTABLE:
- e << "an executable ";
- break;
- case cmTarget::STATIC_LIBRARY:
- e << "a static library ";
- break;
- case cmTarget::SHARED_LIBRARY:
- e << "a shared library ";
- break;
- case cmTarget::MODULE_LIBRARY:
- e << "a module library ";
- break;
- case cmTarget::UTILITY:
- e << "a custom target ";
- break;
- default: break;
- }
- e << "created in source directory \""
- << existing->GetMakefile()->GetCurrentDirectory() << "\".\n"
- << "\n";
- e <<
- "Logical target names must be globally unique because:\n"
- " - Unique names may be referenced unambiguously both in CMake\n"
- " code and on make tool command lines.\n"
- " - Logical names are used by Xcode and VS IDE generators\n"
- " to produce meaningful project names for the targets.\n"
- "The logical name of executable and library targets does not "
- "have to correspond to the physical file names built. "
- "Consider using the OUTPUT_NAME target property to create two "
- "targets with the same physical name while keeping logical "
- "names distinct. "
- "Custom targets must simply have globally unique names.\n"
- "\n"
- "If you are building an older project it is possible that "
- "it violated this rule but was working accidentally because "
- "CMake did not previously diagnose this problem. "
- "Set CMAKE_BACKWARDS_COMPATIBILITY to 2.4 or lower to disable "
- "this error.\n";
- if(isCustom && existing->GetType() == cmTarget::UTILITY)
- {
- e <<
- "\n"
- "For projects that care only about Makefile generators and do "
- "not wish to support Xcode or VS IDE generators, one may add\n"
- " set_property(GLOBAL PROPERTY ALLOW_DUPLICATE_CUSTOM_TARGETS 1)\n"
- "to the top of the project to allow duplicate custom targets "
- "(target names must still be unique within each directory). "
- "However, setting this property will cause non-Makefile generators "
- "to produce an error and refuse to generate the project.";
- }
- msg = e.str();
- return false;
- }
- }
- return true;
- }
- cmPolicies::PolicyStatus cmMakefile
- ::GetPolicyStatus(cmPolicies::PolicyID id)
- {
- cmPolicies::PolicyStatus status = cmPolicies::REQUIRED_IF_USED;
- PolicyMap::iterator mappos;
- int vecpos;
- bool done = false;
- // check our policy stack first
- for (vecpos = static_cast<int>(this->PolicyStack.size()) - 1;
- vecpos >= 0 && !done; vecpos--)
- {
- mappos = this->PolicyStack[vecpos].find(id);
- if (mappos != this->PolicyStack[vecpos].end())
- {
- status = mappos->second;
- done = true;
- }
- }
-
- // if not found then
- if (!done)
- {
- // pass the buck to our parent if we have one
- if (this->LocalGenerator->GetParent())
- {
- cmMakefile *parent =
- this->LocalGenerator->GetParent()->GetMakefile();
- return parent->GetPolicyStatus(id);
- }
- // otherwise use the default
- else
- {
- status = this->GetPolicies()->GetPolicyStatus(id);
- }
- }
-
- // warn if we see a REQUIRED_IF_USED above a OLD or WARN
- if (!this->GetPolicies()->IsValidUsedPolicyStatus(id,status))
- {
- return cmPolicies::REQUIRED_IF_USED;
- }
-
- return status;
- }
- bool cmMakefile::SetPolicy(const char *id,
- cmPolicies::PolicyStatus status)
- {
- cmPolicies::PolicyID pid;
- if (!this->GetPolicies()->GetPolicyID(id, /* out */ pid))
- {
- cmSystemTools::Error("Invalid policy string used. Invalid string was "
- , id);
- return false;
- }
- return this->SetPolicy(pid,status);
- }
- bool cmMakefile::SetPolicy(cmPolicies::PolicyID id,
- cmPolicies::PolicyStatus status)
- {
- // setting a REQUIRED_ALWAYS policy to WARN or OLD is an insta error
- if (this->GetPolicies()->
- IsValidPolicyStatus(id,status))
- {
- this->PolicyStack.back()[id] = status;
- return true;
- }
- return false;
- }
- bool cmMakefile::PushPolicy()
- {
- // Allocate a new stack entry.
- this->PolicyStack.push_back(PolicyMap());
- return true;
- }
- bool cmMakefile::PopPolicy()
- {
- if (PolicyStack.size() == 1)
- {
- cmSystemTools::Error("Attempt to pop the policy stack past "
- "it's beginning.");
- return false;
- }
- this->PolicyStack.pop_back();
- return true;
- }
- bool cmMakefile::SetPolicyVersion(const char *version)
- {
- return this->GetCMakeInstance()->GetPolicies()->
- ApplyPolicyVersion(this,version);
- }
- cmPolicies *cmMakefile::GetPolicies()
- {
- if (!this->GetCMakeInstance())
- {
- return 0;
- }
- return this->GetCMakeInstance()->GetPolicies();
- }
|