| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412 | 
							- /* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
 
-    file Copyright.txt or https://cmake.org/licensing for details.  */
 
- #include "cmcmd.h"
 
- #include <cmext/algorithm>
 
- #include <cm3p/uv.h>
 
- #include <fcntl.h>
 
- #include "cmConsoleBuf.h"
 
- #include "cmDuration.h"
 
- #include "cmGlobalGenerator.h"
 
- #include "cmLocalGenerator.h"
 
- #include "cmMakefile.h"
 
- #include "cmQtAutoMocUic.h"
 
- #include "cmQtAutoRcc.h"
 
- #include "cmRange.h"
 
- #include "cmState.h"
 
- #include "cmStateDirectory.h"
 
- #include "cmStateSnapshot.h"
 
- #include "cmStringAlgorithms.h"
 
- #include "cmSystemTools.h"
 
- #include "cmTransformDepfile.h"
 
- #include "cmUVProcessChain.h"
 
- #include "cmUtils.hxx"
 
- #include "cmVersion.h"
 
- #include "cmake.h"
 
- #if !defined(CMAKE_BOOTSTRAP)
 
- #  include "cmDependsFortran.h" // For -E cmake_copy_f90_mod callback.
 
- #  include "cmFileTime.h"
 
- #  include "bindexplib.h"
 
- #endif
 
- #if !defined(CMAKE_BOOTSTRAP) || defined(CMAKE_BOOTSTRAP_MAKEFILES)
 
- #  include <algorithm>
 
- #  include "cmCMakePath.h"
 
- #  include "cmProcessTools.h"
 
- #endif
 
- #if !defined(CMAKE_BOOTSTRAP) && defined(_WIN32) && !defined(__CYGWIN__)
 
- #  include "cmVisualStudioWCEPlatformParser.h"
 
- #endif
 
- #include <array>
 
- #include <cstdio>
 
- #include <cstdlib>
 
- #include <cstring>
 
- #include <ctime>
 
- #include <iostream>
 
- #include <memory>
 
- #include <sstream>
 
- #include <utility>
 
- #ifdef _WIN32
 
- #  include <fcntl.h> // for _O_BINARY
 
- #  include <io.h>    // for _setmode
 
- #  include <stdio.h> // for std{out,err} and fileno
 
- #endif
 
- #include <cm/string_view>
 
- #include "cmsys/Directory.hxx"
 
- #include "cmsys/FStream.hxx"
 
- #include "cmsys/Process.h"
 
- #include "cmsys/RegularExpression.hxx"
 
- #include "cmsys/Terminal.h"
 
- int cmcmd_cmake_ninja_depends(std::vector<std::string>::const_iterator argBeg,
 
-                               std::vector<std::string>::const_iterator argEnd);
 
- int cmcmd_cmake_ninja_dyndep(std::vector<std::string>::const_iterator argBeg,
 
-                              std::vector<std::string>::const_iterator argEnd);
 
