| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file Copyright.txt or https://cmake.org/licensing for details. */
- #include "cmInstallCommand.h"
- #include <algorithm>
- #include <cassert>
- #include <cstddef>
- #include <iterator>
- #include <map>
- #include <set>
- #include <sstream>
- #include <utility>
- #include <cm/memory>
- #include <cm/optional>
- #include <cm/string_view>
- #include <cmext/string_view>
- #include "cmsys/Glob.hxx"
- #include "cmArgumentParser.h"
- #include "cmArgumentParserTypes.h"
- #include "cmCMakePath.h"
- #include "cmExecutionStatus.h"
- #include "cmExperimental.h"
- #include "cmExportSet.h"
- #include "cmFileSet.h"
- #include "cmGeneratorExpression.h"
- #include "cmGlobalGenerator.h"
- #include "cmInstallAndroidMKExportGenerator.h"
- #include "cmInstallCMakeConfigExportGenerator.h"
- #include "cmInstallCommandArguments.h"
- #include "cmInstallCxxModuleBmiGenerator.h"
- #include "cmInstallDirectoryGenerator.h"
- #include "cmInstallFileSetGenerator.h"
- #include "cmInstallFilesGenerator.h"
- #include "cmInstallGenerator.h"
- #include "cmInstallGetRuntimeDependenciesGenerator.h"
- #include "cmInstallImportedRuntimeArtifactsGenerator.h"
- #include "cmInstallPackageInfoExportGenerator.h"
- #include "cmInstallRuntimeDependencySet.h"
- #include "cmInstallRuntimeDependencySetGenerator.h"
- #include "cmInstallScriptGenerator.h"
- #include "cmInstallTargetGenerator.h"
- #include "cmList.h"
- #include "cmMakefile.h"
- #include "cmMessageType.h"
- #include "cmPolicies.h"
- #include "cmRange.h"
- #include "cmRuntimeDependencyArchive.h"
- #include "cmStateTypes.h"
- #include "cmStringAlgorithms.h"
- #include "cmSubcommandTable.h"
- #include "cmSystemTools.h"
- #include "cmTarget.h"
- #include "cmTargetExport.h"
- #include "cmValue.h"
- class cmListFileBacktrace;
- namespace {
- struct RuntimeDependenciesArgs
- {
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Directories;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> PreIncludeRegexes;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> PreExcludeRegexes;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> PostIncludeRegexes;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> PostExcludeRegexes;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> PostIncludeFiles;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> PostExcludeFiles;
- };
- auto const RuntimeDependenciesArgHelper =
- cmArgumentParser<RuntimeDependenciesArgs>{}
- .Bind("DIRECTORIES"_s, &RuntimeDependenciesArgs::Directories)
- .Bind("PRE_INCLUDE_REGEXES"_s, &RuntimeDependenciesArgs::PreIncludeRegexes)
- .Bind("PRE_EXCLUDE_REGEXES"_s, &RuntimeDependenciesArgs::PreExcludeRegexes)
- .Bind("POST_INCLUDE_REGEXES"_s,
- &RuntimeDependenciesArgs::PostIncludeRegexes)
- .Bind("POST_EXCLUDE_REGEXES"_s,
- &RuntimeDependenciesArgs::PostExcludeRegexes)
- .Bind("POST_INCLUDE_FILES"_s, &RuntimeDependenciesArgs::PostIncludeFiles)
- .Bind("POST_EXCLUDE_FILES"_s, &RuntimeDependenciesArgs::PostExcludeFiles);
- class Helper
- {
- public:
- Helper(cmExecutionStatus& status)
- : Status(status)
- , Makefile(&status.GetMakefile())
- {
- this->DefaultComponentName = this->Makefile->GetSafeDefinition(
- "CMAKE_INSTALL_DEFAULT_COMPONENT_NAME");
- if (this->DefaultComponentName.empty()) {
- this->DefaultComponentName = "Unspecified";
- }
- }
- void SetError(std::string const& err) { this->Status.SetError(err); }
- bool MakeFilesFullPath(const char* modeName,
- const std::vector<std::string>& relFiles,
- std::vector<std::string>& absFiles);
- bool MakeFilesFullPath(const char* modeName, const std::string& basePath,
- const std::vector<std::string>& relFiles,
- std::vector<std::string>& absFiles);
- bool CheckCMP0006() const;
- std::string GetDestination(const cmInstallCommandArguments* args,
- const std::string& varName,
- const std::string& guess) const;
- std::string GetRuntimeDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetSbinDestination(const cmInstallCommandArguments* args) const;
- std::string GetArchiveDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetLibraryDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetCxxModulesBmiDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetIncludeDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetSysconfDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetSharedStateDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetLocalStateDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetRunStateDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetDataRootDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetDataDestination(const cmInstallCommandArguments* args) const;
- std::string GetInfoDestination(const cmInstallCommandArguments* args) const;
- std::string GetLocaleDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetManDestination(const cmInstallCommandArguments* args) const;
- std::string GetDocDestination(const cmInstallCommandArguments* args) const;
- std::string GetProgramExecutablesDestination(
- const cmInstallCommandArguments* args) const;
- std::string GetDestinationForType(const cmInstallCommandArguments* args,
- const std::string& type) const;
- cmExecutionStatus& Status;
- cmMakefile* Makefile;
- std::string DefaultComponentName;
- };
- std::unique_ptr<cmInstallTargetGenerator> CreateInstallTargetGenerator(
- cmTarget& target, const cmInstallCommandArguments& args, bool impLib,
- cmListFileBacktrace const& backtrace, const std::string& destination,
- bool forceOpt = false, bool namelink = false)
- {
- cmInstallGenerator::MessageLevel message =
- cmInstallGenerator::SelectMessageLevel(target.GetMakefile());
- target.SetHaveInstallRule(true);
- const std::string& component =
- namelink ? args.GetNamelinkComponent() : args.GetComponent();
- auto g = cm::make_unique<cmInstallTargetGenerator>(
- target.GetName(), destination, impLib, args.GetPermissions(),
- args.GetConfigurations(), component, message, args.GetExcludeFromAll(),
- args.GetOptional() || forceOpt, backtrace);
- target.AddInstallGenerator(g.get());
- return g;
- }
- std::unique_ptr<cmInstallTargetGenerator> CreateInstallTargetGenerator(
- cmTarget& target, const cmInstallCommandArguments& args, bool impLib,
- cmListFileBacktrace const& backtrace, bool forceOpt = false,
- bool namelink = false)
- {
- return CreateInstallTargetGenerator(target, args, impLib, backtrace,
- args.GetDestination(), forceOpt,
- namelink);
- }
- std::unique_ptr<cmInstallFilesGenerator> CreateInstallFilesGenerator(
- cmMakefile* mf, const std::vector<std::string>& absFiles,
- const cmInstallCommandArguments& args, bool programs,
- const std::string& destination)
- {
- cmInstallGenerator::MessageLevel message =
- cmInstallGenerator::SelectMessageLevel(mf);
- return cm::make_unique<cmInstallFilesGenerator>(
- absFiles, destination, programs, args.GetPermissions(),
- args.GetConfigurations(), args.GetComponent(), message,
- args.GetExcludeFromAll(), args.GetRename(), args.GetOptional(),
- mf->GetBacktrace());
- }
- std::unique_ptr<cmInstallFilesGenerator> CreateInstallFilesGenerator(
- cmMakefile* mf, const std::vector<std::string>& absFiles,
- const cmInstallCommandArguments& args, bool programs)
- {
- return CreateInstallFilesGenerator(mf, absFiles, args, programs,
- args.GetDestination());
- }
- std::unique_ptr<cmInstallFileSetGenerator> CreateInstallFileSetGenerator(
- Helper& helper, cmTarget& target, cmFileSet* fileSet,
- const std::string& destination, const cmInstallCommandArguments& args)
- {
- cmInstallGenerator::MessageLevel message =
- cmInstallGenerator::SelectMessageLevel(helper.Makefile);
- return cm::make_unique<cmInstallFileSetGenerator>(
- target.GetName(), fileSet, destination, args.GetPermissions(),
- args.GetConfigurations(), args.GetComponent(), message,
- args.GetExcludeFromAll(), args.GetOptional(),
- helper.Makefile->GetBacktrace());
- }
- void AddInstallRuntimeDependenciesGenerator(
- Helper& helper, cmInstallRuntimeDependencySet* runtimeDependencySet,
- const cmInstallCommandArguments& runtimeArgs,
- const cmInstallCommandArguments& libraryArgs,
- const cmInstallCommandArguments& frameworkArgs,
- RuntimeDependenciesArgs runtimeDependenciesArgs, bool& installsRuntime,
- bool& installsLibrary, bool& installsFramework)
- {
- bool dllPlatform =
- !helper.Makefile->GetSafeDefinition("CMAKE_IMPORT_LIBRARY_SUFFIX").empty();
- bool apple =
- helper.Makefile->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME") == "Darwin";
- auto const& runtimeDependenciesArgsRef =
- dllPlatform ? runtimeArgs : libraryArgs;
- std::vector<std::string> configurations =
- runtimeDependenciesArgsRef.GetConfigurations();
- if (apple) {
- std::copy(frameworkArgs.GetConfigurations().begin(),
- frameworkArgs.GetConfigurations().end(),
- std::back_inserter(configurations));
- }
- // Create file(GET_RUNTIME_DEPENDENCIES) generator.
- auto getRuntimeDependenciesGenerator =
- cm::make_unique<cmInstallGetRuntimeDependenciesGenerator>(
- runtimeDependencySet, std::move(runtimeDependenciesArgs.Directories),
- std::move(runtimeDependenciesArgs.PreIncludeRegexes),
- std::move(runtimeDependenciesArgs.PreExcludeRegexes),
- std::move(runtimeDependenciesArgs.PostIncludeRegexes),
- std::move(runtimeDependenciesArgs.PostExcludeRegexes),
- std::move(runtimeDependenciesArgs.PostIncludeFiles),
- std::move(runtimeDependenciesArgs.PostExcludeFiles),
- runtimeDependenciesArgsRef.GetComponent(),
- apple ? frameworkArgs.GetComponent() : "", true, "_CMAKE_DEPS",
- "_CMAKE_RPATH", configurations,
- cmInstallGenerator::SelectMessageLevel(helper.Makefile),
- runtimeDependenciesArgsRef.GetExcludeFromAll() &&
- (apple ? frameworkArgs.GetExcludeFromAll() : true),
- helper.Makefile->GetBacktrace());
- helper.Makefile->AddInstallGenerator(
- std::move(getRuntimeDependenciesGenerator));
- // Create the library dependencies generator.
- auto libraryRuntimeDependenciesGenerator =
- cm::make_unique<cmInstallRuntimeDependencySetGenerator>(
- cmInstallRuntimeDependencySetGenerator::DependencyType::Library,
- runtimeDependencySet, std::vector<std::string>{}, true, std::string{},
- true, "_CMAKE_DEPS", "_CMAKE_RPATH", "_CMAKE_TMP",
- dllPlatform ? helper.GetRuntimeDestination(&runtimeArgs)
- : helper.GetLibraryDestination(&libraryArgs),
- runtimeDependenciesArgsRef.GetConfigurations(),
- runtimeDependenciesArgsRef.GetComponent(),
- runtimeDependenciesArgsRef.GetPermissions(),
- cmInstallGenerator::SelectMessageLevel(helper.Makefile),
- runtimeDependenciesArgsRef.GetExcludeFromAll(),
- helper.Makefile->GetBacktrace());
- helper.Makefile->AddInstallGenerator(
- std::move(libraryRuntimeDependenciesGenerator));
- if (dllPlatform) {
- installsRuntime = true;
- } else {
- installsLibrary = true;
- }
- if (apple) {
- // Create the framework dependencies generator.
- auto frameworkRuntimeDependenciesGenerator =
- cm::make_unique<cmInstallRuntimeDependencySetGenerator>(
- cmInstallRuntimeDependencySetGenerator::DependencyType::Framework,
- runtimeDependencySet, std::vector<std::string>{}, true, std::string{},
- true, "_CMAKE_DEPS", "_CMAKE_RPATH", "_CMAKE_TMP",
- frameworkArgs.GetDestination(), frameworkArgs.GetConfigurations(),
- frameworkArgs.GetComponent(), frameworkArgs.GetPermissions(),
- cmInstallGenerator::SelectMessageLevel(helper.Makefile),
- frameworkArgs.GetExcludeFromAll(), helper.Makefile->GetBacktrace());
- helper.Makefile->AddInstallGenerator(
- std::move(frameworkRuntimeDependenciesGenerator));
- installsFramework = true;
- }
- }
- std::set<std::string> const allowedTypes{
- "BIN", "SBIN", "LIB", "INCLUDE", "SYSCONF",
- "SHAREDSTATE", "LOCALSTATE", "RUNSTATE", "DATA", "INFO",
- "LOCALE", "MAN", "DOC", "LIBEXEC",
- };
- template <typename T>
- bool AddBundleExecutable(Helper& helper,
- cmInstallRuntimeDependencySet* runtimeDependencySet,
- T&& bundleExecutable)
- {
- if (!runtimeDependencySet->AddBundleExecutable(bundleExecutable)) {
- helper.SetError(
- "A runtime dependency set may only have one bundle executable.");
- return false;
- }
- return true;
- }
- bool HandleScriptMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- Helper helper(status);
- std::string component = helper.DefaultComponentName;
- int componentCount = 0;
- bool doing_script = false;
- bool doing_code = false;
- bool exclude_from_all = false;
- bool all_components = false;
- // Scan the args once for COMPONENT. Only allow one.
- //
- for (size_t i = 0; i < args.size(); ++i) {
- if (args[i] == "COMPONENT" && i + 1 < args.size()) {
- ++componentCount;
- ++i;
- component = args[i];
- }
- if (args[i] == "EXCLUDE_FROM_ALL") {
- exclude_from_all = true;
- } else if (args[i] == "ALL_COMPONENTS") {
- all_components = true;
- }
- }
- if (componentCount > 1) {
- status.SetError("given more than one COMPONENT for the SCRIPT or CODE "
- "signature of the INSTALL command. "
- "Use multiple INSTALL commands with one COMPONENT each.");
- return false;
- }
- if (all_components && componentCount == 1) {
- status.SetError("ALL_COMPONENTS and COMPONENT are mutually exclusive");
- return false;
- }
- // Scan the args again, this time adding install generators each time we
- // encounter a SCRIPT or CODE arg:
- //
- for (std::string const& arg : args) {
- if (arg == "SCRIPT") {
- doing_script = true;
- doing_code = false;
- } else if (arg == "CODE") {
- doing_script = false;
- doing_code = true;
- } else if (arg == "COMPONENT") {
- doing_script = false;
- doing_code = false;
- } else if (doing_script) {
- doing_script = false;
- std::string script = arg;
- if (!cmHasLiteralPrefix(script, "$<INSTALL_PREFIX>")) {
- if (!cmSystemTools::FileIsFullPath(script)) {
- script =
- cmStrCat(helper.Makefile->GetCurrentSourceDirectory(), '/', arg);
- }
- if (cmSystemTools::FileIsDirectory(script)) {
- status.SetError("given a directory as value of SCRIPT argument.");
- return false;
- }
- }
- helper.Makefile->AddInstallGenerator(
- cm::make_unique<cmInstallScriptGenerator>(
- script, false, component, exclude_from_all, all_components,
- helper.Makefile->GetBacktrace()));
- } else if (doing_code) {
- doing_code = false;
- std::string const& code = arg;
- helper.Makefile->AddInstallGenerator(
- cm::make_unique<cmInstallScriptGenerator>(
- code, true, component, exclude_from_all, all_components,
- helper.Makefile->GetBacktrace()));
- }
- }
- if (doing_script) {
- status.SetError("given no value for SCRIPT argument.");
- return false;
- }
- if (doing_code) {
- status.SetError("given no value for CODE argument.");
- return false;
- }
- // Tell the global generator about any installation component names
- // specified.
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(component);
- return true;
- }
- bool HandleTargetsMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- Helper helper(status);
- // This is the TARGETS mode.
- std::vector<cmTarget*> targets;
- struct ArgVectors
- {
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Archive;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Library;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Runtime;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Object;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Framework;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Bundle;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Includes;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> PrivateHeader;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> PublicHeader;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Resource;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> CxxModulesBmi;
- std::vector<std::vector<std::string>> FileSets;
- };
- static auto const argHelper =
- cmArgumentParser<ArgVectors>{}
- .Bind("ARCHIVE"_s, &ArgVectors::Archive)
- .Bind("LIBRARY"_s, &ArgVectors::Library)
- .Bind("RUNTIME"_s, &ArgVectors::Runtime)
- .Bind("OBJECTS"_s, &ArgVectors::Object)
- .Bind("FRAMEWORK"_s, &ArgVectors::Framework)
- .Bind("BUNDLE"_s, &ArgVectors::Bundle)
- .Bind("INCLUDES"_s, &ArgVectors::Includes)
- .Bind("PRIVATE_HEADER"_s, &ArgVectors::PrivateHeader)
- .Bind("PUBLIC_HEADER"_s, &ArgVectors::PublicHeader)
- .Bind("RESOURCE"_s, &ArgVectors::Resource)
- .Bind("FILE_SET"_s, &ArgVectors::FileSets)
- .Bind("CXX_MODULES_BMI"_s, &ArgVectors::CxxModulesBmi);
- std::vector<std::string> genericArgVector;
- ArgVectors const argVectors = argHelper.Parse(args, &genericArgVector);
- // now parse the generic args (i.e. the ones not specialized on LIBRARY/
- // ARCHIVE, RUNTIME etc. (see above)
- // These generic args also contain the targets and the export stuff
- ArgumentParser::MaybeEmpty<std::vector<std::string>> targetList;
- std::string exports;
- cm::optional<ArgumentParser::MaybeEmpty<std::vector<std::string>>>
- runtimeDependenciesArgVector;
- std::string runtimeDependencySetArg;
- std::vector<std::string> unknownArgs;
- cmInstallCommandArguments genericArgs(helper.DefaultComponentName,
- *helper.Makefile);
- genericArgs.Bind("TARGETS"_s, targetList);
- genericArgs.Bind("EXPORT"_s, exports);
- genericArgs.Bind("RUNTIME_DEPENDENCIES"_s, runtimeDependenciesArgVector);
- genericArgs.Bind("RUNTIME_DEPENDENCY_SET"_s, runtimeDependencySetArg);
- genericArgs.Parse(genericArgVector, &unknownArgs);
- bool success = genericArgs.Finalize();
- RuntimeDependenciesArgs runtimeDependenciesArgs =
- runtimeDependenciesArgVector
- ? RuntimeDependenciesArgHelper.Parse(*runtimeDependenciesArgVector,
- &unknownArgs)
- : RuntimeDependenciesArgs();
- cmInstallCommandArguments archiveArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments libraryArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments runtimeArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments objectArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments frameworkArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments bundleArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments privateHeaderArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments publicHeaderArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments resourceArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandIncludesArgument includesArgs;
- std::vector<cmInstallCommandFileSetArguments> fileSetArgs(
- argVectors.FileSets.size(),
- { cmInstallCommandFileSetArguments(helper.DefaultComponentName,
- *helper.Makefile) });
- cmInstallCommandArguments cxxModuleBmiArgs(helper.DefaultComponentName,
- *helper.Makefile);
- // now parse the args for specific parts of the target (e.g. LIBRARY,
- // RUNTIME, ARCHIVE etc.
- archiveArgs.Parse(argVectors.Archive, &unknownArgs);
- libraryArgs.Parse(argVectors.Library, &unknownArgs);
- runtimeArgs.Parse(argVectors.Runtime, &unknownArgs);
- objectArgs.Parse(argVectors.Object, &unknownArgs);
- frameworkArgs.Parse(argVectors.Framework, &unknownArgs);
- bundleArgs.Parse(argVectors.Bundle, &unknownArgs);
- privateHeaderArgs.Parse(argVectors.PrivateHeader, &unknownArgs);
- publicHeaderArgs.Parse(argVectors.PublicHeader, &unknownArgs);
- resourceArgs.Parse(argVectors.Resource, &unknownArgs);
- includesArgs.Parse(&argVectors.Includes, &unknownArgs);
- cxxModuleBmiArgs.Parse(argVectors.CxxModulesBmi, &unknownArgs);
- for (std::size_t i = 0; i < argVectors.FileSets.size(); i++) {
- // We have to create a separate object for the parsing because
- // cmArgumentParser<void>::Bind() binds to a specific address, but the
- // objects in the vector can move around. So we parse in an object with a
- // fixed address and then copy the data into the vector.
- cmInstallCommandFileSetArguments fileSetArg(helper.DefaultComponentName,
- *helper.Makefile);
- fileSetArg.Parse(argVectors.FileSets[i], &unknownArgs);
- fileSetArgs[i] = std::move(fileSetArg);
- }
- if (!unknownArgs.empty()) {
- // Unknown argument.
- status.SetError(
- cmStrCat("TARGETS given unknown argument \"", unknownArgs[0], "\"."));
- return false;
- }
- // apply generic args
- archiveArgs.SetGenericArguments(&genericArgs);
- libraryArgs.SetGenericArguments(&genericArgs);
- runtimeArgs.SetGenericArguments(&genericArgs);
- objectArgs.SetGenericArguments(&genericArgs);
- frameworkArgs.SetGenericArguments(&genericArgs);
- bundleArgs.SetGenericArguments(&genericArgs);
- privateHeaderArgs.SetGenericArguments(&genericArgs);
- publicHeaderArgs.SetGenericArguments(&genericArgs);
- resourceArgs.SetGenericArguments(&genericArgs);
- for (auto& fileSetArg : fileSetArgs) {
- fileSetArg.SetGenericArguments(&genericArgs);
- }
- cxxModuleBmiArgs.SetGenericArguments(&genericArgs);
- success = success && archiveArgs.Finalize();
- success = success && libraryArgs.Finalize();
- success = success && runtimeArgs.Finalize();
- success = success && objectArgs.Finalize();
- success = success && frameworkArgs.Finalize();
- success = success && bundleArgs.Finalize();
- success = success && privateHeaderArgs.Finalize();
- success = success && publicHeaderArgs.Finalize();
- success = success && resourceArgs.Finalize();
- success = success && cxxModuleBmiArgs.Finalize();
- for (auto& fileSetArg : fileSetArgs) {
- success = success && fileSetArg.Finalize();
- }
- if (!success) {
- return false;
- }
- // Enforce argument rules too complex to specify for the
- // general-purpose parser.
- if (runtimeArgs.GetNamelinkOnly() || objectArgs.GetNamelinkOnly() ||
- frameworkArgs.GetNamelinkOnly() || bundleArgs.GetNamelinkOnly() ||
- privateHeaderArgs.GetNamelinkOnly() ||
- publicHeaderArgs.GetNamelinkOnly() || resourceArgs.GetNamelinkOnly() ||
- std::any_of(fileSetArgs.begin(), fileSetArgs.end(),
- [](const cmInstallCommandFileSetArguments& fileSetArg)
- -> bool { return fileSetArg.GetNamelinkOnly(); }) ||
- cxxModuleBmiArgs.GetNamelinkOnly()) {
- status.SetError(
- "TARGETS given NAMELINK_ONLY option not in LIBRARY or ARCHIVE group. "
- "The NAMELINK_ONLY option may be specified only following LIBRARY or "
- "ARCHIVE.");
- return false;
- }
- if (runtimeArgs.GetNamelinkSkip() || objectArgs.GetNamelinkSkip() ||
- frameworkArgs.GetNamelinkSkip() || bundleArgs.GetNamelinkSkip() ||
- privateHeaderArgs.GetNamelinkSkip() ||
- publicHeaderArgs.GetNamelinkSkip() || resourceArgs.GetNamelinkSkip() ||
- std::any_of(fileSetArgs.begin(), fileSetArgs.end(),
- [](const cmInstallCommandFileSetArguments& fileSetArg)
- -> bool { return fileSetArg.GetNamelinkSkip(); }) ||
- cxxModuleBmiArgs.GetNamelinkSkip()) {
- status.SetError(
- "TARGETS given NAMELINK_SKIP option not in LIBRARY or ARCHIVE group. "
- "The NAMELINK_SKIP option may be specified only following LIBRARY or "
- "ARCHIVE.");
- return false;
- }
- if (runtimeArgs.HasNamelinkComponent() ||
- objectArgs.HasNamelinkComponent() ||
- frameworkArgs.HasNamelinkComponent() ||
- bundleArgs.HasNamelinkComponent() ||
- privateHeaderArgs.HasNamelinkComponent() ||
- publicHeaderArgs.HasNamelinkComponent() ||
- resourceArgs.HasNamelinkComponent() ||
- std::any_of(fileSetArgs.begin(), fileSetArgs.end(),
- [](const cmInstallCommandFileSetArguments& fileSetArg)
- -> bool { return fileSetArg.HasNamelinkComponent(); }) ||
- cxxModuleBmiArgs.HasNamelinkComponent()) {
- status.SetError(
- "TARGETS given NAMELINK_COMPONENT option not in LIBRARY or ARCHIVE "
- "group. The NAMELINK_COMPONENT option may be specified only following "
- "LIBRARY or ARCHIVE.");
- return false;
- }
- if (libraryArgs.GetNamelinkOnly() && libraryArgs.GetNamelinkSkip()) {
- status.SetError("TARGETS given NAMELINK_ONLY and NAMELINK_SKIP. "
- "At most one of these two options may be specified.");
- return false;
- }
- if (!genericArgs.GetType().empty() || !archiveArgs.GetType().empty() ||
- !libraryArgs.GetType().empty() || !runtimeArgs.GetType().empty() ||
- !objectArgs.GetType().empty() || !frameworkArgs.GetType().empty() ||
- !bundleArgs.GetType().empty() || !privateHeaderArgs.GetType().empty() ||
- !publicHeaderArgs.GetType().empty() || !resourceArgs.GetType().empty() ||
- std::any_of(fileSetArgs.begin(), fileSetArgs.end(),
- [](const cmInstallCommandFileSetArguments& fileSetArg)
- -> bool { return !fileSetArg.GetType().empty(); }) ||
- !cxxModuleBmiArgs.GetType().empty()) {
- status.SetError(
- "TARGETS given TYPE option. The TYPE option may only be specified in "
- " install(FILES) and install(DIRECTORIES).");
- return false;
- }
- if (std::any_of(fileSetArgs.begin(), fileSetArgs.end(),
- [](const cmInstallCommandFileSetArguments& fileSetArg)
- -> bool { return fileSetArg.GetFileSet().empty(); })) {
- status.SetError("TARGETS given FILE_SET option without file set name.");
- return false;
- }
- cmInstallRuntimeDependencySet* runtimeDependencySet = nullptr;
- if (runtimeDependenciesArgVector) {
- if (!runtimeDependencySetArg.empty()) {
- status.SetError("TARGETS cannot have both RUNTIME_DEPENDENCIES and "
- "RUNTIME_DEPENDENCY_SET.");
- return false;
- }
- auto system = helper.Makefile->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
- if (!cmRuntimeDependencyArchive::PlatformSupportsRuntimeDependencies(
- system)) {
- status.SetError(
- cmStrCat("TARGETS RUNTIME_DEPENDENCIES is not supported on system \"",
- system, '"'));
- return false;
- }
- if (helper.Makefile->IsOn("CMAKE_CROSSCOMPILING")) {
- status.SetError("TARGETS RUNTIME_DEPENDENCIES is not supported "
- "when cross-compiling.");
- return false;
- }
- if (helper.Makefile->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME") ==
- "Darwin" &&
- frameworkArgs.GetDestination().empty()) {
- status.SetError(
- "TARGETS RUNTIME_DEPENDENCIES given no FRAMEWORK DESTINATION");
- return false;
- }
- runtimeDependencySet = helper.Makefile->GetGlobalGenerator()
- ->CreateAnonymousRuntimeDependencySet();
- } else if (!runtimeDependencySetArg.empty()) {
- auto system = helper.Makefile->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
- if (!cmRuntimeDependencyArchive::PlatformSupportsRuntimeDependencies(
- system)) {
- status.SetError(cmStrCat(
- "TARGETS RUNTIME_DEPENDENCY_SET is not supported on system \"", system,
- '"'));
- return false;
- }
- runtimeDependencySet =
- helper.Makefile->GetGlobalGenerator()->GetNamedRuntimeDependencySet(
- runtimeDependencySetArg);
- }
- // Select the mode for installing symlinks to versioned shared libraries.
- cmInstallTargetGenerator::NamelinkModeType namelinkMode =
- cmInstallTargetGenerator::NamelinkModeNone;
- if (libraryArgs.GetNamelinkOnly()) {
- namelinkMode = cmInstallTargetGenerator::NamelinkModeOnly;
- } else if (libraryArgs.GetNamelinkSkip()) {
- namelinkMode = cmInstallTargetGenerator::NamelinkModeSkip;
- }
- // Select the mode for installing symlinks to versioned imported libraries.
- cmInstallTargetGenerator::NamelinkModeType importlinkMode =
- cmInstallTargetGenerator::NamelinkModeNone;
- if (archiveArgs.GetNamelinkOnly()) {
- importlinkMode = cmInstallTargetGenerator::NamelinkModeOnly;
- } else if (archiveArgs.GetNamelinkSkip()) {
- importlinkMode = cmInstallTargetGenerator::NamelinkModeSkip;
- }
- // Check if there is something to do.
- if (targetList.empty()) {
- return true;
- }
- for (std::string const& tgt : targetList) {
- if (helper.Makefile->IsAlias(tgt)) {
- status.SetError(
- cmStrCat("TARGETS given target \"", tgt, "\" which is an alias."));
- return false;
- }
- // Lookup this target in the current directory.
- cmTarget* target = helper.Makefile->FindLocalNonAliasTarget(tgt);
- if (!target) {
- // If no local target has been found, find it in the global scope.
- cmTarget* const global_target =
- helper.Makefile->GetGlobalGenerator()->FindTarget(
- tgt, { cmStateEnums::TargetDomain::NATIVE });
- if (global_target && !global_target->IsImported()) {
- target = global_target;
- }
- }
- if (target) {
- // Found the target. Check its type.
- if (target->GetType() != cmStateEnums::EXECUTABLE &&
- target->GetType() != cmStateEnums::STATIC_LIBRARY &&
- target->GetType() != cmStateEnums::SHARED_LIBRARY &&
- target->GetType() != cmStateEnums::MODULE_LIBRARY &&
- target->GetType() != cmStateEnums::OBJECT_LIBRARY &&
- target->GetType() != cmStateEnums::INTERFACE_LIBRARY) {
- status.SetError(
- cmStrCat("TARGETS given target \"", tgt,
- "\" which is not an executable, library, or module."));
- return false;
- }
- // Store the target in the list to be installed.
- targets.push_back(target);
- } else {
- // Did not find the target.
- status.SetError(
- cmStrCat("TARGETS given target \"", tgt, "\" which does not exist."));
- return false;
- }
- }
- // Keep track of whether we will be performing an installation of
- // any files of the given type.
- bool installsArchive = false;
- bool installsLibrary = false;
- bool installsNamelink = false;
- bool installsImportlink = false;
- bool installsRuntime = false;
- bool installsObject = false;
- bool installsFramework = false;
- bool installsBundle = false;
- bool installsPrivateHeader = false;
- bool installsPublicHeader = false;
- bool installsResource = false;
- std::vector<bool> installsFileSet(fileSetArgs.size(), false);
- bool installsCxxModuleBmi = false;
- // Generate install script code to install the given targets.
- for (cmTarget* ti : targets) {
- // Handle each target type.
- cmTarget& target = *ti;
- std::unique_ptr<cmInstallTargetGenerator> archiveGenerator;
- std::unique_ptr<cmInstallTargetGenerator> libraryGenerator;
- std::unique_ptr<cmInstallTargetGenerator> namelinkGenerator;
- std::unique_ptr<cmInstallTargetGenerator> importlinkGenerator;
- std::unique_ptr<cmInstallTargetGenerator> runtimeGenerator;
- std::unique_ptr<cmInstallTargetGenerator> objectGenerator;
- std::unique_ptr<cmInstallTargetGenerator> frameworkGenerator;
- std::unique_ptr<cmInstallTargetGenerator> bundleGenerator;
- std::unique_ptr<cmInstallFilesGenerator> privateHeaderGenerator;
- std::unique_ptr<cmInstallFilesGenerator> publicHeaderGenerator;
- std::unique_ptr<cmInstallFilesGenerator> resourceGenerator;
- std::vector<std::unique_ptr<cmInstallFileSetGenerator>> fileSetGenerators;
- std::unique_ptr<cmInstallCxxModuleBmiGenerator> cxxModuleBmiGenerator;
- // Avoid selecting default destinations for PUBLIC_HEADER and
- // PRIVATE_HEADER if any artifacts are specified.
- bool artifactsSpecified = false;
- // Track whether this is a namelink-only rule.
- bool namelinkOnly = false;
- auto addTargetExport = [&]() -> bool {
- // Add this install rule to an export if one was specified.
- if (!exports.empty()) {
- auto interfaceFileSets = target.GetAllInterfaceFileSets();
- if (std::any_of(
- interfaceFileSets.begin(), interfaceFileSets.end(),
- [=](const std::string& name) -> bool {
- return !std::any_of(
- fileSetArgs.begin(), fileSetArgs.end(),
- [=](const cmInstallCommandFileSetArguments& fileSetArg)
- -> bool { return fileSetArg.GetFileSet() == name; });
- })) {
- status.SetError(cmStrCat("TARGETS target ", target.GetName(),
- " is exported but not all of its interface "
- "file sets are installed"));
- return false;
- }
- auto te = cm::make_unique<cmTargetExport>();
- te->TargetName = target.GetName();
- te->ArchiveGenerator = archiveGenerator.get();
- te->BundleGenerator = bundleGenerator.get();
- te->FrameworkGenerator = frameworkGenerator.get();
- te->HeaderGenerator = publicHeaderGenerator.get();
- te->LibraryGenerator = libraryGenerator.get();
- te->RuntimeGenerator = runtimeGenerator.get();
- te->ObjectsGenerator = objectGenerator.get();
- for (auto const& gen : fileSetGenerators) {
- te->FileSetGenerators[gen->GetFileSet()] = gen.get();
- }
- te->CxxModuleBmiGenerator = cxxModuleBmiGenerator.get();
- target.AddInstallIncludeDirectories(
- *te, cmMakeRange(includesArgs.GetIncludeDirs()));
- te->NamelinkOnly = namelinkOnly;
- helper.Makefile->GetGlobalGenerator()
- ->GetExportSets()[exports]
- .AddTargetExport(std::move(te));
- }
- return true;
- };
- switch (target.GetType()) {
- case cmStateEnums::SHARED_LIBRARY: {
- // Shared libraries are handled differently on DLL and non-DLL
- // platforms. All windows platforms are DLL platforms including
- // cygwin. Currently no other platform is a DLL platform.
- if (target.IsDLLPlatform()) {
- // When in namelink only mode skip all libraries on Windows.
- if (namelinkMode == cmInstallTargetGenerator::NamelinkModeOnly) {
- namelinkOnly = true;
- if (!addTargetExport()) {
- return false;
- }
- continue;
- }
- // This is a DLL platform.
- if (!archiveArgs.GetDestination().empty()) {
- // The import library uses the ARCHIVE properties.
- archiveGenerator = CreateInstallTargetGenerator(
- target, archiveArgs, true, helper.Makefile->GetBacktrace());
- artifactsSpecified = true;
- }
- if (!runtimeArgs.GetDestination().empty()) {
- // The DLL uses the RUNTIME properties.
- runtimeGenerator = CreateInstallTargetGenerator(
- target, runtimeArgs, false, helper.Makefile->GetBacktrace());
- artifactsSpecified = true;
- }
- if (!archiveGenerator && !runtimeGenerator) {
- archiveGenerator = CreateInstallTargetGenerator(
- target, archiveArgs, true, helper.Makefile->GetBacktrace(),
- helper.GetArchiveDestination(nullptr));
- runtimeGenerator = CreateInstallTargetGenerator(
- target, runtimeArgs, false, helper.Makefile->GetBacktrace(),
- helper.GetRuntimeDestination(nullptr));
- }
- if (runtimeDependencySet && runtimeGenerator) {
- runtimeDependencySet->AddLibrary(runtimeGenerator.get());
- }
- } else {
- // This is a non-DLL platform.
- // If it is marked with FRAMEWORK property use the FRAMEWORK set of
- // INSTALL properties. Otherwise, use the LIBRARY properties.
- if (target.IsFrameworkOnApple()) {
- // When in namelink only mode skip frameworks.
- if (namelinkMode == cmInstallTargetGenerator::NamelinkModeOnly) {
- namelinkOnly = true;
- if (!addTargetExport()) {
- return false;
- }
- continue;
- }
- // Use the FRAMEWORK properties.
- if (!frameworkArgs.GetDestination().empty()) {
- frameworkGenerator = CreateInstallTargetGenerator(
- target, frameworkArgs, false, helper.Makefile->GetBacktrace());
- } else {
- status.SetError(
- cmStrCat("TARGETS given no FRAMEWORK DESTINATION for shared "
- "library FRAMEWORK target \"",
- target.GetName(), "\"."));
- return false;
- }
- } else {
- // The shared library uses the LIBRARY properties.
- if (!libraryArgs.GetDestination().empty()) {
- artifactsSpecified = true;
- }
- if (namelinkMode != cmInstallTargetGenerator::NamelinkModeOnly) {
- libraryGenerator = CreateInstallTargetGenerator(
- target, libraryArgs, false, helper.Makefile->GetBacktrace(),
- helper.GetLibraryDestination(&libraryArgs));
- libraryGenerator->SetNamelinkMode(
- cmInstallTargetGenerator::NamelinkModeSkip);
- }
- if (namelinkMode != cmInstallTargetGenerator::NamelinkModeSkip) {
- namelinkGenerator = CreateInstallTargetGenerator(
- target, libraryArgs, false, helper.Makefile->GetBacktrace(),
- helper.GetLibraryDestination(&libraryArgs), false, true);
- namelinkGenerator->SetNamelinkMode(
- cmInstallTargetGenerator::NamelinkModeOnly);
- }
- namelinkOnly =
- (namelinkMode == cmInstallTargetGenerator::NamelinkModeOnly);
- if (target.GetMakefile()->PlatformSupportsAppleTextStubs() &&
- target.IsSharedLibraryWithExports()) {
- // Apple .tbd files use the ARCHIVE properties
- if (!archiveArgs.GetDestination().empty()) {
- artifactsSpecified = true;
- }
- if (importlinkMode !=
- cmInstallTargetGenerator::NamelinkModeOnly) {
- archiveGenerator = CreateInstallTargetGenerator(
- target, archiveArgs, true, helper.Makefile->GetBacktrace(),
- helper.GetLibraryDestination(&archiveArgs));
- archiveGenerator->SetImportlinkMode(
- cmInstallTargetGenerator::NamelinkModeSkip);
- }
- if (importlinkMode !=
- cmInstallTargetGenerator::NamelinkModeSkip) {
- importlinkGenerator = CreateInstallTargetGenerator(
- target, archiveArgs, true, helper.Makefile->GetBacktrace(),
- helper.GetLibraryDestination(&archiveArgs), false, true);
- importlinkGenerator->SetImportlinkMode(
- cmInstallTargetGenerator::NamelinkModeOnly);
- }
- namelinkOnly =
- (importlinkMode == cmInstallTargetGenerator::NamelinkModeOnly);
- }
- }
- if (runtimeDependencySet && libraryGenerator) {
- runtimeDependencySet->AddLibrary(libraryGenerator.get());
- }
- }
- } break;
- case cmStateEnums::STATIC_LIBRARY: {
- // If it is marked with FRAMEWORK property use the FRAMEWORK set of
- // INSTALL properties. Otherwise, use the LIBRARY properties.
- if (target.IsFrameworkOnApple()) {
- // When in namelink only mode skip frameworks.
- if (namelinkMode == cmInstallTargetGenerator::NamelinkModeOnly) {
- namelinkOnly = true;
- if (!addTargetExport()) {
- return false;
- }
- continue;
- }
- // Use the FRAMEWORK properties.
- if (!frameworkArgs.GetDestination().empty()) {
- frameworkGenerator = CreateInstallTargetGenerator(
- target, frameworkArgs, false, helper.Makefile->GetBacktrace());
- } else {
- status.SetError(
- cmStrCat("TARGETS given no FRAMEWORK DESTINATION for static "
- "library FRAMEWORK target \"",
- target.GetName(), "\"."));
- return false;
- }
- } else {
- // Static libraries use ARCHIVE properties.
- if (!archiveArgs.GetDestination().empty()) {
- artifactsSpecified = true;
- }
- archiveGenerator = CreateInstallTargetGenerator(
- target, archiveArgs, false, helper.Makefile->GetBacktrace(),
- helper.GetArchiveDestination(&archiveArgs));
- }
- } break;
- case cmStateEnums::MODULE_LIBRARY: {
- // Modules use LIBRARY properties.
- if (!libraryArgs.GetDestination().empty()) {
- libraryGenerator = CreateInstallTargetGenerator(
- target, libraryArgs, false, helper.Makefile->GetBacktrace());
- libraryGenerator->SetNamelinkMode(namelinkMode);
- namelinkOnly =
- (namelinkMode == cmInstallTargetGenerator::NamelinkModeOnly);
- if (runtimeDependencySet) {
- runtimeDependencySet->AddModule(libraryGenerator.get());
- }
- } else {
- status.SetError(
- cmStrCat("TARGETS given no LIBRARY DESTINATION for module "
- "target \"",
- target.GetName(), "\"."));
- return false;
- }
- } break;
- case cmStateEnums::OBJECT_LIBRARY: {
- // Objects use OBJECT properties.
- if (!objectArgs.GetDestination().empty()) {
- // Verify that we know where the objects are to install them.
- std::string reason;
- if (!target.HasKnownObjectFileLocation(&reason)) {
- status.SetError(
- cmStrCat("TARGETS given OBJECT library \"", target.GetName(),
- "\" whose objects may not be installed", reason, "."));
- return false;
- }
- objectGenerator = CreateInstallTargetGenerator(
- target, objectArgs, false, helper.Makefile->GetBacktrace());
- } else {
- // Installing an OBJECT library without a destination transforms
- // it to an INTERFACE library. It installs no files but can be
- // exported.
- }
- } break;
- case cmStateEnums::EXECUTABLE: {
- if (target.IsAppBundleOnApple()) {
- // Application bundles use the BUNDLE properties.
- if (!bundleArgs.GetDestination().empty()) {
- bundleGenerator = CreateInstallTargetGenerator(
- target, bundleArgs, false, helper.Makefile->GetBacktrace());
- } else if (!runtimeArgs.GetDestination().empty()) {
- if (helper.CheckCMP0006()) {
- // For CMake 2.4 compatibility fallback to the RUNTIME
- // properties.
- bundleGenerator = CreateInstallTargetGenerator(
- target, runtimeArgs, false, helper.Makefile->GetBacktrace());
- }
- }
- if (!bundleGenerator) {
- status.SetError(cmStrCat("TARGETS given no BUNDLE DESTINATION for "
- "MACOSX_BUNDLE executable target \"",
- target.GetName(), "\"."));
- return false;
- }
- if (runtimeDependencySet) {
- if (!AddBundleExecutable(helper, runtimeDependencySet,
- bundleGenerator.get())) {
- return false;
- }
- }
- } else {
- // Executables use the RUNTIME properties.
- if (!runtimeArgs.GetDestination().empty()) {
- artifactsSpecified = true;
- }
- runtimeGenerator = CreateInstallTargetGenerator(
- target, runtimeArgs, false, helper.Makefile->GetBacktrace(),
- helper.GetRuntimeDestination(&runtimeArgs));
- if (runtimeDependencySet) {
- runtimeDependencySet->AddExecutable(runtimeGenerator.get());
- }
- }
- // On DLL platforms an executable may also have an import
- // library. Install it to the archive destination if it
- // exists.
- if ((target.IsDLLPlatform() || target.IsAIX()) &&
- !archiveArgs.GetDestination().empty() &&
- target.IsExecutableWithExports()) {
- // The import library uses the ARCHIVE properties.
- artifactsSpecified = true;
- archiveGenerator = CreateInstallTargetGenerator(
- target, archiveArgs, true, helper.Makefile->GetBacktrace(), true);
- }
- } break;
- case cmStateEnums::INTERFACE_LIBRARY:
- // Nothing to do. An INTERFACE_LIBRARY can be installed, but the
- // only effect of that is to make it exportable. It installs no
- // other files itself.
- default:
- // This should never happen due to the above type check.
- // Ignore the case.
- break;
- }
- // These well-known sets of files are installed *automatically* for
- // FRAMEWORK SHARED library targets on the Mac as part of installing the
- // FRAMEWORK. For other target types or on other platforms, they are not
- // installed automatically and so we need to create install files
- // generators for them.
- bool createInstallGeneratorsForTargetFileSets = true;
- if (target.IsFrameworkOnApple()) {
- createInstallGeneratorsForTargetFileSets = false;
- }
- if (createInstallGeneratorsForTargetFileSets && !namelinkOnly) {
- cmValue files = target.GetProperty("PRIVATE_HEADER");
- if (cmNonempty(files)) {
- cmList relFiles{ *files };
- std::vector<std::string> absFiles;
- if (!helper.MakeFilesFullPath("PRIVATE_HEADER", relFiles, absFiles)) {
- return false;
- }
- // Create the files install generator.
- if (!artifactsSpecified ||
- !privateHeaderArgs.GetDestination().empty()) {
- privateHeaderGenerator = CreateInstallFilesGenerator(
- helper.Makefile, absFiles, privateHeaderArgs, false,
- helper.GetIncludeDestination(&privateHeaderArgs));
- } else {
- std::ostringstream e;
- e << "Target " << target.GetName() << " has "
- << "PRIVATE_HEADER files but no PRIVATE_HEADER DESTINATION.";
- helper.Makefile->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
- }
- }
- files = target.GetProperty("PUBLIC_HEADER");
- if (cmNonempty(files)) {
- cmList relFiles{ *files };
- std::vector<std::string> absFiles;
- if (!helper.MakeFilesFullPath("PUBLIC_HEADER", relFiles, absFiles)) {
- return false;
- }
- // Create the files install generator.
- if (!artifactsSpecified ||
- !publicHeaderArgs.GetDestination().empty()) {
- publicHeaderGenerator = CreateInstallFilesGenerator(
- helper.Makefile, absFiles, publicHeaderArgs, false,
- helper.GetIncludeDestination(&publicHeaderArgs));
- } else {
- std::ostringstream e;
- e << "Target " << target.GetName() << " has "
- << "PUBLIC_HEADER files but no PUBLIC_HEADER DESTINATION.";
- helper.Makefile->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
- }
- }
- files = target.GetProperty("RESOURCE");
- if (cmNonempty(files)) {
- cmList relFiles{ *files };
- std::vector<std::string> absFiles;
- if (!helper.MakeFilesFullPath("RESOURCE", relFiles, absFiles)) {
- return false;
- }
- // Create the files install generator.
- if (!resourceArgs.GetDestination().empty()) {
- resourceGenerator = CreateInstallFilesGenerator(
- helper.Makefile, absFiles, resourceArgs, false);
- } else if (!target.IsAppBundleOnApple()) {
- helper.Makefile->IssueMessage(
- MessageType::AUTHOR_WARNING,
- cmStrCat("Target ", target.GetName(),
- " has RESOURCE files but no RESOURCE DESTINATION."));
- }
- }
- }
- if (!namelinkOnly) {
- for (std::size_t i = 0; i < fileSetArgs.size(); i++) {
- if (auto* fileSet = target.GetFileSet(fileSetArgs[i].GetFileSet())) {
- cmList interfaceFileSetEntries{ target.GetSafeProperty(
- cmTarget::GetInterfaceFileSetsPropertyName(fileSet->GetType())) };
- if (std::find(interfaceFileSetEntries.begin(),
- interfaceFileSetEntries.end(),
- fileSetArgs[i].GetFileSet()) !=
- interfaceFileSetEntries.end()) {
- std::string destination;
- if (fileSet->GetType() == "HEADERS"_s) {
- destination = helper.GetIncludeDestination(&fileSetArgs[i]);
- } else {
- destination = fileSetArgs[i].GetDestination();
- if (destination.empty()) {
- status.SetError(cmStrCat(
- "TARGETS given no FILE_SET DESTINATION for target \"",
- target.GetName(), "\" file set \"", fileSet->GetName(),
- "\"."));
- return false;
- }
- }
- fileSetGenerators.push_back(CreateInstallFileSetGenerator(
- helper, target, fileSet, destination, fileSetArgs[i]));
- installsFileSet[i] = true;
- }
- }
- }
- }
- if (!cxxModuleBmiArgs.GetDestination().empty()) {
- cxxModuleBmiGenerator = cm::make_unique<cmInstallCxxModuleBmiGenerator>(
- target.GetName(),
- helper.GetCxxModulesBmiDestination(&cxxModuleBmiArgs),
- cxxModuleBmiArgs.GetPermissions(),
- cxxModuleBmiArgs.GetConfigurations(), cxxModuleBmiArgs.GetComponent(),
- cmInstallGenerator::SelectMessageLevel(target.GetMakefile()),
- cxxModuleBmiArgs.GetExcludeFromAll(), cxxModuleBmiArgs.GetOptional(),
- helper.Makefile->GetBacktrace());
- target.SetHaveInstallRule(true);
- }
- // Add this install rule to an export if one was specified.
- if (!addTargetExport()) {
- return false;
- }
- // Keep track of whether we're installing anything in each category
- installsArchive = installsArchive || archiveGenerator;
- installsLibrary = installsLibrary || libraryGenerator;
- installsNamelink = installsNamelink || namelinkGenerator;
- installsImportlink = installsImportlink || importlinkGenerator;
- installsRuntime = installsRuntime || runtimeGenerator;
- installsObject = installsObject || objectGenerator;
- installsFramework = installsFramework || frameworkGenerator;
- installsBundle = installsBundle || bundleGenerator;
- installsPrivateHeader = installsPrivateHeader || privateHeaderGenerator;
- installsPublicHeader = installsPublicHeader || publicHeaderGenerator;
- installsResource = installsResource || resourceGenerator;
- installsCxxModuleBmi = installsCxxModuleBmi || cxxModuleBmiGenerator;
- helper.Makefile->AddInstallGenerator(std::move(archiveGenerator));
- helper.Makefile->AddInstallGenerator(std::move(libraryGenerator));
- helper.Makefile->AddInstallGenerator(std::move(namelinkGenerator));
- helper.Makefile->AddInstallGenerator(std::move(importlinkGenerator));
- helper.Makefile->AddInstallGenerator(std::move(runtimeGenerator));
- helper.Makefile->AddInstallGenerator(std::move(objectGenerator));
- helper.Makefile->AddInstallGenerator(std::move(frameworkGenerator));
- helper.Makefile->AddInstallGenerator(std::move(bundleGenerator));
- helper.Makefile->AddInstallGenerator(std::move(privateHeaderGenerator));
- helper.Makefile->AddInstallGenerator(std::move(publicHeaderGenerator));
- helper.Makefile->AddInstallGenerator(std::move(resourceGenerator));
- for (auto& gen : fileSetGenerators) {
- helper.Makefile->AddInstallGenerator(std::move(gen));
- }
- helper.Makefile->AddInstallGenerator(std::move(cxxModuleBmiGenerator));
- }
- if (runtimeDependenciesArgVector && !runtimeDependencySet->Empty()) {
- AddInstallRuntimeDependenciesGenerator(
- helper, runtimeDependencySet, runtimeArgs, libraryArgs, frameworkArgs,
- std::move(runtimeDependenciesArgs), installsRuntime, installsLibrary,
- installsFramework);
- }
- // Tell the global generator about any installation component names
- // specified
- if (installsArchive) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- archiveArgs.GetComponent());
- }
- if (installsLibrary) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- libraryArgs.GetComponent());
- }
- if (installsNamelink) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- libraryArgs.GetNamelinkComponent());
- }
- if (installsImportlink) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- archiveArgs.GetNamelinkComponent());
- }
- if (installsRuntime) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- runtimeArgs.GetComponent());
- }
- if (installsObject) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- objectArgs.GetComponent());
- }
- if (installsFramework) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- frameworkArgs.GetComponent());
- }
- if (installsBundle) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- bundleArgs.GetComponent());
- }
- if (installsPrivateHeader) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- privateHeaderArgs.GetComponent());
- }
- if (installsPublicHeader) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- publicHeaderArgs.GetComponent());
- }
- if (installsResource) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- resourceArgs.GetComponent());
- }
- for (std::size_t i = 0; i < fileSetArgs.size(); i++) {
- if (installsFileSet[i]) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- fileSetArgs[i].GetComponent());
- }
- }
- if (installsCxxModuleBmi) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- cxxModuleBmiArgs.GetComponent());
- }
- return true;
- }
- bool HandleImportedRuntimeArtifactsMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- Helper helper(status);
- // This is the IMPORTED_RUNTIME_ARTIFACTS mode.
- std::vector<cmTarget*> targets;
- struct ArgVectors
- {
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Library;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Runtime;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Framework;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Bundle;
- };
- static auto const argHelper = cmArgumentParser<ArgVectors>{}
- .Bind("LIBRARY"_s, &ArgVectors::Library)
- .Bind("RUNTIME"_s, &ArgVectors::Runtime)
- .Bind("FRAMEWORK"_s, &ArgVectors::Framework)
- .Bind("BUNDLE"_s, &ArgVectors::Bundle);
- std::vector<std::string> genericArgVector;
- ArgVectors const argVectors = argHelper.Parse(args, &genericArgVector);
- // now parse the generic args (i.e. the ones not specialized on LIBRARY,
- // RUNTIME etc. (see above)
- ArgumentParser::MaybeEmpty<std::vector<std::string>> targetList;
- std::string runtimeDependencySetArg;
- std::vector<std::string> unknownArgs;
- cmInstallCommandArguments genericArgs(helper.DefaultComponentName,
- *helper.Makefile);
- genericArgs.Bind("IMPORTED_RUNTIME_ARTIFACTS"_s, targetList)
- .Bind("RUNTIME_DEPENDENCY_SET"_s, runtimeDependencySetArg);
- genericArgs.Parse(genericArgVector, &unknownArgs);
- bool success = genericArgs.Finalize();
- cmInstallCommandArguments libraryArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments runtimeArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments frameworkArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments bundleArgs(helper.DefaultComponentName,
- *helper.Makefile);
- // now parse the args for specific parts of the target (e.g. LIBRARY,
- // RUNTIME etc.
- libraryArgs.Parse(argVectors.Library, &unknownArgs);
- runtimeArgs.Parse(argVectors.Runtime, &unknownArgs);
- frameworkArgs.Parse(argVectors.Framework, &unknownArgs);
- bundleArgs.Parse(argVectors.Bundle, &unknownArgs);
- if (!unknownArgs.empty()) {
- // Unknown argument.
- status.SetError(
- cmStrCat("IMPORTED_RUNTIME_ARTIFACTS given unknown argument \"",
- unknownArgs[0], "\"."));
- return false;
- }
- // apply generic args
- libraryArgs.SetGenericArguments(&genericArgs);
- runtimeArgs.SetGenericArguments(&genericArgs);
- frameworkArgs.SetGenericArguments(&genericArgs);
- bundleArgs.SetGenericArguments(&genericArgs);
- success = success && libraryArgs.Finalize();
- success = success && runtimeArgs.Finalize();
- success = success && frameworkArgs.Finalize();
- success = success && bundleArgs.Finalize();
- if (!success) {
- return false;
- }
- cmInstallRuntimeDependencySet* runtimeDependencySet = nullptr;
- if (!runtimeDependencySetArg.empty()) {
- auto system = helper.Makefile->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
- if (!cmRuntimeDependencyArchive::PlatformSupportsRuntimeDependencies(
- system)) {
- status.SetError(
- cmStrCat("IMPORTED_RUNTIME_ARTIFACTS RUNTIME_DEPENDENCY_SET is not "
- "supported on system \"",
- system, '"'));
- return false;
- }
- runtimeDependencySet =
- helper.Makefile->GetGlobalGenerator()->GetNamedRuntimeDependencySet(
- runtimeDependencySetArg);
- }
- // Check if there is something to do.
- if (targetList.empty()) {
- return true;
- }
- for (std::string const& tgt : targetList) {
- if (helper.Makefile->IsAlias(tgt)) {
- status.SetError(cmStrCat("IMPORTED_RUNTIME_ARTIFACTS given target \"",
- tgt, "\" which is an alias."));
- return false;
- }
- // Lookup this target in the current directory.
- cmTarget* target = helper.Makefile->FindTargetToUse(tgt);
- if (!target || !target->IsImported()) {
- // If no local target has been found, find it in the global scope.
- cmTarget* const global_target =
- helper.Makefile->GetGlobalGenerator()->FindTarget(
- tgt, { cmStateEnums::TargetDomain::NATIVE });
- if (global_target && global_target->IsImported()) {
- target = global_target;
- }
- }
- if (target) {
- // Found the target. Check its type.
- if (target->GetType() != cmStateEnums::EXECUTABLE &&
- target->GetType() != cmStateEnums::SHARED_LIBRARY &&
- target->GetType() != cmStateEnums::MODULE_LIBRARY) {
- status.SetError(
- cmStrCat("IMPORTED_RUNTIME_ARTIFACTS given target \"", tgt,
- "\" which is not an executable, library, or module."));
- return false;
- }
- // Store the target in the list to be installed.
- targets.push_back(target);
- } else {
- // Did not find the target.
- status.SetError(cmStrCat("IMPORTED_RUNTIME_ARTIFACTS given target \"",
- tgt, "\" which does not exist."));
- return false;
- }
- }
- // Keep track of whether we will be performing an installation of
- // any files of the given type.
- bool installsLibrary = false;
- bool installsRuntime = false;
- bool installsFramework = false;
- bool installsBundle = false;
- auto const createInstallGenerator =
- [helper](cmTarget& target, const cmInstallCommandArguments& typeArgs,
- const std::string& destination)
- -> std::unique_ptr<cmInstallImportedRuntimeArtifactsGenerator> {
- return cm::make_unique<cmInstallImportedRuntimeArtifactsGenerator>(
- target.GetName(), destination, typeArgs.GetPermissions(),
- typeArgs.GetConfigurations(), typeArgs.GetComponent(),
- cmInstallGenerator::SelectMessageLevel(helper.Makefile),
- typeArgs.GetExcludeFromAll(), typeArgs.GetOptional(),
- helper.Makefile->GetBacktrace());
- };
- // Generate install script code to install the given targets.
- for (cmTarget* ti : targets) {
- // Handle each target type.
- cmTarget& target = *ti;
- std::unique_ptr<cmInstallImportedRuntimeArtifactsGenerator>
- libraryGenerator;
- std::unique_ptr<cmInstallImportedRuntimeArtifactsGenerator>
- runtimeGenerator;
- std::unique_ptr<cmInstallImportedRuntimeArtifactsGenerator>
- frameworkGenerator;
- std::unique_ptr<cmInstallImportedRuntimeArtifactsGenerator>
- bundleGenerator;
- switch (target.GetType()) {
- case cmStateEnums::SHARED_LIBRARY:
- if (target.IsDLLPlatform()) {
- runtimeGenerator = createInstallGenerator(
- target, runtimeArgs, helper.GetRuntimeDestination(&runtimeArgs));
- if (runtimeDependencySet) {
- runtimeDependencySet->AddLibrary(runtimeGenerator.get());
- }
- } else if (target.IsFrameworkOnApple()) {
- if (frameworkArgs.GetDestination().empty()) {
- status.SetError(cmStrCat("IMPORTED_RUNTIME_ARTIFACTS given no "
- "FRAMEWORK DESTINATION for shared "
- "library FRAMEWORK target \"",
- target.GetName(), "\"."));
- return false;
- }
- frameworkGenerator = createInstallGenerator(
- target, frameworkArgs, frameworkArgs.GetDestination());
- if (runtimeDependencySet) {
- runtimeDependencySet->AddLibrary(frameworkGenerator.get());
- }
- } else {
- libraryGenerator = createInstallGenerator(
- target, libraryArgs, helper.GetLibraryDestination(&libraryArgs));
- if (runtimeDependencySet) {
- runtimeDependencySet->AddLibrary(libraryGenerator.get());
- }
- }
- break;
- case cmStateEnums::MODULE_LIBRARY:
- libraryGenerator = createInstallGenerator(
- target, libraryArgs, helper.GetLibraryDestination(&libraryArgs));
- if (runtimeDependencySet) {
- runtimeDependencySet->AddModule(libraryGenerator.get());
- }
- break;
- case cmStateEnums::EXECUTABLE:
- if (target.IsAppBundleOnApple()) {
- if (bundleArgs.GetDestination().empty()) {
- status.SetError(
- cmStrCat("IMPORTED_RUNTIME_ARTIFACTS given no BUNDLE "
- "DESTINATION for MACOSX_BUNDLE executable target \"",
- target.GetName(), "\"."));
- return false;
- }
- bundleGenerator = createInstallGenerator(
- target, bundleArgs, bundleArgs.GetDestination());
- if (runtimeDependencySet) {
- if (!AddBundleExecutable(helper, runtimeDependencySet,
- bundleGenerator.get())) {
- return false;
- }
- }
- } else {
- runtimeGenerator = createInstallGenerator(
- target, runtimeArgs, helper.GetRuntimeDestination(&runtimeArgs));
- if (runtimeDependencySet) {
- runtimeDependencySet->AddExecutable(runtimeGenerator.get());
- }
- }
- break;
- default:
- assert(false && "This should never happen");
- break;
- }
- // Keep track of whether we're installing anything in each category
- installsLibrary = installsLibrary || libraryGenerator;
- installsRuntime = installsRuntime || runtimeGenerator;
- installsFramework = installsFramework || frameworkGenerator;
- installsBundle = installsBundle || bundleGenerator;
- helper.Makefile->AddInstallGenerator(std::move(libraryGenerator));
- helper.Makefile->AddInstallGenerator(std::move(runtimeGenerator));
- helper.Makefile->AddInstallGenerator(std::move(frameworkGenerator));
- helper.Makefile->AddInstallGenerator(std::move(bundleGenerator));
- }
- // Tell the global generator about any installation component names
- // specified
- if (installsLibrary) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- libraryArgs.GetComponent());
- }
- if (installsRuntime) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- runtimeArgs.GetComponent());
- }
- if (installsFramework) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- frameworkArgs.GetComponent());
- }
- if (installsBundle) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- bundleArgs.GetComponent());
- }
- return true;
- }
- bool HandleFilesMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- Helper helper(status);
- // This is the FILES mode.
- bool programs = (args[0] == "PROGRAMS");
- cmInstallCommandArguments ica(helper.DefaultComponentName, *helper.Makefile);
- ArgumentParser::MaybeEmpty<std::vector<std::string>> files;
- ica.Bind(programs ? "PROGRAMS"_s : "FILES"_s, files);
- std::vector<std::string> unknownArgs;
- ica.Parse(args, &unknownArgs);
- if (!unknownArgs.empty()) {
- // Unknown argument.
- status.SetError(
- cmStrCat(args[0], " given unknown argument \"", unknownArgs[0], "\"."));
- return false;
- }
- std::string type = ica.GetType();
- if (!type.empty() && allowedTypes.count(type) == 0) {
- status.SetError(
- cmStrCat(args[0], " given non-type \"", type, "\" with TYPE argument."));
- return false;
- }
- const std::vector<std::string>& filesVector = files;
- // Check if there is something to do.
- if (filesVector.empty()) {
- return true;
- }
- if (!ica.GetRename().empty() && filesVector.size() > 1) {
- // The rename option works only with one file.
- status.SetError(
- cmStrCat(args[0], " given RENAME option with more than one file."));
- return false;
- }
- std::vector<std::string> absFiles;
- if (!helper.MakeFilesFullPath(args[0].c_str(), filesVector, absFiles)) {
- return false;
- }
- cmPolicies::PolicyStatus policyStatus =
- helper.Makefile->GetPolicyStatus(cmPolicies::CMP0062);
- cmGlobalGenerator* gg = helper.Makefile->GetGlobalGenerator();
- for (std::string const& file : filesVector) {
- if (gg->IsExportedTargetsFile(file)) {
- const char* modal = nullptr;
- std::ostringstream e;
- MessageType messageType = MessageType::AUTHOR_WARNING;
- switch (policyStatus) {
- case cmPolicies::WARN:
- e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0062) << "\n";
- modal = "should";
- CM_FALLTHROUGH;
- case cmPolicies::OLD:
- break;
- case cmPolicies::NEW:
- modal = "may";
- messageType = MessageType::FATAL_ERROR;
- break;
- }
- if (modal) {
- e << "The file\n " << file
- << "\nwas generated by the export() "
- "command. It "
- << modal
- << " not be installed with the "
- "install() command. Use the install(EXPORT) mechanism "
- "instead. See the cmake-packages(7) manual for more.\n";
- helper.Makefile->IssueMessage(messageType, e.str());
- if (messageType == MessageType::FATAL_ERROR) {
- return false;
- }
- }
- }
- }
- if (!ica.Finalize()) {
- return false;
- }
- if (!type.empty() && !ica.GetDestination().empty()) {
- status.SetError(cmStrCat(args[0],
- " given both TYPE and DESTINATION arguments. "
- "You may only specify one."));
- return false;
- }
- std::string destination = helper.GetDestinationForType(&ica, type);
- if (destination.empty()) {
- // A destination is required.
- status.SetError(cmStrCat(args[0], " given no DESTINATION!"));
- return false;
- }
- // Create the files install generator.
- helper.Makefile->AddInstallGenerator(CreateInstallFilesGenerator(
- helper.Makefile, absFiles, ica, programs, destination));
- // Tell the global generator about any installation component names
- // specified.
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- ica.GetComponent());
- return true;
- }
- bool HandleDirectoryMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- Helper helper(status);
- enum Doing
- {
- DoingNone,
- DoingDirs,
- DoingDestination,
- DoingPattern,
- DoingRegex,
- DoingPermsFile,
- DoingPermsDir,
- DoingPermsMatch,
- DoingConfigurations,
- DoingComponent,
- DoingType
- };
- Doing doing = DoingDirs;
- bool in_match_mode = false;
- bool optional = false;
- bool exclude_from_all = false;
- bool message_never = false;
- std::vector<std::string> dirs;
- cm::optional<std::string> destination;
- std::string permissions_file;
- std::string permissions_dir;
- std::vector<std::string> configurations;
- std::string component = helper.DefaultComponentName;
- std::string literal_args;
- std::string type;
- for (unsigned int i = 1; i < args.size(); ++i) {
- if (args[i] == "DESTINATION") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Switch to setting the destination property.
- doing = DoingDestination;
- } else if (args[i] == "TYPE") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Switch to setting the type.
- doing = DoingType;
- } else if (args[i] == "OPTIONAL") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Mark the rule as optional.
- optional = true;
- doing = DoingNone;
- } else if (args[i] == "MESSAGE_NEVER") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Mark the rule as quiet.
- message_never = true;
- doing = DoingNone;
- } else if (args[i] == "PATTERN") {
- // Switch to a new pattern match rule.
- doing = DoingPattern;
- in_match_mode = true;
- } else if (args[i] == "REGEX") {
- // Switch to a new regex match rule.
- doing = DoingRegex;
- in_match_mode = true;
- } else if (args[i] == "EXCLUDE") {
- // Add this property to the current match rule.
- if (!in_match_mode || doing == DoingPattern || doing == DoingRegex) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" before a PATTERN or REGEX is given."));
- return false;
- }
- literal_args += " EXCLUDE";
- doing = DoingNone;
- } else if (args[i] == "PERMISSIONS") {
- if (!in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" before a PATTERN or REGEX is given."));
- return false;
- }
- // Switch to setting the current match permissions property.
- literal_args += " PERMISSIONS";
- doing = DoingPermsMatch;
- } else if (args[i] == "FILE_PERMISSIONS") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Switch to setting the file permissions property.
- doing = DoingPermsFile;
- } else if (args[i] == "DIRECTORY_PERMISSIONS") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Switch to setting the directory permissions property.
- doing = DoingPermsDir;
- } else if (args[i] == "USE_SOURCE_PERMISSIONS") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Add this option literally.
- literal_args += " USE_SOURCE_PERMISSIONS";
- doing = DoingNone;
- } else if (args[i] == "FILES_MATCHING") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Add this option literally.
- literal_args += " FILES_MATCHING";
- doing = DoingNone;
- } else if (args[i] == "CONFIGURATIONS") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Switch to setting the configurations property.
- doing = DoingConfigurations;
- } else if (args[i] == "COMPONENT") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- // Switch to setting the component property.
- doing = DoingComponent;
- } else if (args[i] == "EXCLUDE_FROM_ALL") {
- if (in_match_mode) {
- status.SetError(cmStrCat(args[0], " does not allow \"", args[i],
- "\" after PATTERN or REGEX."));
- return false;
- }
- exclude_from_all = true;
- doing = DoingNone;
- } else if (doing == DoingDirs) {
- // Convert this directory to a full path.
- std::string dir = args[i];
- std::string::size_type gpos = cmGeneratorExpression::Find(dir);
- if (gpos != 0 && !cmSystemTools::FileIsFullPath(dir)) {
- dir =
- cmStrCat(helper.Makefile->GetCurrentSourceDirectory(), '/', args[i]);
- }
- // Make sure the name is a directory.
- if (cmSystemTools::FileExists(dir, true)) {
- status.SetError(cmStrCat(args[0], " given non-directory \"", args[i],
- "\" to install."));
- return false;
- }
- // Store the directory for installation.
- dirs.push_back(std::move(dir));
- } else if (doing == DoingConfigurations) {
- configurations.push_back(args[i]);
- } else if (doing == DoingDestination) {
- // A trailing slash is meaningful for this form, but normalization
- // preserves it if present
- switch (status.GetMakefile().GetPolicyStatus(cmPolicies::CMP0177)) {
- case cmPolicies::NEW:
- destination = cmCMakePath(args[i]).Normal().String();
- break;
- case cmPolicies::WARN:
- // We can't be certain if a warning is appropriate if there are any
- // generator expressions
- if (cmGeneratorExpression::Find(args[i]) == cm::string_view::npos &&
- args[i] != cmCMakePath(args[i]).Normal().String()) {
- status.GetMakefile().IssueMessage(
- MessageType::AUTHOR_WARNING,
- cmPolicies::GetPolicyWarning(cmPolicies::CMP0177));
- }
- CM_FALLTHROUGH;
- case cmPolicies::OLD:
- destination = args[i];
- break;
- }
- doing = DoingNone;
- } else if (doing == DoingType) {
- if (allowedTypes.count(args[i]) == 0) {
- status.SetError(cmStrCat(args[0], " given non-type \"", args[i],
- "\" with TYPE argument."));
- return false;
- }
- type = args[i];
- doing = DoingNone;
- } else if (doing == DoingPattern) {
- // Convert the pattern to a regular expression. Require a
- // leading slash and trailing end-of-string in the matched
- // string to make sure the pattern matches only whole file
- // names.
- literal_args += " REGEX \"/";
- std::string regex = cmsys::Glob::PatternToRegex(args[i], false);
- cmSystemTools::ReplaceString(regex, "\\", "\\\\");
- literal_args += regex;
- literal_args += "$\"";
- doing = DoingNone;
- } else if (doing == DoingRegex) {
- literal_args += " REGEX \"";
- // Match rules are case-insensitive on some platforms.
- #if defined(_WIN32) || defined(__APPLE__)
- std::string regex = cmSystemTools::LowerCase(args[i]);
- #else
- std::string regex = args[i];
- #endif
- cmSystemTools::ReplaceString(regex, "\\", "\\\\");
- literal_args += regex;
- literal_args += "\"";
- doing = DoingNone;
- } else if (doing == DoingComponent) {
- component = args[i];
- doing = DoingNone;
- } else if (doing == DoingPermsFile) {
- // Check the requested permission.
- if (!cmInstallCommandArguments::CheckPermissions(args[i],
- permissions_file)) {
- status.SetError(cmStrCat(args[0], " given invalid file permission \"",
- args[i], "\"."));
- return false;
- }
- } else if (doing == DoingPermsDir) {
- // Check the requested permission.
- if (!cmInstallCommandArguments::CheckPermissions(args[i],
- permissions_dir)) {
- status.SetError(cmStrCat(
- args[0], " given invalid directory permission \"", args[i], "\"."));
- return false;
- }
- } else if (doing == DoingPermsMatch) {
- // Check the requested permission.
- if (!cmInstallCommandArguments::CheckPermissions(args[i],
- literal_args)) {
- status.SetError(
- cmStrCat(args[0], " given invalid permission \"", args[i], "\"."));
- return false;
- }
- } else {
- // Unknown argument.
- status.SetError(
- cmStrCat(args[0], " given unknown argument \"", args[i], "\"."));
- return false;
- }
- }
- // Support installing an empty directory.
- if (dirs.empty() && destination.has_value()) {
- dirs.emplace_back();
- }
- // Check if there is something to do.
- if (dirs.empty()) {
- return true;
- }
- if (!destination.has_value()) {
- if (type.empty()) {
- // A destination is required.
- status.SetError(cmStrCat(args[0], " given no DESTINATION!"));
- return false;
- }
- destination = helper.GetDestinationForType(nullptr, type);
- } else if (!type.empty()) {
- status.SetError(cmStrCat(args[0],
- " given both TYPE and DESTINATION "
- "arguments. You may only specify one."));
- return false;
- }
- cmInstallGenerator::MessageLevel message =
- cmInstallGenerator::SelectMessageLevel(helper.Makefile, message_never);
- // Create the directory install generator.
- helper.Makefile->AddInstallGenerator(
- cm::make_unique<cmInstallDirectoryGenerator>(
- dirs, *destination, permissions_file, permissions_dir, configurations,
- component, message, exclude_from_all, literal_args, optional,
- helper.Makefile->GetBacktrace()));
- // Tell the global generator about any installation component names
- // specified.
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(component);
- return true;
- }
- bool HandleExportAndroidMKMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- #ifndef CMAKE_BOOTSTRAP
- Helper helper(status);
- // This is the EXPORT mode.
- cmInstallCommandArguments ica(helper.DefaultComponentName, *helper.Makefile);
- std::string exp;
- std::string name_space;
- bool exportOld = false;
- std::string filename;
- ica.Bind("EXPORT_ANDROID_MK"_s, exp);
- ica.Bind("NAMESPACE"_s, name_space);
- ica.Bind("EXPORT_LINK_INTERFACE_LIBRARIES"_s, exportOld);
- ica.Bind("FILE"_s, filename);
- std::vector<std::string> unknownArgs;
- ica.Parse(args, &unknownArgs);
- if (!unknownArgs.empty()) {
- // Unknown argument.
- status.SetError(
- cmStrCat(args[0], " given unknown argument \"", unknownArgs[0], "\"."));
- return false;
- }
- if (!ica.Finalize()) {
- return false;
- }
- // Make sure there is a destination.
- if (ica.GetDestination().empty()) {
- // A destination is required.
- status.SetError(cmStrCat(args[0], " given no DESTINATION!"));
- return false;
- }
- // Check the file name.
- std::string fname = filename;
- if (fname.find_first_of(":/\\") != std::string::npos) {
- status.SetError(cmStrCat(args[0], " given invalid export file name \"",
- fname,
- "\". The FILE argument may not contain a path. "
- "Specify the path in the DESTINATION argument."));
- return false;
- }
- // Check the file extension.
- if (!fname.empty() &&
- cmSystemTools::GetFilenameLastExtension(fname) != ".mk") {
- status.SetError(cmStrCat(
- args[0], " given invalid export file name \"", fname,
- R"(". The FILE argument must specify a name ending in ".mk".)"));
- return false;
- }
- if (fname.find_first_of(":/\\") != std::string::npos) {
- status.SetError(
- cmStrCat(args[0], " given export name \"", exp,
- "\". "
- "This name cannot be safely converted to a file name. "
- "Specify a different export name or use the FILE option to set "
- "a file name explicitly."));
- return false;
- }
- // Use the default name
- if (fname.empty()) {
- fname = "Android.mk";
- }
- cmExportSet& exportSet =
- helper.Makefile->GetGlobalGenerator()->GetExportSets()[exp];
- cmInstallGenerator::MessageLevel message =
- cmInstallGenerator::SelectMessageLevel(helper.Makefile);
- // Create the export install generator.
- helper.Makefile->AddInstallGenerator(
- cm::make_unique<cmInstallAndroidMKExportGenerator>(
- &exportSet, ica.GetDestination(), ica.GetPermissions(),
- ica.GetConfigurations(), ica.GetComponent(), message,
- ica.GetExcludeFromAll(), std::move(fname), std::move(name_space),
- helper.Makefile->GetBacktrace()));
- return true;
- #else
- static_cast<void>(args);
- status.SetError("EXPORT_ANDROID_MK not supported in bootstrap cmake");
- return false;
- #endif
- }
- bool HandleExportMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- Helper helper(status);
- // This is the EXPORT mode.
- cmInstallCommandArguments ica(helper.DefaultComponentName, *helper.Makefile);
- std::string exp;
- std::string name_space;
- bool exportOld = false;
- std::string filename;
- std::string cxx_modules_directory;
- bool exportPackageDependencies = false;
- ica.Bind("EXPORT"_s, exp);
- ica.Bind("NAMESPACE"_s, name_space);
- ica.Bind("EXPORT_LINK_INTERFACE_LIBRARIES"_s, exportOld);
- ica.Bind("FILE"_s, filename);
- ica.Bind("CXX_MODULES_DIRECTORY"_s, cxx_modules_directory);
- if (cmExperimental::HasSupportEnabled(
- status.GetMakefile(),
- cmExperimental::Feature::ExportPackageDependencies)) {
- ica.Bind("EXPORT_PACKAGE_DEPENDENCIES"_s, exportPackageDependencies);
- }
- std::vector<std::string> unknownArgs;
- ica.Parse(args, &unknownArgs);
- if (!unknownArgs.empty()) {
- // Unknown argument.
- status.SetError(
- cmStrCat(args[0], " given unknown argument \"", unknownArgs[0], "\"."));
- return false;
- }
- if (!ica.Finalize()) {
- return false;
- }
- // Make sure there is a destination.
- if (ica.GetDestination().empty()) {
- // A destination is required.
- status.SetError(cmStrCat(args[0], " given no DESTINATION!"));
- return false;
- }
- // Check the file name.
- std::string fname = filename;
- if (fname.find_first_of(":/\\") != std::string::npos) {
- status.SetError(cmStrCat(args[0], " given invalid export file name \"",
- fname,
- "\". "
- "The FILE argument may not contain a path. "
- "Specify the path in the DESTINATION argument."));
- return false;
- }
- // Check the file extension.
- if (!fname.empty() &&
- cmSystemTools::GetFilenameLastExtension(fname) != ".cmake") {
- status.SetError(
- cmStrCat(args[0], " given invalid export file name \"", fname,
- "\". "
- "The FILE argument must specify a name ending in \".cmake\"."));
- return false;
- }
- // Construct the file name.
- if (fname.empty()) {
- fname = cmStrCat(exp, ".cmake");
- if (fname.find_first_of(":/\\") != std::string::npos) {
- status.SetError(cmStrCat(
- args[0], " given export name \"", exp,
- "\". "
- "This name cannot be safely converted to a file name. "
- "Specify a different export name or use the FILE option to set "
- "a file name explicitly."));
- return false;
- }
- }
- cmExportSet& exportSet =
- helper.Makefile->GetGlobalGenerator()->GetExportSets()[exp];
- if (exportOld) {
- for (auto const& te : exportSet.GetTargetExports()) {
- cmTarget* tgt =
- helper.Makefile->GetGlobalGenerator()->FindTarget(te->TargetName);
- const bool newCMP0022Behavior =
- (tgt && tgt->GetPolicyStatusCMP0022() != cmPolicies::WARN &&
- tgt->GetPolicyStatusCMP0022() != cmPolicies::OLD);
- if (!newCMP0022Behavior) {
- status.SetError(cmStrCat(
- "INSTALL(EXPORT) given keyword \""
- "EXPORT_LINK_INTERFACE_LIBRARIES\", but target \"",
- te->TargetName, "\" does not have policy CMP0022 set to NEW."));
- return false;
- }
- }
- }
- cmInstallGenerator::MessageLevel message =
- cmInstallGenerator::SelectMessageLevel(helper.Makefile);
- // Create the export install generator.
- helper.Makefile->AddInstallGenerator(
- cm::make_unique<cmInstallCMakeConfigExportGenerator>(
- &exportSet, ica.GetDestination(), ica.GetPermissions(),
- ica.GetConfigurations(), ica.GetComponent(), message,
- ica.GetExcludeFromAll(), std::move(fname), std::move(name_space),
- std::move(cxx_modules_directory), exportOld, exportPackageDependencies,
- helper.Makefile->GetBacktrace()));
- return true;
- }
- bool HandlePackageInfoMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- #ifndef CMAKE_BOOTSTRAP
- if (!cmExperimental::HasSupportEnabled(
- status.GetMakefile(), cmExperimental::Feature::ExportPackageInfo)) {
- status.SetError("does not recognize sub-command PACKAGE_INFO");
- return false;
- }
- Helper helper(status);
- // This is the PACKAGE_INFO mode.
- cmInstallCommandArguments ica(helper.DefaultComponentName, *helper.Makefile);
- ArgumentParser::NonEmpty<std::string> pkg;
- ArgumentParser::NonEmpty<std::string> appendix;
- ArgumentParser::NonEmpty<std::string> exportName;
- bool lowerCase = false;
- ArgumentParser::NonEmpty<std::string> version;
- ArgumentParser::NonEmpty<std::string> versionCompat;
- ArgumentParser::NonEmpty<std::string> versionSchema;
- ArgumentParser::NonEmpty<std::vector<std::string>> defaultTargets;
- ArgumentParser::NonEmpty<std::vector<std::string>> defaultConfigs;
- ArgumentParser::NonEmpty<std::string> cxxModulesDirectory;
- ica.Bind("PACKAGE_INFO"_s, pkg);
- ica.Bind("EXPORT"_s, exportName);
- ica.Bind("APPENDIX"_s, appendix);
- ica.Bind("LOWER_CASE_FILE"_s, lowerCase);
- ica.Bind("VERSION"_s, version);
- ica.Bind("COMPAT_VERSION"_s, versionCompat);
- ica.Bind("VERSION_SCHEMA"_s, versionSchema);
- ica.Bind("DEFAULT_TARGETS"_s, defaultTargets);
- ica.Bind("DEFAULT_CONFIGURATIONS"_s, defaultConfigs);
- // ica.Bind("CXX_MODULES_DIRECTORY"_s, cxxModulesDirectory); TODO?
- std::vector<std::string> unknownArgs;
- ica.Parse(args, &unknownArgs);
- if (!unknownArgs.empty()) {
- // Unknown argument.
- status.SetError(
- cmStrCat(args[0], " given unknown argument \"", unknownArgs[0], "\"."));
- return false;
- }
- if (!ica.Finalize()) {
- return false;
- }
- if (exportName.empty()) {
- status.SetError(cmStrCat(args[0], " missing EXPORT."));
- return false;
- }
- if (version.empty()) {
- if (!versionCompat.empty()) {
- status.SetError("COMPAT_VERSION requires VERSION.");
- return false;
- }
- if (!versionSchema.empty()) {
- status.SetError("VERSION_SCHEMA requires VERSION.");
- return false;
- }
- } else {
- if (!appendix.empty()) {
- status.SetError("APPENDIX and VERSION are mutually exclusive.");
- return false;
- }
- }
- if (!appendix.empty()) {
- if (!defaultTargets.empty()) {
- status.SetError("APPENDIX and DEFAULT_TARGETS are mutually exclusive.");
- return false;
- }
- if (!defaultConfigs.empty()) {
- status.SetError("APPENDIX and DEFAULT_CONFIGURATIONS "
- "are mutually exclusive.");
- return false;
- }
- }
- // Validate the package name.
- if (!cmGeneratorExpression::IsValidTargetName(pkg) ||
- pkg.find(':') != std::string::npos) {
- status.SetError(
- cmStrCat(args[0], " given invalid package name \"", pkg, "\"."));
- return false;
- }
- // Construct the case-normalized package name and the file name.
- std::string const pkgNameOnDisk =
- (lowerCase ? cmSystemTools::LowerCase(pkg) : pkg);
- std::string pkgFileName = [&]() -> std::string {
- if (appendix.empty()) {
- return cmStrCat(pkgNameOnDisk, ".cps");
- }
- return cmStrCat(pkgNameOnDisk, '-', appendix, ".cps");
- }();
- // Get or construct the destination path.
- std::string dest = ica.GetDestination();
- if (dest.empty()) {
- if (helper.Makefile->GetSafeDefinition("CMAKE_SYSTEM_NAME") == "Windows") {
- dest = std::string{ "cps"_s };
- } else {
- dest = cmStrCat(helper.GetLibraryDestination(nullptr), "/cps/",
- pkgNameOnDisk);
- }
- }
- cmExportSet& exportSet =
- helper.Makefile->GetGlobalGenerator()->GetExportSets()[exportName];
- cmInstallGenerator::MessageLevel message =
- cmInstallGenerator::SelectMessageLevel(helper.Makefile);
- // Create the export install generator.
- helper.Makefile->AddInstallGenerator(
- cm::make_unique<cmInstallPackageInfoExportGenerator>(
- &exportSet, dest, ica.GetPermissions(), ica.GetConfigurations(),
- ica.GetComponent(), message, ica.GetExcludeFromAll(),
- std::move(pkgFileName), std::move(pkg), std::move(version),
- std::move(versionCompat), std::move(versionSchema),
- std::move(defaultTargets), std::move(defaultConfigs),
- std::move(cxxModulesDirectory), helper.Makefile->GetBacktrace()));
- return true;
- #else
- static_cast<void>(args);
- status.SetError("PACKAGE_INFO not supported in bootstrap cmake");
- return false;
- #endif
- }
- bool HandleRuntimeDependencySetMode(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- Helper helper(status);
- auto system = helper.Makefile->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
- if (!cmRuntimeDependencyArchive::PlatformSupportsRuntimeDependencies(
- system)) {
- status.SetError(cmStrCat(
- "RUNTIME_DEPENDENCY_SET is not supported on system \"", system, '"'));
- return false;
- }
- // This is the RUNTIME_DEPENDENCY_SET mode.
- cmInstallRuntimeDependencySet* runtimeDependencySet;
- struct ArgVectors
- {
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Library;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Runtime;
- ArgumentParser::MaybeEmpty<std::vector<std::string>> Framework;
- };
- static auto const argHelper = cmArgumentParser<ArgVectors>{}
- .Bind("LIBRARY"_s, &ArgVectors::Library)
- .Bind("RUNTIME"_s, &ArgVectors::Runtime)
- .Bind("FRAMEWORK"_s, &ArgVectors::Framework);
- std::vector<std::string> genericArgVector;
- ArgVectors const argVectors = argHelper.Parse(args, &genericArgVector);
- // now parse the generic args (i.e. the ones not specialized on LIBRARY,
- // RUNTIME, FRAMEWORK etc. (see above)
- // These generic args also contain the runtime dependency set
- std::string runtimeDependencySetArg;
- std::vector<std::string> runtimeDependencyArgVector;
- cmInstallCommandArguments genericArgs(helper.DefaultComponentName,
- *helper.Makefile);
- genericArgs.Bind("RUNTIME_DEPENDENCY_SET"_s, runtimeDependencySetArg);
- genericArgs.Parse(genericArgVector, &runtimeDependencyArgVector);
- bool success = genericArgs.Finalize();
- cmInstallCommandArguments libraryArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments runtimeArgs(helper.DefaultComponentName,
- *helper.Makefile);
- cmInstallCommandArguments frameworkArgs(helper.DefaultComponentName,
- *helper.Makefile);
- // Now also parse the file(GET_RUNTIME_DEPENDENCY) args
- std::vector<std::string> unknownArgs;
- auto runtimeDependencyArgs = RuntimeDependenciesArgHelper.Parse(
- runtimeDependencyArgVector, &unknownArgs);
- // now parse the args for specific parts of the target (e.g. LIBRARY,
- // RUNTIME, FRAMEWORK etc.
- libraryArgs.Parse(argVectors.Library, &unknownArgs);
- runtimeArgs.Parse(argVectors.Runtime, &unknownArgs);
- frameworkArgs.Parse(argVectors.Framework, &unknownArgs);
- libraryArgs.SetGenericArguments(&genericArgs);
- runtimeArgs.SetGenericArguments(&genericArgs);
- frameworkArgs.SetGenericArguments(&genericArgs);
- success = success && libraryArgs.Finalize();
- success = success && runtimeArgs.Finalize();
- success = success && frameworkArgs.Finalize();
- if (!success) {
- return false;
- }
- if (!unknownArgs.empty()) {
- helper.SetError(
- cmStrCat("RUNTIME_DEPENDENCY_SET given unknown argument \"",
- unknownArgs.front(), "\"."));
- return false;
- }
- if (runtimeDependencySetArg.empty()) {
- helper.SetError(
- "RUNTIME_DEPENDENCY_SET not given a runtime dependency set.");
- return false;
- }
- runtimeDependencySet =
- helper.Makefile->GetGlobalGenerator()->GetNamedRuntimeDependencySet(
- runtimeDependencySetArg);
- bool installsRuntime = false;
- bool installsLibrary = false;
- bool installsFramework = false;
- AddInstallRuntimeDependenciesGenerator(
- helper, runtimeDependencySet, runtimeArgs, libraryArgs, frameworkArgs,
- std::move(runtimeDependencyArgs), installsRuntime, installsLibrary,
- installsFramework);
- // Tell the global generator about any installation component names
- // specified
- if (installsLibrary) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- libraryArgs.GetComponent());
- }
- if (installsRuntime) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- runtimeArgs.GetComponent());
- }
- if (installsFramework) {
- helper.Makefile->GetGlobalGenerator()->AddInstallComponent(
- frameworkArgs.GetComponent());
- }
- return true;
- }
- bool Helper::MakeFilesFullPath(const char* modeName,
- const std::vector<std::string>& relFiles,
- std::vector<std::string>& absFiles)
- {
- return this->MakeFilesFullPath(
- modeName, this->Makefile->GetCurrentSourceDirectory(), relFiles, absFiles);
- }
- bool Helper::MakeFilesFullPath(const char* modeName,
- const std::string& basePath,
- const std::vector<std::string>& relFiles,
- std::vector<std::string>& absFiles)
- {
- for (std::string const& relFile : relFiles) {
- std::string file = relFile;
- std::string::size_type gpos = cmGeneratorExpression::Find(file);
- if (gpos != 0 && !cmSystemTools::FileIsFullPath(file)) {
- file = cmStrCat(basePath, '/', relFile);
- }
- // Make sure the file is not a directory.
- if (gpos == std::string::npos && !cmSystemTools::FileIsSymlink(file) &&
- cmSystemTools::FileIsDirectory(file)) {
- this->SetError(
- cmStrCat(modeName, " given directory \"", relFile, "\" to install."));
- return false;
- }
- // Store the file for installation.
- absFiles.push_back(std::move(file));
- }
- return true;
- }
- bool Helper::CheckCMP0006() const
- {
- switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0006)) {
- case cmPolicies::WARN:
- this->Makefile->IssueMessage(
- MessageType::AUTHOR_WARNING,
- cmPolicies::GetPolicyWarning(cmPolicies::CMP0006));
- CM_FALLTHROUGH;
- case cmPolicies::OLD:
- // OLD behavior is to allow compatibility
- return true;
- case cmPolicies::NEW:
- // NEW behavior is to disallow compatibility
- break;
- }
- return false;
- }
- std::string Helper::GetDestination(const cmInstallCommandArguments* args,
- const std::string& varName,
- const std::string& guess) const
- {
- if (args && !args->GetDestination().empty()) {
- return args->GetDestination();
- }
- std::string val = this->Makefile->GetSafeDefinition(varName);
- if (!val.empty()) {
- return val;
- }
- return guess;
- }
- std::string Helper::GetRuntimeDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_BINDIR", "bin");
- }
- std::string Helper::GetSbinDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_SBINDIR", "sbin");
- }
- std::string Helper::GetArchiveDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_LIBDIR", "lib");
- }
- std::string Helper::GetLibraryDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_LIBDIR", "lib");
- }
- std::string Helper::GetCxxModulesBmiDestination(
- const cmInstallCommandArguments* args) const
- {
- if (args) {
- return args->GetDestination();
- }
- return {};
- }
- std::string Helper::GetIncludeDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_INCLUDEDIR", "include");
- }
- std::string Helper::GetSysconfDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_SYSCONFDIR", "etc");
- }
- std::string Helper::GetSharedStateDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_SHAREDSTATEDIR", "com");
- }
- std::string Helper::GetLocalStateDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_LOCALSTATEDIR", "var");
- }
- std::string Helper::GetRunStateDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_RUNSTATEDIR",
- this->GetLocalStateDestination(nullptr) +
- "/run");
- }
- std::string Helper::GetDataRootDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_DATAROOTDIR", "share");
- }
- std::string Helper::GetDataDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_DATADIR",
- this->GetDataRootDestination(nullptr));
- }
- std::string Helper::GetInfoDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_INFODIR",
- this->GetDataRootDestination(nullptr) + "/info");
- }
- std::string Helper::GetLocaleDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_LOCALEDIR",
- this->GetDataRootDestination(nullptr) +
- "/locale");
- }
- std::string Helper::GetManDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_MANDIR",
- this->GetDataRootDestination(nullptr) + "/man");
- }
- std::string Helper::GetDocDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_DOCDIR",
- this->GetDataRootDestination(nullptr) + "/doc");
- }
- std::string Helper::GetProgramExecutablesDestination(
- const cmInstallCommandArguments* args) const
- {
- return this->GetDestination(args, "CMAKE_INSTALL_LIBEXECDIR", "libexec");
- }
- std::string Helper::GetDestinationForType(
- const cmInstallCommandArguments* args, const std::string& type) const
- {
- if (args && !args->GetDestination().empty()) {
- return args->GetDestination();
- }
- if (type == "BIN") {
- return this->GetRuntimeDestination(nullptr);
- }
- if (type == "SBIN") {
- return this->GetSbinDestination(nullptr);
- }
- if (type == "SYSCONF") {
- return this->GetSysconfDestination(nullptr);
- }
- if (type == "SHAREDSTATE") {
- return this->GetSharedStateDestination(nullptr);
- }
- if (type == "LOCALSTATE") {
- return this->GetLocalStateDestination(nullptr);
- }
- if (type == "RUNSTATE") {
- return this->GetRunStateDestination(nullptr);
- }
- if (type == "LIB") {
- return this->GetLibraryDestination(nullptr);
- }
- if (type == "INCLUDE") {
- return this->GetIncludeDestination(nullptr);
- }
- if (type == "DATA") {
- return this->GetDataDestination(nullptr);
- }
- if (type == "INFO") {
- return this->GetInfoDestination(nullptr);
- }
- if (type == "LOCALE") {
- return this->GetLocaleDestination(nullptr);
- }
- if (type == "MAN") {
- return this->GetManDestination(nullptr);
- }
- if (type == "DOC") {
- return this->GetDocDestination(nullptr);
- }
- if (type == "LIBEXEC") {
- return this->GetProgramExecutablesDestination(nullptr);
- }
- return "";
- }
- } // namespace
- bool cmInstallCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- // Allow calling with no arguments so that arguments may be built up
- // using a variable that may be left empty.
- if (args.empty()) {
- return true;
- }
- // Enable the install target.
- status.GetMakefile().GetGlobalGenerator()->EnableInstallTarget();
- static cmSubcommandTable const subcommand{
- { "SCRIPT"_s, HandleScriptMode },
- { "CODE"_s, HandleScriptMode },
- { "TARGETS"_s, HandleTargetsMode },
- { "IMPORTED_RUNTIME_ARTIFACTS"_s, HandleImportedRuntimeArtifactsMode },
- { "FILES"_s, HandleFilesMode },
- { "PROGRAMS"_s, HandleFilesMode },
- { "DIRECTORY"_s, HandleDirectoryMode },
- { "EXPORT"_s, HandleExportMode },
- { "EXPORT_ANDROID_MK"_s, HandleExportAndroidMKMode },
- { "PACKAGE_INFO"_s, HandlePackageInfoMode },
- { "RUNTIME_DEPENDENCY_SET"_s, HandleRuntimeDependencySetMode },
- };
- return subcommand(args[0], args, status);
- }
|