- namespace {
 
- void CMakeCommandUsage(std::string const& program)
 
- {
 
-   std::ostringstream errorStream;
 
- #ifndef CMAKE_BOOTSTRAP
 
-   /* clang-format off */
 
-   errorStream
 
-     << "cmake version " << cmVersion::GetCMakeVersion() << "\n";
 
- /* clang-format on */
 
- #else
 
-   /* clang-format off */
 
-   errorStream
 
-     << "cmake bootstrap\n";
 
- /* clang-format on */
 
- #endif
 
-   // If you add new commands, change here,
 
-   // and in cmakemain.cxx in the options table
 
-   /* clang-format off */
 
-   errorStream
 
-     << "Usage: " << program << " -E <command> [arguments...]\n"
 
-     << "Available commands: \n"
 
-     << "  capabilities              - Report capabilities built into cmake "
 
-        "in JSON format\n"
 
-     << "  cat <files>...            - concat the files and print them to the standard output\n"
 
-     << "  chdir dir cmd [args...]   - run command in a given directory\n"
 
-     << "  compare_files [--ignore-eol] file1 file2\n"
 
-     << "                              - check if file1 is same as file2\n"
 
-     << "  copy <file>... destination  - copy files to destination "
 
-        "(either file or directory)\n"
 
-     << "  copy_directory <dir>... destination   - copy content of <dir>... "
 
-        "directories to 'destination' directory\n"
 
-     << "  copy_if_different <file>... destination  - copy files if it has "
 
-        "changed\n"
 
-     << "  echo [<string>...]        - displays arguments as text\n"
 
-     << "  echo_append [<string>...] - displays arguments as text but no new "
 
-        "line\n"
 
-     << "  env [--unset=NAME]... [NAME=VALUE]... COMMAND [ARG]...\n"
 
-     << "                            - run command in a modified environment\n"
 
-     << "  environment               - display the current environment\n"
 
-     << "  make_directory <dir>...   - create parent and <dir> directories\n"
 
-     << "  md5sum <file>...          - create MD5 checksum of files\n"
 
-     << "  sha1sum <file>...         - create SHA1 checksum of files\n"
 
-     << "  sha224sum <file>...       - create SHA224 checksum of files\n"
 
-     << "  sha256sum <file>...       - create SHA256 checksum of files\n"
 
-     << "  sha384sum <file>...       - create SHA384 checksum of files\n"
 
-     << "  sha512sum <file>...       - create SHA512 checksum of files\n"
 
-     << "  remove [-f] <file>...     - remove the file(s), use -f to force "
 
-        "it (deprecated: use rm instead)\n"
 
-     << "  remove_directory <dir>... - remove directories and their contents (deprecated: use rm instead)\n"
 
-     << "  rename oldname newname    - rename a file or directory "
 
-        "(on one volume)\n"
 
-     << "  rm [-rRf] <file/dir>...    - remove files or directories, use -f to "
 
-        "force it, r or R to remove directories and their contents recursively\n"
 
-     << "  sleep <number>...         - sleep for given number of seconds\n"
 
-     << "  tar [cxt][vf][zjJ] file.tar [file/dir1 file/dir2 ...]\n"
 
-     << "                            - create or extract a tar or zip archive\n"
 
-     << "  time command [args...]    - run command and display elapsed time\n"
 
-     << "  touch <file>...           - touch a <file>.\n"
 
-     << "  touch_nocreate <file>...  - touch a <file> but do not create it.\n"
 
-     << "  create_symlink old new    - create a symbolic link new -> old\n"
 
-     << "  create_hardlink old new   - create a hard link new -> old\n"
 
-     << "  true                      - do nothing with an exit code of 0\n"
 
-     << "  false                     - do nothing with an exit code of 1\n"
 
- #if defined(_WIN32) && !defined(__CYGWIN__)
 
-     << "Available on Windows only:\n"
 
-     << "  delete_regv key           - delete registry value\n"
 
-     << "  env_vs8_wince sdkname     - displays a batch file which sets the "
 
-        "environment for the provided Windows CE SDK installed in VS2005\n"
 
-     << "  env_vs9_wince sdkname     - displays a batch file which sets the "
 
-        "environment for the provided Windows CE SDK installed in VS2008\n"
 
-     << "  write_regv key value      - write registry value\n"
 
- #endif
 
-     ;
 
-   /* clang-format on */
 
-   cmSystemTools::Error(errorStream.str());
 
- }
 
- bool cmTarFilesFrom(std::string const& file, std::vector<std::string>& files)
 
- {
 
-   if (cmSystemTools::FileIsDirectory(file)) {
 
-     std::ostringstream e;
 
-     e << "-E tar --files-from= file '" << file << "' is a directory";
 
-     cmSystemTools::Error(e.str());
 
-     return false;
 
-   }
 
-   cmsys::ifstream fin(file.c_str());
 
-   if (!fin) {
 
-     std::ostringstream e;
 
-     e << "-E tar --files-from= file '" << file << "' not found";
 
-     cmSystemTools::Error(e.str());
 
-     return false;
 
-   }
 
-   std::string line;
 
-   while (cmSystemTools::GetLineFromStream(fin, line)) {
 
-     if (line.empty()) {
 
-       continue;
 
-     }
 
-     if (cmHasLiteralPrefix(line, "--add-file=")) {
 
-       files.push_back(line.substr(11));
 
-     } else if (cmHasLiteralPrefix(line, "-")) {
 
-       std::ostringstream e;
 
-       e << "-E tar --files-from='" << file << "' file invalid line:\n"
 
-         << line << "\n";
 
-       cmSystemTools::Error(e.str());
 
-       return false;
 
-     } else {
 
-       files.push_back(line);
 
-     }
 
-   }
 
-   return true;
 
- }
 
- void cmCatFile(const std::string& fileToAppend)
 
- {
 
- #ifdef _WIN32
 
-   _setmode(fileno(stdout), _O_BINARY);
 
- #endif
 
-   cmsys::ifstream source(fileToAppend.c_str(),
 
-                          (std::ios::binary | std::ios::in));
 
-   std::cout << source.rdbuf();
 
- }
 
- bool cmRemoveDirectory(const std::string& dir, bool recursive = true)
 
- {
 
-   if (cmSystemTools::FileIsSymlink(dir)) {
 
-     if (!cmSystemTools::RemoveFile(dir)) {
 
-       std::cerr << "Error removing directory symlink \"" << dir << "\".\n";
 
-       return false;
 
-     }
 
-   } else if (!recursive) {
 
-     std::cerr << "Error removing directory \"" << dir
 
-               << "\" without recursive option.\n";
 
-     return false;
 
-   } else if (!cmSystemTools::RemoveADirectory(dir)) {
 
-     std::cerr << "Error removing directory \"" << dir << "\".\n";
 
-     return false;
 
-   }
 
-   return true;
 
- }
 
- #if !defined(CMAKE_BOOTSTRAP) || defined(CMAKE_BOOTSTRAP_MAKEFILES)
 
- class CLIncludeParser : public cmProcessTools::LineParser
 
- {
 
- public:
 
-   CLIncludeParser(cm::string_view includePrefix, cmsys::ofstream& depFile,
 
-                   std::ostream& output)
 
-     : IncludePrefix(includePrefix)
 
-     , DepFile(depFile)
 
-     , Output(output)
 
-   {
 
-   }
 
- private:
 
-   bool ProcessLine() override
 
-   {
 
-     if (cmHasPrefix(this->Line, this->IncludePrefix)) {
 
-       auto path =
 
-         cmTrimWhitespace(this->Line.c_str() + this->IncludePrefix.size());
 
-       cmSystemTools::ConvertToLongPath(path);
 
-       this->DepFile << cmCMakePath(path).GenericString() << std::endl;
 
-     } else {
 
-       this->Output << this->Line << std::endl << std::flush;
 
-     }
 
-     return true;
 
-   }
 
-   cm::string_view IncludePrefix;
 
-   cmsys::ofstream& DepFile;
 
-   std::ostream& Output;
 
- };
 
- class CLOutputLogger : public cmProcessTools::OutputLogger
 
- {
 
- public:
 
-   CLOutputLogger(std::ostream& log)
 
-     : cmProcessTools::OutputLogger(log)
 
-   {
 
-   }
 
-   bool ProcessLine() override
 
-   {
 
-     *this->Log << std::flush;
 
-     return true;
 
-   }
 
- };
 
- int CLCompileAndDependencies(const std::vector<std::string>& args)
 
- {
 
-   std::string depFile;
 
-   std::string currentBinaryDir;
 
-   std::string filterPrefix;
 
-   std::vector<std::string> command;
 
-   for (auto it = args.cbegin() + 2; it != args.cend(); it++) {
 
-     if (cmHasLiteralPrefix(*it, "--dep-file=")) {
 
-       depFile = it->substr(11);
 
-     } else if (cmHasLiteralPrefix(*it, "--working-dir=")) {
 
-       currentBinaryDir = it->substr(14);
 
-     } else if (cmHasLiteralPrefix(*it, "--filter-prefix=")) {
 
-       filterPrefix = it->substr(16);
 
-     } else if (*it == "--") {
 
-       command.insert(command.begin(), ++it, args.cend());
 
-       break;
 
-     } else {
 
-       return 1;
 
-     }
 
-   }
 
-   std::unique_ptr<cmsysProcess, void (*)(cmsysProcess*)> cp(
 
-     cmsysProcess_New(), cmsysProcess_Delete);
 
-   std::vector<const char*> argv(command.size() + 1);
 
-   std::transform(command.begin(), command.end(), argv.begin(),
 
-                  [](std::string const& s) { return s.c_str(); });
 
-   argv.back() = nullptr;
 
-   cmsysProcess_SetCommand(cp.get(), argv.data());
 
-   cmsysProcess_SetWorkingDirectory(cp.get(), currentBinaryDir.c_str());
 
-   cmsys::ofstream fout(depFile.c_str());
 
-   if (!fout) {
 
-     return 3;
 
-   }
 
-   CLIncludeParser includeParser(filterPrefix, fout, std::cout);
 
-   CLOutputLogger errLogger(std::cerr);
 
-   // Start the process.
 
-   cmProcessTools::RunProcess(cp.get(), &includeParser, &errLogger);
 
-   int status = 0;
 
-   // handle status of process
 
-   switch (cmsysProcess_GetState(cp.get())) {
 
-     case cmsysProcess_State_Exited:
 
-       status = cmsysProcess_GetExitValue(cp.get());
 
-       break;
 
-     case cmsysProcess_State_Exception:
 
-       status = 1;
 
-       break;
 
-     case cmsysProcess_State_Error:
 
-       status = 2;
 
-       break;
 
-     default:
 
-       break;
 
-   }
 
-   if (status != 0) {
 
-     // remove the dependencies file because potentially invalid
 
-     fout.close();
 
-     cmSystemTools::RemoveFile(depFile);
 
-   }
 
-   return status;
 
- }
 
- #endif
 
- int HandleIWYU(const std::string& runCmd, const std::string& /* sourceFile */,
 
-                const std::vector<std::string>& orig_cmd)
 
- {
 
-   // Construct the iwyu command line by taking what was given
 
-   // and adding all the arguments we give to the compiler.
 
-   std::vector<std::string> iwyu_cmd = cmExpandedList(runCmd, true);
 
-   cm::append(iwyu_cmd, orig_cmd.begin() + 1, orig_cmd.end());
 
-   // Run the iwyu command line.  Capture its stderr and hide its stdout.
 
-   // Ignore its return code because the tool always returns non-zero.
 
-   std::string stdErr;
 
-   int ret;
 
-   if (!cmSystemTools::RunSingleCommand(iwyu_cmd, nullptr, &stdErr, &ret,
 
-                                        nullptr, cmSystemTools::OUTPUT_NONE)) {
 
-     std::cerr << "Error running '" << iwyu_cmd[0] << "': " << stdErr << "\n";
 
-     return 1;
 
-   }
 
-   // Warn if iwyu reported anything.
 
-   if (stdErr.find("should remove these lines:") != std::string::npos ||
 
-       stdErr.find("should add these lines:") != std::string::npos) {
 
-     std::cerr << "Warning: include-what-you-use reported diagnostics:\n"
 
-               << stdErr << "\n";
 
-   }
 
-   // always return 0 we don't want to break the compile
 
-   return 0;
 
- }
 
- int HandleTidy(const std::string& runCmd, const std::string& sourceFile,
 
-                const std::vector<std::string>& orig_cmd)
 
- {
 
-   // Construct the clang-tidy command line by taking what was given
 
-   // and adding our compiler command line.  The clang-tidy tool will
 
-   // automatically skip over the compiler itself and extract the
 
-   // options.
 
-   int ret;
 
-   std::vector<std::string> tidy_cmd = cmExpandedList(runCmd, true);
 
-   tidy_cmd.push_back(sourceFile);
 
-   tidy_cmd.emplace_back("--");
 
-   cm::append(tidy_cmd, orig_cmd);
 
-   // Run the tidy command line.  Capture its stdout and hide its stderr.
 
-   std::string stdOut;
 
-   std::string stdErr;
 
-   if (!cmSystemTools::RunSingleCommand(tidy_cmd, &stdOut, &stdErr, &ret,
 
-                                        nullptr, cmSystemTools::OUTPUT_NONE)) {
 
-     std::cerr << "Error running '" << tidy_cmd[0] << "': " << stdErr << "\n";
 
-     return 1;
 
-   }
 
-   // Output the stdout from clang-tidy to stderr
 
-   std::cerr << stdOut;
 
-   // If clang-tidy exited with an error do the same.
 
-   if (ret != 0) {
 
-     std::cerr << stdErr;
 
-   }
 
-   return ret;
 
- }
 
- int HandleLWYU(const std::string& runCmd, const std::string& /* sourceFile */,
 
-                const std::vector<std::string>&)
 
- {
 
-   // Construct the ldd -r -u (link what you use lwyu) command line
 
-   // ldd -u -r lwuy target
 
-   std::vector<std::string> lwyu_cmd;
 
-   lwyu_cmd.emplace_back("ldd");
 
-   lwyu_cmd.emplace_back("-u");
 
-   lwyu_cmd.emplace_back("-r");
 
-   lwyu_cmd.push_back(runCmd);
 
-   // Run the ldd -u -r command line.
 
-   // Capture its stdout and hide its stderr.
 
-   // Ignore its return code because the tool always returns non-zero
 
-   // if there are any warnings, but we just want to warn.
 
-   std::string stdOut;
 
-   std::string stdErr;
 
-   int ret;
 
-   if (!cmSystemTools::RunSingleCommand(lwyu_cmd, &stdOut, &stdErr, &ret,
 
-                                        nullptr, cmSystemTools::OUTPUT_NONE)) {
 
-     std::cerr << "Error running '" << lwyu_cmd[0] << "': " << stdErr << "\n";
 
-     return 1;
 
-   }
 
-   // Output the stdout from ldd -r -u to stderr
 
-   // Warn if lwyu reported anything.
 
-   if (stdOut.find("Unused direct dependencies:") != std::string::npos) {
 
-     std::cerr << "Warning: " << stdOut;
 
-   }
 
-   return 0;
 
- }
 
- int HandleCppLint(const std::string& runCmd, const std::string& sourceFile,
 
-                   const std::vector<std::string>&)
 
- {
 
-   // Construct the cpplint command line.
 
-   std::vector<std::string> cpplint_cmd = cmExpandedList(runCmd, true);
 
-   cpplint_cmd.push_back(sourceFile);
 
-   // Run the cpplint command line.  Capture its output.
 
-   std::string stdOut;
 
-   int ret;
 
-   if (!cmSystemTools::RunSingleCommand(cpplint_cmd, &stdOut, &stdOut, &ret,
 
-                                        nullptr, cmSystemTools::OUTPUT_NONE)) {
 
-     std::cerr << "Error running '" << cpplint_cmd[0] << "': " << stdOut
 
-               << "\n";
 
-     return 1;
 
-   }
 
-   if (!stdOut.empty()) {
 
-     std::cerr << "Warning: cpplint diagnostics:\n";
 
-     // Output the output from cpplint to stderr
 
-     std::cerr << stdOut;
 
-   }
 
-   // always return 0 so the build can continue as cpplint returns non-zero
 
-   // for any warning
 
-   return 0;
 
- }
 
- int HandleCppCheck(const std::string& runCmd, const std::string& sourceFile,
 
-                    const std::vector<std::string>& orig_cmd)
 
- {
 
-   // Construct the cpplint command line.
 
-   std::vector<std::string> cppcheck_cmd = cmExpandedList(runCmd, true);
 
-   // extract all the -D, -U, and -I options from the compile line
 
-   for (auto const& opt : orig_cmd) {
 
-     if (opt.size() > 2) {
 
-       if ((opt[0] == '-') &&
 
-           ((opt[1] == 'D') || (opt[1] == 'I') || (opt[1] == 'U'))) {
 
-         cppcheck_cmd.push_back(opt);
 
- // convert cl / options to - options if needed
 
- #if defined(_WIN32)
 
-       } else if ((opt[0] == '/') &&
 
-                  ((opt[1] == 'D') || (opt[1] == 'I') || (opt[1] == 'U'))) {
 
-         std::string optcopy = opt;
 
-         optcopy[0] = '-';
 
-         cppcheck_cmd.push_back(optcopy);
 
- #endif
 
-       }
 
-     }
 
-   }
 
-   // add the source file
 
-   cppcheck_cmd.push_back(sourceFile);
 
-   // Run the cpplint command line.  Capture its output.
 
-   std::string stdOut;
 
-   std::string stdErr;
 
-   int ret;
 
-   if (!cmSystemTools::RunSingleCommand(cppcheck_cmd, &stdOut, &stdErr, &ret,
 
-                                        nullptr, cmSystemTools::OUTPUT_NONE)) {
 
-     std::cerr << "Error running '" << cppcheck_cmd[0] << "': " << stdOut
 
-               << "\n";
 
-     return 1;
 
-   }
 
-   std::cerr << stdOut;
 
-   // Output the output from cpplint to stderr
 
-   if (stdErr.find("(error)") != std::string::npos ||
 
-       stdErr.find("(warning)") != std::string::npos ||
 
-       stdErr.find("(style)") != std::string::npos ||
 
-       stdErr.find("(performance)") != std::string::npos ||
 
-       stdErr.find("(portability)") != std::string::npos ||
 
-       stdErr.find("(information)") != std::string::npos) {
 
-     if (ret == 0) {
 
-       std::cerr << "Warning: cppcheck reported diagnostics:\n";
 
-     } else {
 
-       std::cerr << "Error: cppcheck reported failure:\n";
 
-     }
 
-   }
 
-   std::cerr << stdErr;
 
-   return ret;
 
- }
 
- using CoCompileHandler = int (*)(const std::string&, const std::string&,
 
-                                  const std::vector<std::string>&);
 
- struct CoCompiler
 
- {
 
-   const char* Option;
 
-   CoCompileHandler Handler;
 
-   bool NoOriginalCommand;
 
- };
 
- const std::array<CoCompiler, 5> CoCompilers = {
 
-   { // Table of options and handlers.
 
-     { "--cppcheck=", HandleCppCheck, false },
 
-     { "--cpplint=", HandleCppLint, false },
 
-     { "--iwyu=", HandleIWYU, false },
 
-     { "--lwyu=", HandleLWYU, true },
 
-     { "--tidy=", HandleTidy, false } }
 
- };
 
- struct CoCompileJob
 
- {
 
-   std::string Command;
 
-   CoCompileHandler Handler;
 
- };
 
- }
 
- // called when args[0] == "__run_co_compile"
 
- int cmcmd::HandleCoCompileCommands(std::vector<std::string> const& args)
 
- {
 
-   std::vector<CoCompileJob> jobs;
 
-   std::string sourceFile;             // store --source=
 
-   std::vector<std::string> launchers; // store --launcher=
 
-   // Default is to run the original command found after -- if the option
 
-   // does not need to do that, it should be specified here, currently only
 
-   // lwyu does that.
 
-   bool runOriginalCmd = true;
 
-   std::vector<std::string> orig_cmd;
 
-   bool doing_options = true;
 
-   for (std::string const& arg : cmMakeRange(args).advance(2)) {
 
-     // if the arg is -- then the rest of the args after
 
-     // go into orig_cmd
 
-     if (arg == "--") {
 
-       doing_options = false;
 
-     } else if (doing_options) {
 
-       bool optionFound = false;
 
-       for (CoCompiler const& cc : CoCompilers) {
 
-         size_t optionLen = strlen(cc.Option);
 
-         if (arg.compare(0, optionLen, cc.Option) == 0) {
 
-           optionFound = true;
 
-           CoCompileJob job;
 
-           job.Command = arg.substr(optionLen);
 
-           job.Handler = cc.Handler;
 
-           jobs.push_back(std::move(job));
 
-           if (cc.NoOriginalCommand) {
 
-             runOriginalCmd = false;
 
-           }
 
-         }
 
-       }
 
-       if (!optionFound) {
 
-         if (cmHasLiteralPrefix(arg, "--source=")) {
 
-           sourceFile = arg.substr(9);
 
-         } else if (cmHasLiteralPrefix(arg, "--launcher=")) {
 
-           cmExpandList(arg.substr(11), launchers, true);
 
-         } else {
 
-           // if it was not a co-compiler or --source/--launcher then error
 
-           std::cerr << "__run_co_compile given unknown argument: " << arg
 
-                     << "\n";
 
-           return 1;
 
-         }
 
-       }
 
-     } else { // if not doing_options then push to orig_cmd
 
-       orig_cmd.push_back(arg);
 
-     }
 
-   }
 
-   if (jobs.empty()) {
 
-     std::cerr << "__run_co_compile missing command to run. "
 
-                  "Looking for one or more of the following:\n";
 
-     for (CoCompiler const& cc : CoCompilers) {
 
-       std::cerr << cc.Option << "\n";
 
-     }
 
-     return 1;
 
-   }
 
-   if (runOriginalCmd && orig_cmd.empty()) {
 
-     std::cerr << "__run_co_compile missing compile command after --\n";
 
-     return 1;
 
-   }
 
-   for (CoCompileJob const& job : jobs) {
 
-     // call the command handler here
 
-     int ret = job.Handler(job.Command, sourceFile, orig_cmd);
 
-     // if the command returns non-zero then return and fail.
 
-     // for commands that do not want to break the build, they should return
 
-     // 0 no matter what.
 
-     if (ret != 0) {
 
-       return ret;
 
-     }
 
-   }
 
-   // if there is no original command to run return now
 
-   if (!runOriginalCmd) {
 
-     return 0;
 
-   }
 
-   // Prepend launcher argument(s), if any
 
-   if (!launchers.empty()) {
 
-     orig_cmd.insert(orig_cmd.begin(), launchers.begin(), launchers.end());
 
-   }
 
-   // Now run the real compiler command and return its result value
 
-   int ret;
 
-   if (!cmSystemTools::RunSingleCommand(orig_cmd, nullptr, nullptr, &ret,
 
-                                        nullptr,
 
-                                        cmSystemTools::OUTPUT_PASSTHROUGH)) {
 
-     std::cerr << "Error running '" << orig_cmd[0] << "'\n";
 
-     return 1;
 
-   }
 
-   // return the return value from the original compiler command
 
-   return ret;
 
- }
 
- int cmcmd::ExecuteCMakeCommand(std::vector<std::string> const& args,
 
-                                std::unique_ptr<cmConsoleBuf> consoleBuf)
 
- {
 
-   // IF YOU ADD A NEW COMMAND, DOCUMENT IT ABOVE and in cmakemain.cxx
 
-   if (args.size() > 1) {
 
-     // Copy file
 
-     if (args[1] == "copy" && args.size() > 3) {
 
-       // If multiple source files specified,
 
-       // then destination must be directory
 
-       if ((args.size() > 4) &&
 
-           (!cmSystemTools::FileIsDirectory(args.back()))) {
 
-         std::cerr << "Error: Target (for copy command) \"" << args.back()
 
-                   << "\" is not a directory.\n";
 
-         return 1;
 
-       }
 
-       // If error occurs we want to continue copying next files.
 
-       bool return_value = false;
 
-       for (auto const& arg : cmMakeRange(args).advance(2).retreat(1)) {
 
-         if (!cmsys::SystemTools::CopyFileAlways(arg, args.back())) {
 
-           std::cerr << "Error copying file \"" << arg << "\" to \""
 
-                     << args.back() << "\".\n";
 
-           return_value = true;
 
-         }
 
-       }
 
-       return return_value;
 
-     }
 
-     // Copy file if different.
 
-     if (args[1] == "copy_if_different" && args.size() > 3) {
 
-       // If multiple source files specified,
 
-       // then destination must be directory
 
-       if ((args.size() > 4) &&
 
-           (!cmSystemTools::FileIsDirectory(args.back()))) {
 
-         std::cerr << "Error: Target (for copy_if_different command) \""
 
-                   << args.back() << "\" is not a directory.\n";
 
-         return 1;
 
-       }
 
-       // If error occurs we want to continue copying next files.
 
-       bool return_value = false;
 
-       for (auto const& arg : cmMakeRange(args).advance(2).retreat(1)) {
 
-         if (!cmSystemTools::CopyFileIfDifferent(arg, args.back())) {
 
-           std::cerr << "Error copying file (if different) from \"" << arg
 
-                     << "\" to \"" << args.back() << "\".\n";
 
-           return_value = true;
 
-         }
 
-       }
 
-       return return_value;
 
-     }
 
-     // Copy directory content
 
-     if (args[1] == "copy_directory" && args.size() > 3) {
 
-       // If error occurs we want to continue copying next files.
 
-       bool return_value = false;
 
-       for (auto const& arg : cmMakeRange(args).advance(2).retreat(1)) {
 
-         if (!cmSystemTools::CopyADirectory(arg, args.back())) {
 
-           std::cerr << "Error copying directory from \"" << arg << "\" to \""
 
-                     << args.back() << "\".\n";
 
-           return_value = true;
 
-         }
 
-       }
 
-       return return_value;
 
-     }
 
-     // Rename a file or directory
 
-     if (args[1] == "rename" && args.size() == 4) {
 
-       if (!cmSystemTools::RenameFile(args[2], args[3])) {
 
-         std::string e = cmSystemTools::GetLastSystemError();
 
-         std::cerr << "Error renaming from \"" << args[2] << "\" to \""
 
-                   << args[3] << "\": " << e << "\n";
 
-         return 1;
 
-       }
 
-       return 0;
 
-     }
 
-     // Compare files
 
-     if (args[1] == "compare_files" && (args.size() == 4 || args.size() == 5)) {
 
-       bool filesDiffer;
 
-       if (args.size() == 4) {
 
-         filesDiffer = cmSystemTools::FilesDiffer(args[2], args[3]);
 
-       } else if (args[2] == "--ignore-eol") {
 
-         filesDiffer = cmsys::SystemTools::TextFilesDiffer(args[3], args[4]);
 
-       } else {
 
-         CMakeCommandUsage(args[0]);
 
-         return 2;
 
-       }
 
-       if (filesDiffer) {
 
-         return 1;
 
-       }
 
-       return 0;
 
-     }
 
- #if !defined(CMAKE_BOOTSTRAP)
 
-     if (args[1] == "__create_def") {
 
-       if (args.size() < 4) {
 
-         std::cerr << "__create_def Usage: -E __create_def outfile.def "
 
-                      "objlistfile [--nm=nm-path]\n";
 
-         return 1;
 
-       }
 
-       cmsys::ifstream fin(args[3].c_str(), std::ios::in | std::ios::binary);
 
-       if (!fin) {
 
-         std::cerr << "could not open object list file: " << args[3] << "\n";
 
-         return 1;
 
-       }
 
-       std::vector<std::string> files;
 
-       {
 
-         std::string file;
 
-         cmFileTime outTime;
 
-         bool outValid = outTime.Load(args[2]);
 
-         while (cmSystemTools::GetLineFromStream(fin, file)) {
 
-           files.push_back(file);
 
-           if (outValid) {
 
-             cmFileTime inTime;
 
-             outValid = inTime.Load(file) && inTime.Older(outTime);
 
-           }
 
-         }
 
-         if (outValid) {
 
-           // The def file already exists and all input files are older than
 
-           // the existing def file.
 
-           return 0;
 
-         }
 
-       }
 
-       FILE* fout = cmsys::SystemTools::Fopen(args[2], "w+");
 
-       if (!fout) {
 
-         std::cerr << "could not open output .def file: " << args[2] << "\n";
 
-         return 1;
 
-       }
 
-       bindexplib deffile;
 
-       if (args.size() >= 5) {
 
-         std::string const& a = args[4];
 
-         if (cmHasLiteralPrefix(a, "--nm=")) {
 
-           deffile.SetNmPath(a.substr(5));
 
-         } else {
 
-           std::cerr << "unknown argument: " << a << "\n";
 
-         }
 
-       }
 
-       for (std::string const& file : files) {
 
-         std::string const& ext = cmSystemTools::GetFilenameLastExtension(file);
 
-         if (cmSystemTools::LowerCase(ext) == ".def") {
 
-           if (!deffile.AddDefinitionFile(file.c_str())) {
 
-             return 1;
 
-           }
 
-         } else {
 
-           if (!deffile.AddObjectFile(file.c_str())) {
 
-             return 1;
 
-           }
 
-         }
 
-       }
 
-       deffile.WriteFile(fout);
 
-       fclose(fout);
 
-       return 0;
 
-     }
 
- #endif
 
-     if (args[1] == "__run_co_compile") {
 
-       return cmcmd::HandleCoCompileCommands(args);
 
-     }
 
-     // Echo string
 
-     if (args[1] == "echo") {
 
-       std::cout << cmJoin(cmMakeRange(args).advance(2), " ") << std::endl;
 
-       return 0;
 
-     }
 
-     // Echo string no new line
 
-     if (args[1] == "echo_append") {
 
-       std::cout << cmJoin(cmMakeRange(args).advance(2), " ");
 
-       return 0;
 
-     }
 
-     if (args[1] == "env") {
 
-       auto ai = args.cbegin() + 2;
 
-       auto ae = args.cend();
 
-       for (; ai != ae; ++ai) {
 
-         std::string const& a = *ai;
 
-         if (cmHasLiteralPrefix(a, "--unset=")) {
 
-           // Unset environment variable.
 
-           cmSystemTools::UnPutEnv(a.substr(8));
 
-         } else if (!a.empty() && a[0] == '-') {
 
-           // Environment variable and command names cannot start in '-',
 
-           // so this must be an unknown option.
 
-           std::cerr << "cmake -E env: unknown option '" << a << '\''
 
-                     << std::endl;
 
-           return 1;
 
-         } else if (a.find('=') != std::string::npos) {
 
-           // Set environment variable.
 
-           cmSystemTools::PutEnv(a);
 
-         } else {
 
-           // This is the beginning of the command.
 
-           break;
 
-         }
 
-       }
 
-       if (ai == ae) {
 
-         std::cerr << "cmake -E env: no command given" << std::endl;
 
-         return 1;
 
-       }
 
-       // Execute command from remaining arguments.
 
-       std::vector<std::string> cmd(ai, ae);
 
-       int retval;
 
-       if (cmSystemTools::RunSingleCommand(cmd, nullptr, nullptr, &retval,
 
-                                           nullptr,
 
-                                           cmSystemTools::OUTPUT_PASSTHROUGH)) {
 
-         return retval;
 
-       }
 
-       return 1;
 
-     }
 
- #if !defined(CMAKE_BOOTSTRAP)
 
-     if (args[1] == "environment") {
 
-       for (auto const& env : cmSystemTools::GetEnvironmentVariables()) {
 
-         std::cout << env << std::endl;
 
-       }
 
-       return 0;
 
-     }
 
- #endif
 
-     if (args[1] == "make_directory" && args.size() > 2) {
 
-       // If an error occurs, we want to continue making directories.
 
-       bool return_value = false;
 
-       for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-         if (!cmSystemTools::MakeDirectory(arg)) {
 
-           std::cerr << "Error creating directory \"" << arg << "\".\n";
 
-           return_value = true;
 
-         }
 
-       }
 
-       return return_value;
 
-     }
 
-     if (args[1] == "remove_directory" && args.size() > 2) {
 
-       // If an error occurs, we want to continue removing directories.
 
-       bool return_value = false;
 
-       for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-         if (cmSystemTools::FileIsDirectory(arg)) {
 
-           if (!cmRemoveDirectory(arg)) {
 
-             return_value = true;
 
-           }
 
-         }
 
-       }
 
-       return return_value;
 
-     }
 
-     // Remove file
 
-     if (args[1] == "remove" && args.size() > 2) {
 
-       bool force = false;
 
-       for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-         if (arg == "\\-f" || arg == "-f") {
 
-           force = true;
 
-         } else {
 
-           // Complain if the file could not be removed, still exists,
 
-           // and the -f option was not given.
 
-           if (!cmSystemTools::RemoveFile(arg) && !force &&
 
-               cmSystemTools::FileExists(arg)) {
 
-             return 1;
 
-           }
 
-         }
 
-       }
 
-       return 0;
 
-     }
 
-     // Remove directories or files with rm
 
-     if (args[1] == "rm" && args.size() > 2) {
 
-       // If an error occurs, we want to continue removing the remaining
 
-       // files/directories.
 
-       int return_value = 0;
 
-       bool force = false;
 
-       bool recursive = false;
 
-       bool doing_options = true;
 
-       bool at_least_one_file = false;
 
-       for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-         if (doing_options && cmHasLiteralPrefix(arg, "-")) {
 
-           if (arg == "--") {
 
-             doing_options = false;
 
-           }
 
-           if (arg.find('f') != std::string::npos) {
 
-             force = true;
 
-           }
 
-           if (arg.find_first_of("rR") != std::string::npos) {
 
-             recursive = true;
 
-           }
 
-           if (arg.find_first_not_of("-frR") != std::string::npos) {
 
-             cmSystemTools::Error("Unknown -E rm argument: " + arg);
 
-             return 1;
 
-           }
 
-         } else {
 
-           if (arg.empty()) {
 
-             continue;
 
-           }
 
-           at_least_one_file = true;
 
-           // Complain if the -f option was not given and
 
-           // either file does not exist or
 
-           // file could not be removed and still exists
 
-           bool file_exists_or_forced_remove = cmSystemTools::FileExists(arg) ||
 
-             cmSystemTools::FileIsSymlink(arg) || force;
 
-           if (cmSystemTools::FileIsDirectory(arg)) {
 
-             if (!cmRemoveDirectory(arg, recursive)) {
 
-               return_value = 1;
 
-             }
 
-           } else if ((!file_exists_or_forced_remove) ||
 
-                      (!cmSystemTools::RemoveFile(arg) &&
 
-                       cmSystemTools::FileExists(arg))) {
 
-             if (!file_exists_or_forced_remove) {
 
-               cmSystemTools::Error(
 
-                 "File to remove does not exist and force is not set: " + arg);
 
-             } else {
 
-               cmSystemTools::Error("File can't be removed and still exist: " +
 
-                                    arg);
 
-             }
 
-             return_value = 1;
 
-           }
 
-         }
 
-       }
 
-       if (!at_least_one_file) {
 
-         cmSystemTools::Error("Missing file/directory to remove");
 
-         return 1;
 
-       }
 
-       return return_value;
 
-     }
 
-     // Touch file
 
-     if (args[1] == "touch" && args.size() > 2) {
 
-       for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-         if (!cmSystemTools::Touch(arg, true)) {
 
-           std::cerr << "cmake -E touch: failed to update \"";
 
-           std::cerr << arg << "\".\n";
 
-           return 1;
 
-         }
 
-       }
 
-       return 0;
 
-     }
 
-     // Touch file
 
-     if (args[1] == "touch_nocreate" && args.size() > 2) {
 
-       for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-         if (!cmSystemTools::Touch(arg, false)) {
 
-           std::cerr << "cmake -E touch_nocreate: failed to update \"";
 
-           std::cerr << arg << "\".\n";
 
-           return 1;
 
-         }
 
-       }
 
-       return 0;
 
-     }
 
-     // capabilities
 
-     if (args[1] == "capabilities") {
 
-       if (args.size() > 2) {
 
-         std::cerr << "-E capabilities accepts no additional arguments\n";
 
-         return 1;
 
-       }
 
-       cmake cm(cmake::RoleInternal, cmState::Unknown);
 
-       std::cout << cm.ReportCapabilities();
 
-       return 0;
 
-     }
 
-     // Sleep command
 
-     if (args[1] == "sleep" && args.size() > 2) {
 
-       double total = 0;
 
-       for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-         double num = 0.0;
 
-         char unit;
 
-         char extra;
 
-         int n = sscanf(arg.c_str(), "%lg%c%c", &num, &unit, &extra);
 
-         if ((n == 1 || (n == 2 && unit == 's')) && num >= 0) {
 
-           total += num;
 
-         } else {
 
-           std::cerr << "Unknown sleep time format \"" << arg << "\".\n";
 
-           return 1;
 
-         }
 
-       }
 
-       if (total > 0) {
 
-         cmSystemTools::Delay(static_cast<unsigned int>(total * 1000));
 
-       }
 
-       return 0;
 
-     }
 
-     // Clock command
 
-     if (args[1] == "time" && args.size() > 2) {
 
-       std::vector<std::string> command(args.begin() + 2, args.end());
 
-       clock_t clock_start;
 
-       clock_t clock_finish;
 
-       time_t time_start;
 
-       time_t time_finish;
 
-       time(&time_start);
 
-       clock_start = clock();
 
-       int ret = 0;
 
-       cmSystemTools::RunSingleCommand(command, nullptr, nullptr, &ret);
 
-       clock_finish = clock();
 
-       time(&time_finish);
 
-       double clocks_per_sec = static_cast<double>(CLOCKS_PER_SEC);
 
-       std::cout << "Elapsed time: "
 
-                 << static_cast<long>(time_finish - time_start) << " s. (time)"
 
-                 << ", "
 
-                 << static_cast<double>(clock_finish - clock_start) /
 
-           clocks_per_sec
 
-                 << " s. (clock)"
 
-                 << "\n";
 
-       return ret;
 
-     }
 
-     // Command to calculate the md5sum of a file
 
-     if (args[1] == "md5sum" && args.size() >= 3) {
 
-       return HashSumFile(args, cmCryptoHash::AlgoMD5);
 
-     }
 
-     // Command to calculate the sha1sum of a file
 
-     if (args[1] == "sha1sum" && args.size() >= 3) {
 
-       return HashSumFile(args, cmCryptoHash::AlgoSHA1);
 
-     }
 
-     if (args[1] == "sha224sum" && args.size() >= 3) {
 
-       return HashSumFile(args, cmCryptoHash::AlgoSHA224);
 
-     }
 
-     if (args[1] == "sha256sum" && args.size() >= 3) {
 
-       return HashSumFile(args, cmCryptoHash::AlgoSHA256);
 
-     }
 
-     if (args[1] == "sha384sum" && args.size() >= 3) {
 
-       return HashSumFile(args, cmCryptoHash::AlgoSHA384);
 
-     }
 
-     if (args[1] == "sha512sum" && args.size() >= 3) {
 
-       return HashSumFile(args, cmCryptoHash::AlgoSHA512);
 
-     }
 
-     // Command to concat files into one
 
-     if (args[1] == "cat" && args.size() >= 3) {
 
-       int return_value = 0;
 
-       for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-         if (cmHasLiteralPrefix(arg, "-")) {
 
-           if (arg != "--") {
 
-             cmSystemTools::Error(arg + ": option not handled");
 
-             return_value = 1;
 
-           }
 
-         } else if (!cmSystemTools::TestFileAccess(arg,
 
-                                                   cmsys::TEST_FILE_READ) &&
 
-                    cmSystemTools::TestFileAccess(arg, cmsys::TEST_FILE_OK)) {
 
-           cmSystemTools::Error(arg + ": permission denied (ignoring)");
 
-           return_value = 1;
 
-         } else if (cmSystemTools::FileIsDirectory(arg)) {
 
-           cmSystemTools::Error(arg + ": is a directory (ignoring)");
 
-           return_value = 1;
 
-         } else if (!cmSystemTools::FileExists(arg)) {
 
-           cmSystemTools::Error(arg + ": no such file or directory (ignoring)");
 
-           return_value = 1;
 
-         } else {
 
-           // Destroy console buffers to drop cout/cerr encoding transform.
 
-           consoleBuf.reset();
 
-           cmCatFile(arg);
 
-         }
 
-       }
 
-       return return_value;
 
-     }
 
-     // Command to change directory and run a program.
 
-     if (args[1] == "chdir" && args.size() >= 4) {
 
-       std::string const& directory = args[2];
 
-       if (!cmSystemTools::FileExists(directory)) {
 
-         cmSystemTools::Error("Directory does not exist for chdir command: " +
 
-                              directory);
 
-         return 1;
 
-       }
 
-       std::string command =
 
-         cmWrap('"', cmMakeRange(args).advance(3), '"', " ");
 
-       int retval = 0;
 
-       if (cmSystemTools::RunSingleCommand(
 
-             command, nullptr, nullptr, &retval, directory.c_str(),
 
-             cmSystemTools::OUTPUT_PASSTHROUGH, cmDuration::zero())) {
 
-         return retval;
 
-       }
 
-       return 1;
 
-     }
 
-     // Command to start progress for a build
 
-     if (args[1] == "cmake_progress_start" && args.size() == 4) {
 
-       // basically remove the directory
 
-       std::string dirName = cmStrCat(args[2], "/Progress");
 
-       cmSystemTools::RemoveADirectory(dirName);
 
-       // is the last argument a filename that exists?
 
-       FILE* countFile = cmsys::SystemTools::Fopen(args[3], "r");
 
-       int count;
 
-       if (countFile) {
 
-         if (1 != fscanf(countFile, "%i", &count)) {
 
-           cmSystemTools::Message("Could not read from count file.");
 
-         }
 
-         fclose(countFile);
 
-       } else {
 
-         count = atoi(args[3].c_str());
 
-       }
 
-       if (count) {
 
-         cmSystemTools::MakeDirectory(dirName);
 
-         // write the count into the directory
 
-         std::string fName = cmStrCat(dirName, "/count.txt");
 
-         FILE* progFile = cmsys::SystemTools::Fopen(fName, "w");
 
-         if (progFile) {
 
-           fprintf(progFile, "%i\n", count);
 
-           fclose(progFile);
 
-         }
 
-       }
 
-       return 0;
 
-     }
 
-     // Command to report progress for a build
 
-     if (args[1] == "cmake_progress_report" && args.size() >= 3) {
 
-       // This has been superseded by cmake_echo_color --progress-*
 
-       // options.  We leave it here to avoid errors if somehow this
 
-       // is invoked by an existing makefile without regenerating.
 
-       return 0;
 
-     }
 
-     // Command to create a symbolic link.  Fails on platforms not
 
-     // supporting them.
 
-     if (args[1] == "create_symlink" && args.size() == 4) {
 
-       std::string const& destinationFileName = args[3];
 
-       if ((cmSystemTools::FileExists(destinationFileName) ||
 
-            cmSystemTools::FileIsSymlink(destinationFileName)) &&
 
-           !cmSystemTools::RemoveFile(destinationFileName)) {
 
-         std::string emsg = cmSystemTools::GetLastSystemError();
 
-         std::cerr << "failed to create symbolic link '" << destinationFileName
 
-                   << "' because existing path cannot be removed: " << emsg
 
-                   << "\n";
 
-         return 1;
 
-       }
 
-       if (!cmSystemTools::CreateSymlink(args[2], destinationFileName)) {
 
-         return 1;
 
-       }
 
-       return 0;
 
-     }
 
-     // Command to create a hard link.  Fails on platforms not
 
-     // supporting them.
 
-     if (args[1] == "create_hardlink" && args.size() == 4) {
 
-       std::string const& sourceFileName = args[2];
 
-       std::string const& destinationFileName = args[3];
 
-       if (!cmSystemTools::FileExists(sourceFileName)) {
 
-         std::cerr << "failed to create hard link because source path '"
 
-                   << sourceFileName << "' does not exist \n";
 
-         return 1;
 
-       }
 
-       if ((cmSystemTools::FileExists(destinationFileName) ||
 
-            cmSystemTools::FileIsSymlink(destinationFileName)) &&
 
-           !cmSystemTools::RemoveFile(destinationFileName)) {
 
-         std::string emsg = cmSystemTools::GetLastSystemError();
 
-         std::cerr << "failed to create hard link '" << destinationFileName
 
-                   << "' because existing path cannot be removed: " << emsg
 
-                   << "\n";
 
-         return 1;
 
-       }
 
-       if (!cmSystemTools::CreateLink(sourceFileName, destinationFileName)) {
 
-         return 1;
 
-       }
 
-       return 0;
 
-     }
 
-     // Command to do nothing with an exit code of 0.
 
-     if (args[1] == "true") {
 
-       return 0;
 
-     }
 
-     // Command to do nothing with an exit code of 1.
 
-     if (args[1] == "false") {
 
-       return 1;
 
-     }
 
-     // Internal CMake shared library support.
 
-     if (args[1] == "cmake_symlink_library" && args.size() == 5) {
 
-       return cmcmd::SymlinkLibrary(args);
 
-     }
 
-     // Internal CMake versioned executable support.
 
-     if (args[1] == "cmake_symlink_executable" && args.size() == 4) {
 
-       return cmcmd::SymlinkExecutable(args);
 
-     }
 
-     // Internal CMake dependency scanning support.
 
-     if (args[1] == "cmake_depends" && args.size() >= 6) {
 
-       const bool verbose = isCMakeVerbose();
 
-       // Create a cmake object instance to process dependencies.
 
-       // All we need is the `set` command.
 
-       cmake cm(cmake::RoleScript, cmState::Unknown);
 
-       std::string gen;
 
-       std::string homeDir;
 
-       std::string startDir;
 
-       std::string homeOutDir;
 
-       std::string startOutDir;
 
-       std::string depInfo;
 
-       bool color = false;
 
-       if (args.size() >= 8) {
 
-         // Full signature:
 
-         //
 
-         //   -E cmake_depends <generator>
 
-         //                    <home-src-dir> <start-src-dir>
 
-         //                    <home-out-dir> <start-out-dir>
 
-         //                    <dep-info> [--color=$(COLOR)]
 
-         //
 
-         // All paths are provided.
 
-         gen = args[2];
 
-         homeDir = args[3];
 
-         startDir = args[4];
 
-         homeOutDir = args[5];
 
-         startOutDir = args[6];
 
-         depInfo = args[7];
 
-         if (args.size() >= 9 && cmHasLiteralPrefix(args[8], "--color=")) {
 
-           // Enable or disable color based on the switch value.
 
-           color = (args[8].size() == 8 || cmIsOn(args[8].substr(8)));
 
-         }
 
-       } else {
 
-         // Support older signature for existing makefiles:
 
-         //
 
-         //   -E cmake_depends <generator>
 
-         //                    <home-out-dir> <start-out-dir>
 
-         //                    <dep-info>
 
-         //
 
-         // Just pretend the source directories are the same as the
 
-         // binary directories so at least scanning will work.
 
-         gen = args[2];
 
-         homeDir = args[3];
 
-         startDir = args[4];
 
-         homeOutDir = args[3];
 
-         startOutDir = args[3];
 
-         depInfo = args[5];
 
-       }
 
-       // Create a local generator configured for the directory in
 
-       // which dependencies will be scanned.
 
-       homeDir = cmSystemTools::CollapseFullPath(homeDir);
 
-       startDir = cmSystemTools::CollapseFullPath(startDir);
 
-       homeOutDir = cmSystemTools::CollapseFullPath(homeOutDir);
 
-       startOutDir = cmSystemTools::CollapseFullPath(startOutDir);
 
-       cm.SetHomeDirectory(homeDir);
 
-       cm.SetHomeOutputDirectory(homeOutDir);
 
-       cm.GetCurrentSnapshot().SetDefaultDefinitions();
 
-       if (auto ggd = cm.CreateGlobalGenerator(gen)) {
 
-         cm.SetGlobalGenerator(std::move(ggd));
 
-         cmStateSnapshot snapshot = cm.GetCurrentSnapshot();
 
-         snapshot.GetDirectory().SetCurrentBinary(startOutDir);
 
-         snapshot.GetDirectory().SetCurrentSource(startDir);
 
-         snapshot.GetDirectory().SetRelativePathTopSource(homeDir.c_str());
 
-         snapshot.GetDirectory().SetRelativePathTopBinary(homeOutDir.c_str());
 
-         cmMakefile mf(cm.GetGlobalGenerator(), snapshot);
 
-         auto lgd = cm.GetGlobalGenerator()->CreateLocalGenerator(&mf);
 
-         // Actually scan dependencies.
 
-         return lgd->UpdateDependencies(depInfo, verbose, color) ? 0 : 2;
 
-       }
 
-       return 1;
 
-     }
 
- #if !defined(CMAKE_BOOTSTRAP) || defined(CMAKE_BOOTSTRAP_MAKEFILES)
 
-     // Internal CMake compiler dependencies filtering
 
-     if (args[1] == "cmake_cl_compile_depends") {
 
-       return CLCompileAndDependencies(args);
 
-     }
 
- #endif
 
-     // Internal CMake link script support.
 
-     if (args[1] == "cmake_link_script" && args.size() >= 3) {
 
-       return cmcmd::ExecuteLinkScript(args);
 
-     }
 
- #if !defined(CMAKE_BOOTSTRAP)
 
-     // Internal CMake ninja dependency scanning support.
 
-     if (args[1] == "cmake_ninja_depends") {
 
-       return cmcmd_cmake_ninja_depends(args.begin() + 2, args.end());
 
-     }
 
-     // Internal CMake ninja dyndep support.
 
-     if (args[1] == "cmake_ninja_dyndep") {
 
-       return cmcmd_cmake_ninja_dyndep(args.begin() + 2, args.end());
 
-     }
 
- #endif
 
-     // Internal CMake unimplemented feature notification.
 
-     if (args[1] == "cmake_unimplemented_variable") {
 
-       std::cerr << "Feature not implemented for this platform.";
 
-       if (args.size() == 3) {
 
-         std::cerr << "  Variable " << args[2] << " is not set.";
 
-       }
 
-       std::cerr << std::endl;
 
-       return 1;
 
-     }
 
-     if (args[1] == "vs_link_exe") {
 
-       return cmcmd::VisualStudioLink(args, 1);
 
-     }
 
-     if (args[1] == "vs_link_dll") {
 
-       return cmcmd::VisualStudioLink(args, 2);
 
-     }
 
-     if (args[1] == "cmake_llvm_rc") {
 
-       return cmcmd::RunLLVMRC(args);
 
-     }
 
-     // Internal CMake color makefile support.
 
-     if (args[1] == "cmake_echo_color") {
 
-       return cmcmd::ExecuteEchoColor(args);
 
-     }
 
- #ifndef CMAKE_BOOTSTRAP
 
-     if ((args[1] == "cmake_autogen") && (args.size() >= 4)) {
 
-       cm::string_view const infoFile = args[2];
 
-       cm::string_view const config = args[3];
 
-       return cmQtAutoMocUic(infoFile, config) ? 0 : 1;
 
-     }
 
-     if ((args[1] == "cmake_autorcc") && (args.size() >= 3)) {
 
-       cm::string_view const infoFile = args[2];
 
-       cm::string_view const config =
 
-         (args.size() > 3) ? cm::string_view(args[3]) : cm::string_view();
 
-       return cmQtAutoRcc(infoFile, config) ? 0 : 1;
 
-     }
 
- #endif
 
-     // Tar files
 
-     if (args[1] == "tar" && args.size() > 3) {
 
-       const char* knownFormats[] = { "7zip", "gnutar", "pax", "paxr", "zip" };
 
-       std::string const& flags = args[2];
 
-       std::string const& outFile = args[3];
 
-       std::vector<std::string> files;
 
-       std::string mtime;
 
-       std::string format;
 
-       cmSystemTools::cmTarCompression compress =
 
-         cmSystemTools::TarCompressNone;
 
-       int nCompress = 0;
 
-       bool doing_options = true;
 
-       for (auto const& arg : cmMakeRange(args).advance(4)) {
 
-         if (doing_options && cmHasLiteralPrefix(arg, "--")) {
 
-           if (arg == "--") {
 
-             doing_options = false;
 
-           } else if (arg == "--zstd") {
 
-             compress = cmSystemTools::TarCompressZstd;
 
-             ++nCompress;
 
-           } else if (cmHasLiteralPrefix(arg, "--mtime=")) {
 
-             mtime = arg.substr(8);
 
-           } else if (cmHasLiteralPrefix(arg, "--files-from=")) {
 
-             std::string const& files_from = arg.substr(13);
 
-             if (!cmTarFilesFrom(files_from, files)) {
 
-               return 1;
 
-             }
 
-           } else if (cmHasLiteralPrefix(arg, "--format=")) {
 
-             format = arg.substr(9);
 
-             if (!cm::contains(knownFormats, format)) {
 
-               cmSystemTools::Error("Unknown -E tar --format= argument: " +
 
-                                    format);
 
-               return 1;
 
-             }
 
-           } else {
 
-             cmSystemTools::Error("Unknown option to -E tar: " + arg);
 
-             return 1;
 
-           }
 
-         } else {
 
-           files.push_back(arg);
 
-         }
 
-       }
 
-       cmSystemTools::cmTarAction action = cmSystemTools::TarActionNone;
 
-       bool verbose = false;
 
-       for (auto flag : flags) {
 
-         switch (flag) {
 
-           case '-':
 
-           case 'f': {
 
-             // Keep for backward compatibility. Ignored
 
-           } break;
 
-           case 'j': {
 
-             compress = cmSystemTools::TarCompressBZip2;
 
-             ++nCompress;
 
-           } break;
 
-           case 'J': {
 
-             compress = cmSystemTools::TarCompressXZ;
 
-             ++nCompress;
 
-           } break;
 
-           case 'z': {
 
-             compress = cmSystemTools::TarCompressGZip;
 
-             ++nCompress;
 
-           } break;
 
-           case 'v': {
 
-             verbose = true;
 
-           } break;
 
-           case 't': {
 
-             action = cmSystemTools::TarActionList;
 
-           } break;
 
-           case 'c': {
 
-             action = cmSystemTools::TarActionCreate;
 
-           } break;
 
-           case 'x': {
 
-             action = cmSystemTools::TarActionExtract;
 
-           } break;
 
-           default: {
 
-             cmSystemTools::Message(
 
-               std::string("tar: Unknown argument: ") + flag, "Warning");
 
-           }
 
-         }
 
-       }
 
-       if ((format == "7zip" || format == "zip") && nCompress > 0) {
 
-         cmSystemTools::Error("Can not use compression flags with format: " +
 
-                              format);
 
-         return 1;
 
-       }
 
-       if (nCompress > 1) {
 
-         cmSystemTools::Error("Can only compress a tar file one way; "
 
-                              "at most one flag of z, j, or J may be used");
 
-         return 1;
 
-       }
 
-       if (action == cmSystemTools::TarActionList) {
 
-         if (!cmSystemTools::ListTar(outFile, files, verbose)) {
 
-           cmSystemTools::Error("Problem listing tar: " + outFile);
 
-           return 1;
 
-         }
 
-       } else if (action == cmSystemTools::TarActionCreate) {
 
-         if (files.empty()) {
 
-           cmSystemTools::Message("tar: No files or directories specified",
 
-                                  "Warning");
 
-         }
 
-         if (!cmSystemTools::CreateTar(outFile, files, compress, verbose, mtime,
 
-                                       format)) {
 
-           cmSystemTools::Error("Problem creating tar: " + outFile);
 
-           return 1;
 
-         }
 
-       } else if (action == cmSystemTools::TarActionExtract) {
 
-         if (!cmSystemTools::ExtractTar(outFile, files, verbose)) {
 
-           cmSystemTools::Error("Problem extracting tar: " + outFile);
 
-           return 1;
 
-         }
 
- #ifdef WIN32
 
-         // OK, on windows 7 after we untar some files,
 
-         // sometimes we can not rename the directory after
 
-         // the untar is done. This breaks the external project
 
-         // untar and rename code.  So, by default we will wait
 
-         // 1/10th of a second after the untar.  If CMAKE_UNTAR_DELAY
 
-         // is set in the env, its value will be used instead of 100.
 
-         int delay = 100;
 
-         std::string delayVar;
 
-         if (cmSystemTools::GetEnv("CMAKE_UNTAR_DELAY", delayVar)) {
 
-           delay = atoi(delayVar.c_str());
 
-         }
 
-         if (delay) {
 
-           cmSystemTools::Delay(delay);
 
-         }
 
- #endif
 
-       } else {
 
-         cmSystemTools::Error("tar: No action specified. Please choose: 't' "
 
-                              "(list), 'c' (create) or 'x' (extract)");
 
-         return 1;
 
-       }
 
-       return 0;
 
-     }
 
-     if (args[1] == "server") {
 
-       cmSystemTools::Error(
 
-         "CMake server mode has been removed in favor of the file-api.");
 
-       return 1;
 
-     }
 
- #if !defined(CMAKE_BOOTSTRAP)
 
-     // Internal CMake Fortran module support.
 
-     if (args[1] == "cmake_copy_f90_mod" && args.size() >= 4) {
 
-       return cmDependsFortran::CopyModule(args) ? 0 : 1;
 
-     }
 
- #endif
 
- #if defined(_WIN32) && !defined(__CYGWIN__)
 
-     // Write registry value
 
-     if (args[1] == "write_regv" && args.size() > 3) {
 
-       return cmSystemTools::WriteRegistryValue(args[2], args[3]) ? 0 : 1;
 
-     }
 
-     // Delete registry value
 
-     if (args[1] == "delete_regv" && args.size() > 2) {
 
-       return cmSystemTools::DeleteRegistryValue(args[2]) ? 0 : 1;
 
-     }
 
-     // Remove file
 
-     if (args[1] == "comspec" && args.size() > 2) {
 
-       std::cerr << "Win9x helper \"cmake -E comspec\" no longer supported\n";
 
-       return 1;
 
-     }
 
-     if (args[1] == "env_vs8_wince" && args.size() == 3) {
 
-       return cmcmd::WindowsCEEnvironment("8.0", args[2]);
 
-     }
 
-     if (args[1] == "env_vs9_wince" && args.size() == 3) {
 
-       return cmcmd::WindowsCEEnvironment("9.0", args[2]);
 
-     }
 
- #endif
 
-     // Internal depfile transformation
 
-     if (args[1] == "cmake_transform_depfile" && args.size() == 10) {
 
-       auto format = cmDepfileFormat::GccDepfile;
 
-       if (args[3] == "gccdepfile") {
 
-         format = cmDepfileFormat::GccDepfile;
 
-       } else if (args[3] == "vstlog") {
 
-         format = cmDepfileFormat::VsTlog;
 
-       } else {
 
-         return 1;
 
-       }
 
-       // Create a cmake object instance to process dependencies.
 
-       // All we need is the `set` command.
 
-       cmake cm(cmake::RoleScript, cmState::Unknown);
 
-       std::string homeDir;
 
-       std::string startDir;
 
-       std::string homeOutDir;
 
-       std::string startOutDir;
 
-       homeDir = cmSystemTools::CollapseFullPath(args[4]);
 
-       startDir = cmSystemTools::CollapseFullPath(args[5]);
 
-       homeOutDir = cmSystemTools::CollapseFullPath(args[6]);
 
-       startOutDir = cmSystemTools::CollapseFullPath(args[7]);
 
-       cm.SetHomeDirectory(homeDir);
 
-       cm.SetHomeOutputDirectory(homeOutDir);
 
-       cm.GetCurrentSnapshot().SetDefaultDefinitions();
 
-       if (auto ggd = cm.CreateGlobalGenerator(args[2])) {
 
-         cm.SetGlobalGenerator(std::move(ggd));
 
-         cmStateSnapshot snapshot = cm.GetCurrentSnapshot();
 
-         snapshot.GetDirectory().SetCurrentBinary(startOutDir);
 
-         snapshot.GetDirectory().SetCurrentSource(startDir);
 
-         snapshot.GetDirectory().SetRelativePathTopSource(homeDir.c_str());
 
-         snapshot.GetDirectory().SetRelativePathTopBinary(homeOutDir.c_str());
 
-         cmMakefile mf(cm.GetGlobalGenerator(), snapshot);
 
-         auto lgd = cm.GetGlobalGenerator()->CreateLocalGenerator(&mf);
 
-         return cmTransformDepfile(format, *lgd, args[8], args[9]) ? 0 : 2;
 
-       }
 
-       return 1;
 
-     }
 
-   }
 
-   CMakeCommandUsage(args[0]);
 
-   return 1;
 
- }
 
- int cmcmd::HashSumFile(std::vector<std::string> const& args,
 
-                        cmCryptoHash::Algo algo)
 
- {
 
-   if (args.size() < 3) {
 
-     return -1;
 
-   }
 
-   int retval = 0;
 
-   for (auto const& filename : cmMakeRange(args).advance(2)) {
 
-     // Cannot compute sum of a directory
 
-     if (cmSystemTools::FileIsDirectory(filename)) {
 
-       std::cerr << "Error: " << filename << " is a directory" << std::endl;
 
-       retval++;
 
-     } else {
 
-       std::string value = cmSystemTools::ComputeFileHash(filename, algo);
 
-       if (value.empty()) {
 
-         // To mimic "md5sum/shasum" behavior in a shell:
 
-         std::cerr << filename << ": No such file or directory" << std::endl;
 
-         retval++;
 
-       } else {
 
-         std::cout << value << "  " << filename << std::endl;
 
-       }
 
-     }
 
-   }
 
-   return retval;
 
- }
 
- int cmcmd::SymlinkLibrary(std::vector<std::string> const& args)
 
- {
 
-   int result = 0;
 
-   std::string realName = args[2];
 
-   std::string soName = args[3];
 
-   std::string name = args[4];
 
-   cmSystemTools::ConvertToUnixSlashes(realName);
 
-   cmSystemTools::ConvertToUnixSlashes(soName);
 
-   cmSystemTools::ConvertToUnixSlashes(name);
 
-   if (soName != realName) {
 
-     if (!cmcmd::SymlinkInternal(realName, soName)) {
 
-       cmSystemTools::ReportLastSystemError("cmake_symlink_library");
 
-       result = 1;
 
-     }
 
-   }
 
-   if (name != soName) {
 
-     if (!cmcmd::SymlinkInternal(soName, name)) {
 
-       cmSystemTools::ReportLastSystemError("cmake_symlink_library");
 
-       result = 1;
 
-     }
 
-   }
 
-   return result;
 
- }
 
- int cmcmd::SymlinkExecutable(std::vector<std::string> const& args)
 
- {
 
-   int result = 0;
 
-   std::string const& realName = args[2];
 
-   std::string const& name = args[3];
 
-   if (name != realName) {
 
-     if (!cmcmd::SymlinkInternal(realName, name)) {
 
-       cmSystemTools::ReportLastSystemError("cmake_symlink_executable");
 
-       result = 1;
 
-     }
 
-   }
 
-   return result;
 
- }
 
- bool cmcmd::SymlinkInternal(std::string const& file, std::string const& link)
 
- {
 
-   if (cmSystemTools::FileExists(link) || cmSystemTools::FileIsSymlink(link)) {
 
-     cmSystemTools::RemoveFile(link);
 
-   }
 
- #if defined(_WIN32) && !defined(__CYGWIN__)
 
-   return static_cast<bool>(cmSystemTools::CopyFileAlways(file, link));
 
- #else
 
-   std::string linktext = cmSystemTools::GetFilenameName(file);
 
-   return cmSystemTools::CreateSymlink(linktext, link);
 
- #endif
 
- }
 
- static void cmcmdProgressReport(std::string const& dir, std::string const& num)
 
- {
 
-   std::string dirName = cmStrCat(dir, "/Progress");
 
-   std::string fName;
 
-   FILE* progFile;
 
-   // read the count
 
-   fName = cmStrCat(dirName, "/count.txt");
 
-   progFile = cmsys::SystemTools::Fopen(fName, "r");
 
-   int count = 0;
 
-   if (!progFile) {
 
-     return;
 
-   }
 
-   if (1 != fscanf(progFile, "%i", &count)) {
 
-     cmSystemTools::Message("Could not read from progress file.");
 
-   }
 
-   fclose(progFile);
 
-   const char* last = num.c_str();
 
-   for (const char* c = last;; ++c) {
 
-     if (*c == ',' || *c == '\0') {
 
-       if (c != last) {
 
-         fName = cmStrCat(dirName, '/');
 
-         fName.append(last, c - last);
 
-         progFile = cmsys::SystemTools::Fopen(fName, "w");
 
-         if (progFile) {
 
-           fprintf(progFile, "empty");
 
-           fclose(progFile);
 
-         }
 
-       }
 
-       if (*c == '\0') {
 
-         break;
 
-       }
 
-       last = c + 1;
 
-     }
 
-   }
 
-   int fileNum =
 
-     static_cast<int>(cmsys::Directory::GetNumberOfFilesInDirectory(dirName));
 
-   if (count > 0) {
 
-     // print the progress
 
-     fprintf(stdout, "[%3i%%] ", ((fileNum - 3) * 100) / count);
 
-   }
 
- }
 
- int cmcmd::ExecuteEchoColor(std::vector<std::string> const& args)
 
- {
 
-   // The arguments are
 
-   //   args[0] == <cmake-executable>
 
-   //   args[1] == cmake_echo_color
 
-   bool enabled = true;
 
-   int color = cmsysTerminal_Color_Normal;
 
-   bool newline = true;
 
-   std::string progressDir;
 
-   for (auto const& arg : cmMakeRange(args).advance(2)) {
 
-     if (cmHasLiteralPrefix(arg, "--switch=")) {
 
-       // Enable or disable color based on the switch value.
 
-       std::string value = arg.substr(9);
 
-       if (!value.empty()) {
 
-         enabled = cmIsOn(value);
 
-       }
 
-     } else if (cmHasLiteralPrefix(arg, "--progress-dir=")) {
 
-       progressDir = arg.substr(15);
 
-     } else if (cmHasLiteralPrefix(arg, "--progress-num=")) {
 
-       if (!progressDir.empty()) {
 
-         std::string const& progressNum = arg.substr(15);
 
-         cmcmdProgressReport(progressDir, progressNum);
 
-       }
 
-     } else if (arg == "--normal") {
 
-       color = cmsysTerminal_Color_Normal;
 
-     } else if (arg == "--black") {
 
-       color = cmsysTerminal_Color_ForegroundBlack;
 
-     } else if (arg == "--red") {
 
-       color = cmsysTerminal_Color_ForegroundRed;
 
-     } else if (arg == "--green") {
 
-       color = cmsysTerminal_Color_ForegroundGreen;
 
-     } else if (arg == "--yellow") {
 
-       color = cmsysTerminal_Color_ForegroundYellow;
 
-     } else if (arg == "--blue") {
 
-       color = cmsysTerminal_Color_ForegroundBlue;
 
-     } else if (arg == "--magenta") {
 
-       color = cmsysTerminal_Color_ForegroundMagenta;
 
-     } else if (arg == "--cyan") {
 
-       color = cmsysTerminal_Color_ForegroundCyan;
 
-     } else if (arg == "--white") {
 
-       color = cmsysTerminal_Color_ForegroundWhite;
 
-     } else if (arg == "--bold") {
 
-       color |= cmsysTerminal_Color_ForegroundBold;
 
-     } else if (arg == "--no-newline") {
 
-       newline = false;
 
-     } else if (arg == "--newline") {
 
-       newline = true;
 
-     } else {
 
-       // Color is enabled.  Print with the current color.
 
-       cmSystemTools::MakefileColorEcho(color, arg.c_str(), newline, enabled);
 
-     }
 
-   }
 
-   return 0;
 
- }
 
- int cmcmd::ExecuteLinkScript(std::vector<std::string> const& args)
 
- {
 
-   // The arguments are
 
-   //   args[0] == <cmake-executable>
 
-   //   args[1] == cmake_link_script
 
-   //   args[2] == <link-script-name>
 
-   //   args[3] == --verbose=?
 
-   bool verbose = false;
 
-   if (args.size() >= 4) {
 
-     if (cmHasLiteralPrefix(args[3], "--verbose=")) {
 
-       if (!cmIsOff(args[3].substr(10))) {
 
-         verbose = true;
 
-       }
 
-     }
 
-   }
 
-   // Allocate a process instance.
 
-   cmsysProcess* cp = cmsysProcess_New();
 
-   if (!cp) {
 
-     std::cerr << "Error allocating process instance in link script."
 
-               << std::endl;
 
-     return 1;
 
-   }
 
-   // Children should share stdout and stderr with this process.
 
-   cmsysProcess_SetPipeShared(cp, cmsysProcess_Pipe_STDOUT, 1);
 
-   cmsysProcess_SetPipeShared(cp, cmsysProcess_Pipe_STDERR, 1);
 
-   // Run the command lines verbatim.
 
-   cmsysProcess_SetOption(cp, cmsysProcess_Option_Verbatim, 1);
 
-   // Read command lines from the script.
 
-   cmsys::ifstream fin(args[2].c_str());
 
-   if (!fin) {
 
-     std::cerr << "Error opening link script \"" << args[2] << "\""
 
-               << std::endl;
 
-     return 1;
 
-   }
 
-   // Run one command at a time.
 
-   std::string command;
 
-   int result = 0;
 
-   while (result == 0 && cmSystemTools::GetLineFromStream(fin, command)) {
 
-     // Skip empty command lines.
 
-     if (command.find_first_not_of(" \t") == std::string::npos) {
 
-       continue;
 
-     }
 
-     // Setup this command line.
 
-     const char* cmd[2] = { command.c_str(), nullptr };
 
-     cmsysProcess_SetCommand(cp, cmd);
 
-     // Report the command if verbose output is enabled.
 
-     if (verbose) {
 
-       std::cout << command << std::endl;
 
-     }
 
-     // Run the command and wait for it to exit.
 
-     cmsysProcess_Execute(cp);
 
-     cmsysProcess_WaitForExit(cp, nullptr);
 
-     // Report failure if any.
 
-     switch (cmsysProcess_GetState(cp)) {
 
-       case cmsysProcess_State_Exited: {
 
-         int value = cmsysProcess_GetExitValue(cp);
 
-         if (value != 0) {
 
-           result = value;
 
-         }
 
-       } break;
 
-       case cmsysProcess_State_Exception:
 
-         std::cerr << "Error running link command: "
 
-                   << cmsysProcess_GetExceptionString(cp) << std::endl;
 
-         result = 1;
 
-         break;
 
-       case cmsysProcess_State_Error:
 
-         std::cerr << "Error running link command: "
 
-                   << cmsysProcess_GetErrorString(cp) << std::endl;
 
-         result = 2;
 
-         break;
 
-       default:
 
-         break;
 
-     }
 
-   }
 
-   // Free the process instance.
 
-   cmsysProcess_Delete(cp);
 
-   // Return the final resulting return value.
 
-   return result;
 
- }
 
- int cmcmd::WindowsCEEnvironment(const char* version, const std::string& name)
 
- {
 
- #if !defined(CMAKE_BOOTSTRAP) && defined(_WIN32) && !defined(__CYGWIN__)
 
-   cmVisualStudioWCEPlatformParser parser(name.c_str());
 
-   parser.ParseVersion(version);
 
-   if (parser.Found()) {
 
-     /* clang-format off */
 
-     std::cout << "@echo off\n"
 
-                  "echo Environment Selection: " << name << "\n"
 
-                  "set PATH=" << parser.GetPathDirectories() << "\n"
 
-                  "set INCLUDE=" << parser.GetIncludeDirectories() << "\n"
 
-                  "set LIB=" << parser.GetLibraryDirectories() << std::endl;
 
-     /* clang-format on */
 
-     return 0;
 
-   }
 
- #else
 
-   (void)version;
 
- #endif
 
-   std::cerr << "Could not find " << name;
 
-   return -1;
 
- }
 
- int cmcmd::RunPreprocessor(const std::vector<std::string>& command,
 
-                            const std::string& intermediate_file)
 
- {
 
-   cmUVProcessChainBuilder builder;
 
-   uv_fs_t fs_req;
 
-   int preprocessedFile =
 
-     uv_fs_open(nullptr, &fs_req, intermediate_file.c_str(), O_CREAT | O_RDWR,
 
-                0644, nullptr);
 
-   uv_fs_req_cleanup(&fs_req);
 
-   builder
 
-     .SetExternalStream(cmUVProcessChainBuilder::Stream_OUTPUT,
 
-                        preprocessedFile)
 
-     .SetBuiltinStream(cmUVProcessChainBuilder::Stream_ERROR)
 
-     .AddCommand(command);
 
-   auto process = builder.Start();
 
-   if (!process.Valid()) {
 
-     std::cerr << "Failed to start preprocessor.";
 
-     return 1;
 
-   }
 
-   if (!process.Wait()) {
 
-     std::cerr << "Failed to wait for preprocessor";
 
-     return 1;
 
-   }
 
-   auto status = process.GetStatus();
 
-   if (!status[0] || status[0]->ExitStatus != 0) {
 
-     auto* errorStream = process.ErrorStream();
 
-     if (errorStream) {
 
-       std::cerr << errorStream->rdbuf();
 
-     }
 
-     return 1;
 
-   }
 
-   return 0;
 
- }
 
- int cmcmd::RunLLVMRC(std::vector<std::string> const& args)
 
- {
 
-   // The arguments are
 
-   //   args[0] == <cmake-executable>
 
-   //   args[1] == cmake_llvm_rc
 
-   //   args[2] == source_file_path
 
-   //   args[3] == intermediate_file
 
-   //   args[4..n] == preprocess+args
 
-   //   args[n+1] == ++
 
-   //   args[n+2...] == llvm-rc+args
 
-   if (args.size() < 3) {
 
-     std::cerr << "Invalid cmake_llvm_rc arguments";
 
-     return 1;
 
-   }
 
-   const std::string& intermediate_file = args[3];
 
-   const std::string& source_file = args[2];
 
-   std::vector<std::string> preprocess;
 
-   std::vector<std::string> resource_compile;
 
-   std::vector<std::string>* pArgTgt = &preprocess;
 
-   static const cmsys::RegularExpression llvm_rc_only_single_arg("^[-/](N|Y)");
 
-   static const cmsys::RegularExpression llvm_rc_only_double_arg(
 
-     "^[-/](C|LN|L)(.)?");
 
-   static const cmsys::RegularExpression common_double_arg(
 
-     "^[-/](D|U|I|FO|fo|Fo)(.)?");
 
-   bool acceptNextArg = false;
 
-   bool skipNextArg = false;
 
-   for (std::string const& arg : cmMakeRange(args).advance(4)) {
 
-     if (skipNextArg) {
 
-       skipNextArg = false;
 
-       continue;
 
-     }
 
-     // We use ++ as seperator between the preprocessing step definition and
 
-     // the rc compilation step becase we need to prepend a -- to seperate the
 
-     // source file properly from other options when using clang-cl for
 
-     // preprocessing.
 
-     if (arg == "++") {
 
-       pArgTgt = &resource_compile;
 
-       skipNextArg = false;
 
-       acceptNextArg = true;
 
-     } else {
 
-       cmsys::RegularExpressionMatch match;
 
-       if (!acceptNextArg) {
 
-         if (common_double_arg.find(arg.c_str(), match)) {
 
-           acceptNextArg = match.match(2).empty();
 
-         } else {
 
-           if (llvm_rc_only_single_arg.find(arg.c_str(), match)) {
 
-             if (pArgTgt == &preprocess) {
 
-               continue;
 
-             }
 
-           } else if (llvm_rc_only_double_arg.find(arg.c_str(), match)) {
 
-             if (pArgTgt == &preprocess) {
 
-               skipNextArg = match.match(2).empty();
 
-               continue;
 
-             }
 
-             acceptNextArg = match.match(2).empty();
 
-           } else if (pArgTgt == &resource_compile) {
 
-             continue;
 
-           }
 
-         }
 
-       } else {
 
-         acceptNextArg = false;
 
-       }
 
-       if (arg.find("SOURCE_DIR") != std::string::npos) {
 
-         std::string sourceDirArg = arg;
 
-         cmSystemTools::ReplaceString(
 
-           sourceDirArg, "SOURCE_DIR",
 
-           cmSystemTools::GetFilenamePath(source_file));
 
-         pArgTgt->push_back(sourceDirArg);
 
-       } else {
 
-         pArgTgt->push_back(arg);
 
-       }
 
-     }
 
-   }
 
-   if (preprocess.empty()) {
 
-     std::cerr << "Empty preprocessing command";
 
-     return 1;
 
-   }
 
-   if (resource_compile.empty()) {
 
-     std::cerr << "Empty resource compilation command";
 
-     return 1;
 
-   }
 
-   // Since we might have skipped the last argument to llvm-rc
 
-   // we need to make sure the llvm-rc source file is present in the
 
-   // commandline
 
-   if (resource_compile.back() != intermediate_file) {
 
-     resource_compile.push_back(intermediate_file);
 
-   }
 
-   auto result = RunPreprocessor(preprocess, intermediate_file);
 
-   if (result != 0) {
 
-     cmSystemTools::RemoveFile(intermediate_file);
 
-     return result;
 
-   }
 
-   cmUVProcessChainBuilder builder;
 
-   builder.SetBuiltinStream(cmUVProcessChainBuilder::Stream_OUTPUT)
 
-     .SetBuiltinStream(cmUVProcessChainBuilder::Stream_ERROR)
 
-     .AddCommand(resource_compile);
 
-   auto process = builder.Start();
 
-   result = 0;
 
-   if (!process.Valid()) {
 
-     std::cerr << "Failed to start resource compiler.";
 
-     result = 1;
 
-   } else {
 
-     if (!process.Wait()) {
 
-       std::cerr << "Failed to wait for resource compiler";
 
-       result = 1;
 
-     }
 
-   }
 
-   cmSystemTools::RemoveFile(intermediate_file);
 
-   if (result != 0) {
 
-     return result;
 
-   }
 
-   auto status = process.GetStatus();
 
-   if (!status[0] || status[0]->ExitStatus != 0) {
 
-     auto* errorStream = process.ErrorStream();
 
-     if (errorStream) {
 
-       std::cerr << errorStream->rdbuf();
 
-     }
 
-     return 1;
 
-   }
 
-   return 0;
 
- }
 
- class cmVSLink
 
- {
 
-   int Type;
 
-   bool Verbose;
 
-   bool Incremental;
 
-   bool LinkGeneratesManifest;
 
-   std::vector<std::string> LinkCommand;
 
-   std::vector<std::string> UserManifests;
 
-   std::string LinkerManifestFile;
 
-   std::string ManifestFile;
 
-   std::string ManifestFileRC;
 
-   std::string ManifestFileRes;
 
-   std::string TargetFile;
 
-   std::string MtPath;
 
-   std::string RcPath;
 
- public:
 
-   cmVSLink(int type, bool verbose)
 
-     : Type(type)
 
-     , Verbose(verbose)
 
-     , Incremental(false)
 
-     , LinkGeneratesManifest(true)
 
-   {
 
-   }
 
-   bool Parse(std::vector<std::string>::const_iterator argBeg,
 
-              std::vector<std::string>::const_iterator argEnd);
 
-   int Link();
 
- private:
 
-   int LinkIncremental();
 
-   int LinkNonIncremental();
 
-   int RunMT(std::string const& out, bool notify);
 
- };
 
- // For visual studio 2005 and newer manifest files need to be embedded into
 
- // exe and dll's.  This code does that in such a way that incremental linking
 
- // still works.
 
- int cmcmd::VisualStudioLink(std::vector<std::string> const& args, int type)
 
- {
 
-   // Replace streambuf so we output in the system codepage. CMake is set up
 
-   // to output in Unicode (see SetUTF8Pipes) but the Visual Studio linker
 
-   // outputs using the system codepage so we need to change behavior when
 
-   // we run the link command.
 
-   cmConsoleBuf consoleBuf;
 
-   if (args.size() < 2) {
 
-     return -1;
 
-   }
 
-   const bool verbose = cmSystemTools::HasEnv("VERBOSE");
 
-   std::vector<std::string> expandedArgs;
 
-   for (std::string const& i : args) {
 
-     // check for nmake temporary files
 
-     if (i[0] == '@' && !cmHasLiteralPrefix(i, "@CMakeFiles")) {
 
-       cmsys::ifstream fin(i.substr(1).c_str());
 
-       std::string line;
 
-       while (cmSystemTools::GetLineFromStream(fin, line)) {
 
-         cmSystemTools::ParseWindowsCommandLine(line.c_str(), expandedArgs);
 
-       }
 
-     } else {
 
-       expandedArgs.push_back(i);
 
-     }
 
-   }
 
-   cmVSLink vsLink(type, verbose);
 
-   if (!vsLink.Parse(expandedArgs.begin() + 2, expandedArgs.end())) {
 
-     return -1;
 
-   }
 
-   return vsLink.Link();
 
- }
 
- enum NumberFormat
 
- {
 
-   FORMAT_DECIMAL,
 
-   FORMAT_HEX
 
- };
 
- struct NumberFormatter
 
- {
 
-   NumberFormat Format;
 
-   int Value;
 
-   NumberFormatter(NumberFormat format, int value)
 
-     : Format(format)
 
-     , Value(value)
 
-   {
 
-   }
 
- };
 
- std::ostream& operator<<(std::ostream& stream,
 
-                          NumberFormatter const& formatter)
 
- {
 
-   auto const& flags = stream.flags();
 
-   if (formatter.Format == FORMAT_DECIMAL) {
 
-     stream << std::dec << formatter.Value;
 
-   } else {
 
-     stream << "0x" << std::hex << formatter.Value;
 
-   }
 
-   stream.flags(flags);
 
-   return stream;
 
- }
 
- static bool RunCommand(const char* comment,
 
-                        std::vector<std::string> const& command, bool verbose,
 
-                        NumberFormat exitFormat, int* retCodeOut = nullptr,
 
-                        bool (*retCodeOkay)(int) = nullptr)
 
- {
 
-   if (verbose) {
 
-     std::cout << comment << ":\n";
 
-     std::cout << cmJoin(command, " ") << "\n";
 
-   }
 
-   std::string output;
 
-   int retCode = 0;
 
-   bool commandResult = cmSystemTools::RunSingleCommand(
 
-     command, &output, &output, &retCode, nullptr, cmSystemTools::OUTPUT_NONE);
 
-   bool const retCodeSuccess =
 
-     retCode == 0 || (retCodeOkay && retCodeOkay(retCode));
 
-   bool const success = commandResult && retCodeSuccess;
 
-   if (retCodeOut) {
 
-     if (commandResult || !retCodeSuccess) {
 
-       *retCodeOut = retCode;
 
-     } else {
 
-       *retCodeOut = -1;
 
-     }
 
-   }
 
-   if (!success) {
 
-     std::cout << comment << ": command \"" << cmJoin(command, " ")
 
-               << "\" failed (exit code "
 
-               << NumberFormatter(exitFormat, retCode)
 
-               << ") with the following output:\n"
 
-               << output;
 
-   } else if (verbose) {
 
-     // always print the output of the command, unless
 
-     // it is the dumb rc command banner
 
-     if (output.find("Resource Compiler Version") == std::string::npos) {
 
-       std::cout << output;
 
-     }
 
-   }
 
-   return success;
 
- }
 
- bool cmVSLink::Parse(std::vector<std::string>::const_iterator argBeg,
 
-                      std::vector<std::string>::const_iterator argEnd)
 
- {
 
-   // Parse our own arguments.
 
-   std::string intDir;
 
-   auto arg = argBeg;
 
-   while (arg != argEnd && cmHasLiteralPrefix(*arg, "-")) {
 
-     if (*arg == "--") {
 
-       ++arg;
 
-       break;
 
-     }
 
-     if (*arg == "--manifests") {
 
-       for (++arg; arg != argEnd && !cmHasLiteralPrefix(*arg, "-"); ++arg) {
 
-         this->UserManifests.push_back(*arg);
 
-       }
 
-     } else if (cmHasLiteralPrefix(*arg, "--intdir=")) {
 
-       intDir = arg->substr(9);
 
-       ++arg;
 
-     } else if (cmHasLiteralPrefix(*arg, "--rc=")) {
 
-       this->RcPath = arg->substr(5);
 
-       ++arg;
 
-     } else if (cmHasLiteralPrefix(*arg, "--mt=")) {
 
-       this->MtPath = arg->substr(5);
 
-       ++arg;
 
-     } else {
 
-       std::cerr << "unknown argument '" << *arg << "'\n";
 
-       return false;
 
-     }
 
-   }
 
-   if (intDir.empty()) {
 
-     return false;
 
-   }
 
-   // The rest of the arguments form the link command.
 
-   if (arg == argEnd) {
 
-     return false;
 
-   }
 
-   this->LinkCommand.insert(this->LinkCommand.begin(), arg, argEnd);
 
-   // Parse the link command to extract information we need.
 
-   for (; arg != argEnd; ++arg) {
 
-     if (cmSystemTools::Strucmp(arg->c_str(), "/INCREMENTAL:YES") == 0 ||
 
-         cmSystemTools::Strucmp(arg->c_str(), "/INCREMENTAL") == 0) {
 
-       this->Incremental = true;
 
-     } else if (cmSystemTools::Strucmp(arg->c_str(), "/MANIFEST:NO") == 0) {
 
-       this->LinkGeneratesManifest = false;
 
-     } else if (cmHasLiteralPrefix(*arg, "/Fe")) {
 
-       this->TargetFile = arg->substr(3);
 
-     } else if (cmHasLiteralPrefix(*arg, "/out:")) {
 
-       this->TargetFile = arg->substr(5);
 
-     }
 
-   }
 
-   if (this->TargetFile.empty()) {
 
-     return false;
 
-   }
 
-   this->ManifestFile = intDir + "/embed.manifest";
 
-   this->LinkerManifestFile = intDir + "/intermediate.manifest";
 
-   if (this->Incremental) {
 
-     // We will compile a resource containing the manifest and
 
-     // pass it to the link command.
 
-     this->ManifestFileRC = intDir + "/manifest.rc";
 
-     this->ManifestFileRes = intDir + "/manifest.res";
 
-   } else if (this->UserManifests.empty()) {
 
-     // Prior to support for user-specified manifests CMake placed the
 
-     // linker-generated manifest next to the binary (as if it were not to be
 
-     // embedded) when not linking incrementally.  Preserve this behavior.
 
-     this->ManifestFile = this->TargetFile + ".manifest";
 
-     this->LinkerManifestFile = this->ManifestFile;
 
-   }
 
-   if (this->LinkGeneratesManifest) {
 
-     this->LinkCommand.emplace_back("/MANIFEST");
 
-     this->LinkCommand.push_back("/MANIFESTFILE:" + this->LinkerManifestFile);
 
-   }
 
-   return true;
 
- }
 
- int cmVSLink::Link()
 
- {
 
-   if (this->Incremental &&
 
-       (this->LinkGeneratesManifest || !this->UserManifests.empty())) {
 
-     if (this->Verbose) {
 
-       std::cout << "Visual Studio Incremental Link with embedded manifests\n";
 
-     }
 
-     return this->LinkIncremental();
 
-   }
 
-   if (this->Verbose) {
 
-     if (!this->Incremental) {
 
-       std::cout << "Visual Studio Non-Incremental Link\n";
 
-     } else {
 
-       std::cout << "Visual Studio Incremental Link without manifests\n";
 
-     }
 
-   }
 
-   return this->LinkNonIncremental();
 
- }
 
- static bool mtRetIsUpdate(int mtRet)
 
- {
 
-   // 'mt /notify_update' returns a special value (differing between
 
-   // Windows and POSIX hosts) when it updated the manifest file.
 
-   return mtRet == 0x41020001 || mtRet == 0xbb;
 
- }
 
- int cmVSLink::LinkIncremental()
 
- {
 
-   // This follows the steps listed here:
 
-   // http://blogs.msdn.com/zakramer/archive/2006/05/22/603558.aspx
 
-   //    1.  Compiler compiles the application and generates the *.obj files.
 
-   //    2.  An empty manifest file is generated if this is a clean build and
 
-   //    if not the previous one is reused.
 
-   //    3.  The resource compiler (rc.exe) compiles the *.manifest file to a
 
-   //    *.res file.
 
-   //    4.  Linker generates the binary (EXE or DLL) with the /incremental
 
-   //    switch and embeds the dummy manifest file. The linker also generates
 
-   //    the real manifest file based on the binaries that your binary depends
 
-   //    on.
 
-   //    5.  The manifest tool (mt.exe) is then used to generate the final
 
-   //    manifest.
 
-   // If the final manifest is changed, then 6 and 7 are run, if not
 
-   // they are skipped, and it is done.
 
-   //    6.  The resource compiler is invoked one more time.
 
-   //    7.  Finally, the Linker does another incremental link, but since the
 
-   //    only thing that has changed is the *.res file that contains the
 
-   //    manifest it is a short link.
 
-   // Create a resource file referencing the manifest.
 
-   std::string absManifestFile =
 
-     cmSystemTools::CollapseFullPath(this->ManifestFile);
 
-   if (this->Verbose) {
 
-     std::cout << "Create " << this->ManifestFileRC << "\n";
 
-   }
 
-   {
 
-     cmsys::ofstream fout(this->ManifestFileRC.c_str());
 
-     if (!fout) {
 
-       return -1;
 
-     }
 
-     // Insert a pragma statement to specify utf-8 encoding.
 
-     fout << "#pragma code_page(65001)\n";
 
-     fout << this->Type
 
-          << " /* CREATEPROCESS_MANIFEST_RESOURCE_ID */ "
 
-             "24 /* RT_MANIFEST */ \""
 
-          << absManifestFile << "\"";
 
-   }
 
-   // If we have not previously generated a manifest file,
 
-   // generate a manifest file so the resource compiler succeeds.
 
-   if (!cmSystemTools::FileExists(this->ManifestFile)) {
 
-     if (this->Verbose) {
 
-       std::cout << "Create empty: " << this->ManifestFile << "\n";
 
-     }
 
-     if (this->UserManifests.empty()) {
 
-       // generate an empty manifest because there are no user provided
 
-       // manifest files.
 
-       cmsys::ofstream foutTmp(this->ManifestFile.c_str());
 
-     } else {
 
-       this->RunMT("/out:" + this->ManifestFile, false);
 
-     }
 
-   }
 
-   // Compile the resource file.
 
-   std::vector<std::string> rcCommand;
 
-   rcCommand.push_back(this->RcPath.empty() ? "rc" : this->RcPath);
 
-   rcCommand.emplace_back("/fo");
 
-   rcCommand.push_back(this->ManifestFileRes);
 
-   rcCommand.push_back(this->ManifestFileRC);
 
-   if (!RunCommand("RC Pass 1", rcCommand, this->Verbose, FORMAT_DECIMAL)) {
 
-     return -1;
 
-   }
 
-   // Tell the linker to use our manifest compiled into a resource.
 
-   this->LinkCommand.push_back(this->ManifestFileRes);
 
-   // Run the link command (possibly generates intermediate manifest).
 
-   if (!RunCommand("LINK Pass 1", this->LinkCommand, this->Verbose,
 
-                   FORMAT_DECIMAL)) {
 
-     return -1;
 
-   }
 
-   // Run the manifest tool to create the final manifest.
 
-   int mtRet = this->RunMT("/out:" + this->ManifestFile, true);
 
-   // If mt returns a special value then it updated the manifest file so
 
-   // we need to embed it again.  Otherwise we are done.
 
-   if (!mtRetIsUpdate(mtRet)) {
 
-     return mtRet;
 
-   }
 
-   // Compile the resource file again.
 
-   if (!RunCommand("RC Pass 2", rcCommand, this->Verbose, FORMAT_DECIMAL)) {
 
-     return -1;
 
-   }
 
-   // Link incrementally again to use the updated resource.
 
-   if (!RunCommand("FINAL LINK", this->LinkCommand, this->Verbose,
 
-                   FORMAT_DECIMAL)) {
 
-     return -1;
 
-   }
 
-   return 0;
 
- }
 
- int cmVSLink::LinkNonIncremental()
 
- {
 
-   // Run the link command (possibly generates intermediate manifest).
 
-   if (!RunCommand("LINK", this->LinkCommand, this->Verbose, FORMAT_DECIMAL)) {
 
-     return -1;
 
-   }
 
-   // If we have no manifest files we are done.
 
-   if (!this->LinkGeneratesManifest && this->UserManifests.empty()) {
 
-     return 0;
 
-   }
 
-   // Run the manifest tool to embed the final manifest in the binary.
 
-   std::string mtOut =
 
-     "/outputresource:" + this->TargetFile + (this->Type == 1 ? ";#1" : ";#2");
 
-   return this->RunMT(mtOut, false);
 
- }
 
- int cmVSLink::RunMT(std::string const& out, bool notify)
 
- {
 
-   std::vector<std::string> mtCommand;
 
-   mtCommand.push_back(this->MtPath.empty() ? "mt" : this->MtPath);
 
-   mtCommand.emplace_back("/nologo");
 
-   mtCommand.emplace_back("/manifest");
 
-   // add the linker generated manifest if the file exists.
 
-   if (this->LinkGeneratesManifest &&
 
-       cmSystemTools::FileExists(this->LinkerManifestFile)) {
 
-     mtCommand.push_back(this->LinkerManifestFile);
 
-   }
 
-   cm::append(mtCommand, this->UserManifests);
 
-   mtCommand.push_back(out);
 
-   if (notify) {
 
-     // Add an undocumented option that enables a special return
 
-     // code to notify us when the manifest is modified.
 
-     mtCommand.emplace_back("/notify_update");
 
-   }
 
-   int mtRet = 0;
 
-   if (!RunCommand("MT", mtCommand, this->Verbose, FORMAT_HEX, &mtRet,
 
-                   mtRetIsUpdate)) {
 
-     return -1;
 
-   }
 
-   return mtRet;
 
- }
 
 
  |