| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406 | 
							- /* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
 
-    file Copyright.txt or https://cmake.org/licensing for details.  */
 
- #include "cmFindPackageCommand.h"
 
- #include <algorithm>
 
- #include <cassert>
 
- #include <cstdio>
 
- #include <cstring>
 
- #include <deque>
 
- #include <functional>
 
- #include <iterator>
 
- #include <sstream>
 
- #include <utility>
 
- #include <cm/memory>
 
- #include <cmext/string_view>
 
- #include "cmsys/Directory.hxx"
 
- #include "cmsys/FStream.hxx"
 
- #include "cmsys/Glob.hxx"
 
- #include "cmsys/RegularExpression.hxx"
 
- #include "cmsys/String.h"
 
- #include "cmAlgorithms.h"
 
- #include "cmMakefile.h"
 
- #include "cmMessageType.h"
 
- #include "cmPolicies.h"
 
- #include "cmProperty.h"
 
- #include "cmRange.h"
 
- #include "cmSearchPath.h"
 
- #include "cmState.h"
 
- #include "cmStateTypes.h"
 
- #include "cmStringAlgorithms.h"
 
- #include "cmSystemTools.h"
 
- #include "cmVersion.h"
 
- #if defined(__HAIKU__)
 
- #  include <FindDirectory.h>
 
- #  include <StorageDefs.h>
 
- #endif
 
- class cmExecutionStatus;
 
- class cmFileList;
 
- cmFindPackageCommand::PathLabel cmFindPackageCommand::PathLabel::UserRegistry(
 
-   "PACKAGE_REGISTRY");
 
- cmFindPackageCommand::PathLabel cmFindPackageCommand::PathLabel::Builds(
 
-   "BUILDS");
 
- cmFindPackageCommand::PathLabel
 
-   cmFindPackageCommand::PathLabel::SystemRegistry("SYSTEM_PACKAGE_REGISTRY");
 
- struct StrverscmpGreater
 
- {
 
-   bool operator()(const std::string& lhs, const std::string& rhs) const
 
-   {
 
-     return cmSystemTools::strverscmp(lhs, rhs) > 0;
 
-   }
 
- };
 
- struct StrverscmpLesser
 
- {
 
-   bool operator()(const std::string& lhs, const std::string& rhs) const
 
-   {
 
-     return cmSystemTools::strverscmp(lhs, rhs) < 0;
 
-   }
 
- };
 
- void cmFindPackageCommand::Sort(std::vector<std::string>::iterator begin,
 
-                                 std::vector<std::string>::iterator end,
 
-                                 SortOrderType order, SortDirectionType dir)
 
- {
 
-   if (order == Name_order) {
 
-     if (dir == Dec) {
 
-       std::sort(begin, end, std::greater<std::string>());
 
-     } else {
 
-       std::sort(begin, end);
 
-     }
 
-   } else if (order == Natural)
 
-   // natural order uses letters and numbers (contiguous numbers digit are
 
-   // compared such that e.g. 000  00 < 01 < 010 < 09 < 0 < 1 < 9 < 10
 
-   {
 
-     if (dir == Dec) {
 
-       std::sort(begin, end, StrverscmpGreater());
 
-     } else {
 
-       std::sort(begin, end, StrverscmpLesser());
 
-     }
 
-   }
 
-   // else do not sort
 
- }
 
- cmFindPackageCommand::cmFindPackageCommand(cmExecutionStatus& status)
 
-   : cmFindCommon(status)
 
- {
 
-   this->CMakePathName = "PACKAGE";
 
-   this->DebugMode = false;
 
-   this->AppendSearchPathGroups();
 
-   this->DeprecatedFindModules["Qt"] = cmPolicies::CMP0084;
 
- }
 
- void cmFindPackageCommand::AppendSearchPathGroups()
 
- {
 
-   std::vector<cmFindCommon::PathLabel>* labels;
 
-   // Update the All group with new paths
 
-   labels = &this->PathGroupLabelMap[PathGroup::All];
 
-   labels->insert(
 
-     std::find(labels->begin(), labels->end(), PathLabel::CMakeSystem),
 
-     PathLabel::UserRegistry);
 
-   labels->insert(
 
-     std::find(labels->begin(), labels->end(), PathLabel::CMakeSystem),
 
-     PathLabel::Builds);
 
-   labels->insert(std::find(labels->begin(), labels->end(), PathLabel::Guess),
 
-                  PathLabel::SystemRegistry);
 
-   // Create the new path objects
 
-   this->LabeledPaths.insert(
 
-     std::make_pair(PathLabel::UserRegistry, cmSearchPath(this)));
 
-   this->LabeledPaths.insert(
 
-     std::make_pair(PathLabel::Builds, cmSearchPath(this)));
 
-   this->LabeledPaths.insert(
 
-     std::make_pair(PathLabel::SystemRegistry, cmSearchPath(this)));
 
- }
 
- bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args)
 
- {
 
-   if (args.empty()) {
 
-     this->SetError("called with incorrect number of arguments");
 
-     return false;
 
-   }
 
-   // Lookup required version of CMake.
 
-   if (cmProp rv =
 
-         this->Makefile->GetDefinition("CMAKE_MINIMUM_REQUIRED_VERSION")) {
 
-     unsigned int v[3] = { 0, 0, 0 };
 
-     sscanf(rv->c_str(), "%u.%u.%u", &v[0], &v[1], &v[2]);
 
-     this->RequiredCMakeVersion = CMake_VERSION_ENCODE(v[0], v[1], v[2]);
 
-   }
 
-   this->DebugMode = ComputeIfDebugModeWanted();
 
-   this->DebugBuffer.clear();
 
-   // Lookup target architecture, if any.
 
-   if (cmProp arch =
 
-         this->Makefile->GetDefinition("CMAKE_LIBRARY_ARCHITECTURE")) {
 
-     this->LibraryArchitecture = *arch;
 
-   }
 
-   // Lookup whether lib32 paths should be used.
 
-   if (this->Makefile->PlatformIs32Bit() &&
 
-       this->Makefile->GetState()->GetGlobalPropertyAsBool(
 
-         "FIND_LIBRARY_USE_LIB32_PATHS")) {
 
-     this->UseLib32Paths = true;
 
-   }
 
-   // Lookup whether lib64 paths should be used.
 
-   if (this->Makefile->PlatformIs64Bit() &&
 
-       this->Makefile->GetState()->GetGlobalPropertyAsBool(
 
-         "FIND_LIBRARY_USE_LIB64_PATHS")) {
 
-     this->UseLib64Paths = true;
 
-   }
 
-   // Lookup whether libx32 paths should be used.
 
-   if (this->Makefile->PlatformIsx32() &&
 
-       this->Makefile->GetState()->GetGlobalPropertyAsBool(
 
-         "FIND_LIBRARY_USE_LIBX32_PATHS")) {
 
-     this->UseLibx32Paths = true;
 
-   }
 
-   // Check if User Package Registry should be disabled
 
-   // The `CMAKE_FIND_USE_PACKAGE_REGISTRY` has
 
-   // priority over the deprecated CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY
 
-   if (cmProp def =
 
-         this->Makefile->GetDefinition("CMAKE_FIND_USE_PACKAGE_REGISTRY")) {
 
-     this->NoUserRegistry = !cmIsOn(*def);
 
-   } else if (this->Makefile->IsOn("CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY")) {
 
-     this->NoUserRegistry = true;
 
-   }
 
-   // Check if System Package Registry should be disabled
 
-   // The `CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY` has
 
-   // priority over the deprecated CMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY
 
-   if (cmProp def = this->Makefile->GetDefinition(
 
-         "CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY")) {
 
-     this->NoSystemRegistry = !cmIsOn(*def);
 
-   } else if (this->Makefile->IsOn(
 
-                "CMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY")) {
 
-     this->NoSystemRegistry = true;
 
-   }
 
-   // Check whether we should resolve symlinks when finding packages
 
-   if (this->Makefile->IsOn("CMAKE_FIND_PACKAGE_RESOLVE_SYMLINKS")) {
 
-     this->UseRealPath = true;
 
-   }
 
-   // Check if Sorting should be enabled
 
-   if (cmProp so =
 
-         this->Makefile->GetDefinition("CMAKE_FIND_PACKAGE_SORT_ORDER")) {
 
-     if (*so == "NAME") {
 
-       this->SortOrder = Name_order;
 
-     } else if (*so == "NATURAL") {
 
-       this->SortOrder = Natural;
 
-     } else {
 
-       this->SortOrder = None;
 
-     }
 
-   }
 
-   if (cmProp sd =
 
-         this->Makefile->GetDefinition("CMAKE_FIND_PACKAGE_SORT_DIRECTION")) {
 
-     this->SortDirection = (*sd == "ASC") ? Asc : Dec;
 
-   }
 
-   // Find what search path locations have been enabled/disable
 
-   this->SelectDefaultSearchModes();
 
-   // Find the current root path mode.
 
-   this->SelectDefaultRootPathMode();
 
-   // Find the current bundle/framework search policy.
 
-   this->SelectDefaultMacMode();
 
-   // Record options.
 
-   this->Name = args[0];
 
-   std::string components;
 
-   const char* components_sep = "";
 
-   std::set<std::string> requiredComponents;
 
-   std::set<std::string> optionalComponents;
 
-   // Always search directly in a generated path.
 
-   this->SearchPathSuffixes.emplace_back();
 
-   // Parse the arguments.
 
-   enum Doing
 
-   {
 
-     DoingNone,
 
-     DoingComponents,
 
-     DoingOptionalComponents,
 
-     DoingNames,
 
-     DoingPaths,
 
-     DoingPathSuffixes,
 
-     DoingConfigs,
 
-     DoingHints
 
-   };
 
-   Doing doing = DoingNone;
 
-   cmsys::RegularExpression version("^[0-9.]+$");
 
-   bool haveVersion = false;
 
-   std::set<unsigned int> configArgs;
 
-   std::set<unsigned int> moduleArgs;
 
-   for (unsigned int i = 1; i < args.size(); ++i) {
 
-     if (args[i] == "QUIET") {
 
-       this->Quiet = true;
 
-       doing = DoingNone;
 
-     } else if (args[i] == "EXACT") {
 
-       this->VersionExact = true;
 
-       doing = DoingNone;
 
-     } else if (args[i] == "MODULE") {
 
-       moduleArgs.insert(i);
 
-       doing = DoingNone;
 
-       // XXX(clang-tidy): https://bugs.llvm.org/show_bug.cgi?id=44165
 
-       // NOLINTNEXTLINE(bugprone-branch-clone)
 
-     } else if (args[i] == "CONFIG") {
 
-       configArgs.insert(i);
 
-       doing = DoingNone;
 
-       // XXX(clang-tidy): https://bugs.llvm.org/show_bug.cgi?id=44165
 
-       // NOLINTNEXTLINE(bugprone-branch-clone)
 
-     } else if (args[i] == "NO_MODULE") {
 
-       configArgs.insert(i);
 
-       doing = DoingNone;
 
-     } else if (args[i] == "REQUIRED") {
 
-       this->Required = true;
 
-       doing = DoingComponents;
 
-     } else if (args[i] == "COMPONENTS") {
 
-       doing = DoingComponents;
 
-     } else if (args[i] == "OPTIONAL_COMPONENTS") {
 
-       doing = DoingOptionalComponents;
 
-     } else if (args[i] == "NAMES") {
 
-       configArgs.insert(i);
 
-       doing = DoingNames;
 
-     } else if (args[i] == "PATHS") {
 
-       configArgs.insert(i);
 
-       doing = DoingPaths;
 
-     } else if (args[i] == "HINTS") {
 
-       configArgs.insert(i);
 
-       doing = DoingHints;
 
-     } else if (args[i] == "PATH_SUFFIXES") {
 
-       configArgs.insert(i);
 
-       doing = DoingPathSuffixes;
 
-     } else if (args[i] == "CONFIGS") {
 
-       configArgs.insert(i);
 
-       doing = DoingConfigs;
 
-     } else if (args[i] == "NO_POLICY_SCOPE") {
 
-       this->PolicyScope = false;
 
-       doing = DoingNone;
 
-     } else if (args[i] == "NO_CMAKE_PACKAGE_REGISTRY") {
 
-       this->NoUserRegistry = true;
 
-       configArgs.insert(i);
 
-       doing = DoingNone;
 
-     } else if (args[i] == "NO_CMAKE_SYSTEM_PACKAGE_REGISTRY") {
 
-       this->NoSystemRegistry = true;
 
-       configArgs.insert(i);
 
-       doing = DoingNone;
 
-       // XXX(clang-tidy): https://bugs.llvm.org/show_bug.cgi?id=44165
 
-       // NOLINTNEXTLINE(bugprone-branch-clone)
 
-     } else if (args[i] == "NO_CMAKE_BUILDS_PATH") {
 
-       // Ignore legacy option.
 
-       configArgs.insert(i);
 
-       doing = DoingNone;
 
-     } else if (this->CheckCommonArgument(args[i])) {
 
-       configArgs.insert(i);
 
-       doing = DoingNone;
 
-     } else if ((doing == DoingComponents) ||
 
-                (doing == DoingOptionalComponents)) {
 
-       // Set a variable telling the find script whether this component
 
-       // is required.
 
-       const char* isRequired = "1";
 
-       if (doing == DoingOptionalComponents) {
 
-         isRequired = "0";
 
-         optionalComponents.insert(args[i]);
 
-       } else {
 
-         requiredComponents.insert(args[i]);
 
-       }
 
-       std::string req_var = this->Name + "_FIND_REQUIRED_" + args[i];
 
-       this->AddFindDefinition(req_var, isRequired);
 
-       // Append to the list of required components.
 
-       components += components_sep;
 
-       components += args[i];
 
-       components_sep = ";";
 
-     } else if (doing == DoingNames) {
 
-       this->Names.push_back(args[i]);
 
-     } else if (doing == DoingPaths) {
 
-       this->UserGuessArgs.push_back(args[i]);
 
-     } else if (doing == DoingHints) {
 
-       this->UserHintsArgs.push_back(args[i]);
 
-     } else if (doing == DoingPathSuffixes) {
 
-       this->AddPathSuffix(args[i]);
 
-     } else if (doing == DoingConfigs) {
 
-       if (args[i].find_first_of(":/\\") != std::string::npos ||
 
-           cmSystemTools::GetFilenameLastExtension(args[i]) != ".cmake") {
 
-         this->SetError(cmStrCat(
 
-           "given CONFIGS option followed by invalid file name \"", args[i],
 
-           "\".  The names given must be file names without "
 
-           "a path and with a \".cmake\" extension."));
 
-         return false;
 
-       }
 
-       this->Configs.push_back(args[i]);
 
-     } else if (!haveVersion && version.find(args[i])) {
 
-       haveVersion = true;
 
-       this->Version = args[i];
 
-     } else {
 
-       this->SetError(
 
-         cmStrCat("called with invalid argument \"", args[i], "\""));
 
-       return false;
 
-     }
 
-   }
 
-   std::vector<std::string> doubledComponents;
 
-   std::set_intersection(requiredComponents.begin(), requiredComponents.end(),
 
-                         optionalComponents.begin(), optionalComponents.end(),
 
-                         std::back_inserter(doubledComponents));
 
-   if (!doubledComponents.empty()) {
 
-     this->SetError(
 
-       cmStrCat("called with components that are both required and "
 
-                "optional:\n",
 
-                cmWrap("  ", doubledComponents, "", "\n"), "\n"));
 
-     return false;
 
-   }
 
-   // Maybe choose one mode exclusively.
 
-   this->UseFindModules = configArgs.empty();
 
-   this->UseConfigFiles = moduleArgs.empty();
 
-   if (!this->UseFindModules && !this->UseConfigFiles) {
 
-     std::ostringstream e;
 
-     e << "given options exclusive to Module mode:\n";
 
-     for (unsigned int si : moduleArgs) {
 
-       e << "  " << args[si] << "\n";
 
-     }
 
-     e << "and options exclusive to Config mode:\n";
 
-     for (unsigned int si : configArgs) {
 
-       e << "  " << args[si] << "\n";
 
-     }
 
-     e << "The options are incompatible.";
 
-     this->SetError(e.str());
 
-     return false;
 
-   }
 
-   // Ignore EXACT with no version.
 
-   if (this->Version.empty() && this->VersionExact) {
 
-     this->VersionExact = false;
 
-     this->Makefile->IssueMessage(
 
-       MessageType::AUTHOR_WARNING,
 
-       "Ignoring EXACT since no version is requested.");
 
-   }
 
-   if (this->Version.empty() || components.empty()) {
 
-     // Check whether we are recursing inside "Find<name>.cmake" within
 
-     // another find_package(<name>) call.
 
-     std::string mod = cmStrCat(this->Name, "_FIND_MODULE");
 
-     if (this->Makefile->IsOn(mod)) {
 
-       if (this->Version.empty()) {
 
-         // Get version information from the outer call if necessary.
 
-         // Requested version string.
 
-         std::string ver = cmStrCat(this->Name, "_FIND_VERSION");
 
-         this->Version = this->Makefile->GetSafeDefinition(ver);
 
-         // Whether an exact version is required.
 
-         std::string exact = cmStrCat(this->Name, "_FIND_VERSION_EXACT");
 
-         this->VersionExact = this->Makefile->IsOn(exact);
 
-       }
 
-       if (components.empty()) {
 
-         std::string components_var = this->Name + "_FIND_COMPONENTS";
 
-         components = this->Makefile->GetSafeDefinition(components_var);
 
-       }
 
-     }
 
-   }
 
-   if (!this->Version.empty()) {
 
-     // Try to parse the version number and store the results that were
 
-     // successfully parsed.
 
-     unsigned int parsed_major;
 
-     unsigned int parsed_minor;
 
-     unsigned int parsed_patch;
 
-     unsigned int parsed_tweak;
 
-     this->VersionCount =
 
-       sscanf(this->Version.c_str(), "%u.%u.%u.%u", &parsed_major,
 
-              &parsed_minor, &parsed_patch, &parsed_tweak);
 
-     switch (this->VersionCount) {
 
-       case 4:
 
-         this->VersionTweak = parsed_tweak;
 
-         CM_FALLTHROUGH;
 
-       case 3:
 
-         this->VersionPatch = parsed_patch;
 
-         CM_FALLTHROUGH;
 
-       case 2:
 
-         this->VersionMinor = parsed_minor;
 
-         CM_FALLTHROUGH;
 
-       case 1:
 
-         this->VersionMajor = parsed_major;
 
-         CM_FALLTHROUGH;
 
-       default:
 
-         break;
 
-     }
 
-   }
 
-   std::string disableFindPackageVar =
 
-     cmStrCat("CMAKE_DISABLE_FIND_PACKAGE_", this->Name);
 
-   if (this->Makefile->IsOn(disableFindPackageVar)) {
 
-     if (this->Required) {
 
-       this->SetError(
 
-         cmStrCat("for module ", this->Name, " called with REQUIRED, but ",
 
-                  disableFindPackageVar,
 
-                  " is enabled. A REQUIRED package cannot be disabled."));
 
-       return false;
 
-     }
 
-     return true;
 
-   }
 
-   {
 
-     // Allocate a PACKAGE_ROOT_PATH for the current find_package call.
 
-     this->Makefile->FindPackageRootPathStack.emplace_back();
 
-     std::vector<std::string>& rootPaths =
 
-       this->Makefile->FindPackageRootPathStack.back();
 
-     // Add root paths from <PackageName>_ROOT CMake and environment variables,
 
-     // subject to CMP0074.
 
-     switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0074)) {
 
-       case cmPolicies::WARN:
 
-         this->Makefile->MaybeWarnCMP0074(this->Name);
 
-         CM_FALLTHROUGH;
 
-       case cmPolicies::OLD:
 
-         // OLD behavior is to ignore the <pkg>_ROOT variables.
 
-         break;
 
-       case cmPolicies::REQUIRED_IF_USED:
 
-       case cmPolicies::REQUIRED_ALWAYS:
 
-         this->Makefile->IssueMessage(
 
-           MessageType::FATAL_ERROR,
 
-           cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0074));
 
-         break;
 
-       case cmPolicies::NEW: {
 
-         // NEW behavior is to honor the <pkg>_ROOT variables.
 
-         std::string const rootVar = this->Name + "_ROOT";
 
-         this->Makefile->GetDefExpandList(rootVar, rootPaths, false);
 
-         cmSystemTools::GetPath(rootPaths, rootVar.c_str());
 
-       } break;
 
-     }
 
-   }
 
-   this->SetModuleVariables(components);
 
-   // See if there is a Find<PackageName>.cmake module.
 
-   bool loadedPackage = false;
 
-   if (this->Makefile->IsOn("CMAKE_FIND_PACKAGE_PREFER_CONFIG")) {
 
-     if (this->UseConfigFiles && this->FindPackageUsingConfigMode()) {
 
-       loadedPackage = true;
 
-     } else {
 
-       if (this->FindPackageUsingModuleMode()) {
 
-         loadedPackage = true;
 
-       } else {
 
-         // The package was not loaded. Report errors.
 
-         if (HandlePackageMode(HandlePackageModeType::Module)) {
 
-           loadedPackage = true;
 
-         }
 
-       }
 
-     }
 
-   } else {
 
-     if (this->UseFindModules && this->FindPackageUsingModuleMode()) {
 
-       loadedPackage = true;
 
-     } else {
 
-       // Handle CMAKE_FIND_PACKAGE_WARN_NO_MODULE (warn when CONFIG mode is
 
-       // implicitly assumed)
 
-       if (this->UseFindModules && this->UseConfigFiles &&
 
-           this->Makefile->IsOn("CMAKE_FIND_PACKAGE_WARN_NO_MODULE")) {
 
-         std::ostringstream aw;
 
-         if (this->RequiredCMakeVersion >= CMake_VERSION_ENCODE(2, 8, 8)) {
 
-           aw << "find_package called without either MODULE or CONFIG option "
 
-                 "and "
 
-                 "no Find"
 
-              << this->Name
 
-              << ".cmake module is in CMAKE_MODULE_PATH.  "
 
-                 "Add MODULE to exclusively request Module mode and fail if "
 
-                 "Find"
 
-              << this->Name
 
-              << ".cmake is missing.  "
 
-                 "Add CONFIG to exclusively request Config mode and search for "
 
-                 "a "
 
-                 "package configuration file provided by "
 
-              << this->Name << " (" << this->Name << "Config.cmake or "
 
-              << cmSystemTools::LowerCase(this->Name) << "-config.cmake).  ";
 
-         } else {
 
-           aw << "find_package called without NO_MODULE option and no "
 
-                 "Find"
 
-              << this->Name
 
-              << ".cmake module is in CMAKE_MODULE_PATH.  "
 
-                 "Add NO_MODULE to exclusively request Config mode and search "
 
-                 "for a "
 
-                 "package configuration file provided by "
 
-              << this->Name << " (" << this->Name << "Config.cmake or "
 
-              << cmSystemTools::LowerCase(this->Name)
 
-              << "-config.cmake).  "
 
-                 "Otherwise make Find"
 
-              << this->Name
 
-              << ".cmake available in "
 
-                 "CMAKE_MODULE_PATH.";
 
-         }
 
-         aw << "\n"
 
-               "(Variable CMAKE_FIND_PACKAGE_WARN_NO_MODULE enabled this "
 
-               "warning.)";
 
-         this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, aw.str());
 
-       }
 
-       if (this->FindPackageUsingConfigMode()) {
 
-         loadedPackage = true;
 
-       }
 
-     }
 
-   }
 
-   this->AppendSuccessInformation();
 
-   return loadedPackage;
 
- }
 
- bool cmFindPackageCommand::FindPackageUsingModuleMode()
 
- {
 
-   bool foundModule = false;
 
-   if (!this->FindModule(foundModule)) {
 
-     return false;
 
-   }
 
-   return foundModule;
 
- }
 
- bool cmFindPackageCommand::FindPackageUsingConfigMode()
 
- {
 
-   this->Variable = cmStrCat(this->Name, "_DIR");
 
-   // Add the default name.
 
-   if (this->Names.empty()) {
 
-     this->Names.push_back(this->Name);
 
-   }
 
-   // Add the default configs.
 
-   if (this->Configs.empty()) {
 
-     for (std::string const& n : this->Names) {
 
-       std::string config = cmStrCat(n, "Config.cmake");
 
-       this->Configs.push_back(config);
 
-       config = cmStrCat(cmSystemTools::LowerCase(n), "-config.cmake");
 
-       this->Configs.push_back(std::move(config));
 
-     }
 
-   }
 
-   // get igonored paths from vars and reroot them.
 
-   std::vector<std::string> ignored;
 
-   this->GetIgnoredPaths(ignored);
 
-   this->RerootPaths(ignored);
 
-   // Construct a set of ignored paths
 
-   this->IgnoredPaths.clear();
 
-   this->IgnoredPaths.insert(ignored.begin(), ignored.end());
 
-   // Find and load the package.
 
-   return this->HandlePackageMode(HandlePackageModeType::Config);
 
- }
 
- void cmFindPackageCommand::SetVersionVariables(
 
-   const std::function<void(const std::string&, cm::string_view)>&
 
-     addDefinition,
 
-   const std::string& prefix, const std::string& version, unsigned int count,
 
-   unsigned int major, unsigned int minor, unsigned int patch,
 
-   unsigned int tweak)
 
- {
 
-   addDefinition(prefix, version);
 
-   char buf[64];
 
-   sprintf(buf, "%u", major);
 
-   addDefinition(prefix + "_MAJOR", buf);
 
-   sprintf(buf, "%u", minor);
 
-   addDefinition(prefix + "_MINOR", buf);
 
-   sprintf(buf, "%u", patch);
 
-   addDefinition(prefix + "_PATCH", buf);
 
-   sprintf(buf, "%u", tweak);
 
-   addDefinition(prefix + "_TWEAK", buf);
 
-   sprintf(buf, "%u", count);
 
-   addDefinition(prefix + "_COUNT", buf);
 
- }
 
- void cmFindPackageCommand::SetModuleVariables(const std::string& components)
 
- {
 
-   this->AddFindDefinition("CMAKE_FIND_PACKAGE_NAME", this->Name);
 
-   // Store the list of components.
 
-   std::string components_var = this->Name + "_FIND_COMPONENTS";
 
-   this->AddFindDefinition(components_var, components);
 
-   if (this->Quiet) {
 
-     // Tell the module that is about to be read that it should find
 
-     // quietly.
 
-     std::string quietly = cmStrCat(this->Name, "_FIND_QUIETLY");
 
-     this->AddFindDefinition(quietly, "1"_s);
 
-   }
 
-   if (this->Required) {
 
-     // Tell the module that is about to be read that it should report
 
-     // a fatal error if the package is not found.
 
-     std::string req = cmStrCat(this->Name, "_FIND_REQUIRED");
 
-     this->AddFindDefinition(req, "1"_s);
 
-   }
 
-   if (!this->Version.empty()) {
 
-     // Tell the module that is about to be read what version of the
 
-     // package has been requested.
 
-     auto addDefinition = [this](const std::string& variable,
 
-                                 cm::string_view value) {
 
-       this->AddFindDefinition(variable, value);
 
-     };
 
-     std::string ver = cmStrCat(this->Name, "_FIND_VERSION");
 
-     this->SetVersionVariables(addDefinition, ver, this->Version,
 
-                               this->VersionCount, this->VersionMajor,
 
-                               this->VersionMinor, this->VersionPatch,
 
-                               this->VersionTweak);
 
-     // Tell the module whether an exact version has been requested.
 
-     std::string exact = cmStrCat(this->Name, "_FIND_VERSION_EXACT");
 
-     this->AddFindDefinition(exact, this->VersionExact ? "1"_s : "0"_s);
 
-   }
 
- }
 
- void cmFindPackageCommand::AddFindDefinition(const std::string& var,
 
-                                              cm::string_view value)
 
- {
 
-   if (cmProp old = this->Makefile->GetDefinition(var)) {
 
-     this->OriginalDefs[var].exists = true;
 
-     this->OriginalDefs[var].value = *old;
 
-   } else {
 
-     this->OriginalDefs[var].exists = false;
 
-   }
 
-   this->Makefile->AddDefinition(var, value);
 
- }
 
- void cmFindPackageCommand::RestoreFindDefinitions()
 
- {
 
-   for (auto const& i : this->OriginalDefs) {
 
-     OriginalDef const& od = i.second;
 
-     if (od.exists) {
 
-       this->Makefile->AddDefinition(i.first, od.value);
 
-     } else {
 
-       this->Makefile->RemoveDefinition(i.first);
 
-     }
 
-   }
 
- }
 
- bool cmFindPackageCommand::FindModule(bool& found)
 
- {
 
-   std::string module = cmStrCat("Find", this->Name, ".cmake");
 
-   bool system = false;
 
-   std::string debugBuffer =
 
-     cmStrCat("find_package considered the following paths for ", this->Name,
 
-              ".cmake\n");
 
-   std::string mfile = this->Makefile->GetModulesFile(
 
-     module, system, this->DebugMode, debugBuffer);
 
-   if (this->DebugMode) {
 
-     if (mfile.empty()) {
 
-       debugBuffer = cmStrCat(debugBuffer, "The file was not found.");
 
-     } else {
 
-       debugBuffer =
 
-         cmStrCat(debugBuffer, "The file was found at\n  ", mfile, "\n");
 
-     }
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
-   if (!mfile.empty()) {
 
-     if (system) {
 
-       auto it = this->DeprecatedFindModules.find(this->Name);
 
-       if (it != this->DeprecatedFindModules.end()) {
 
-         cmPolicies::PolicyStatus status =
 
-           this->Makefile->GetPolicyStatus(it->second);
 
-         switch (status) {
 
-           case cmPolicies::WARN: {
 
-             this->Makefile->IssueMessage(
 
-               MessageType::AUTHOR_WARNING,
 
-               cmStrCat(cmPolicies::GetPolicyWarning(it->second), "\n"));
 
-             CM_FALLTHROUGH;
 
-           }
 
-           case cmPolicies::OLD:
 
-             break;
 
-           case cmPolicies::REQUIRED_IF_USED:
 
-           case cmPolicies::REQUIRED_ALWAYS:
 
-           case cmPolicies::NEW:
 
-             return true;
 
-         }
 
-       }
 
-     }
 
-     // Load the module we found, and set "<name>_FIND_MODULE" to true
 
-     // while inside it.
 
-     found = true;
 
-     std::string var = cmStrCat(this->Name, "_FIND_MODULE");
 
-     this->Makefile->AddDefinition(var, "1");
 
-     bool result = this->ReadListFile(mfile, DoPolicyScope);
 
-     this->Makefile->RemoveDefinition(var);
 
-     return result;
 
-   }
 
-   return true;
 
- }
 
- bool cmFindPackageCommand::HandlePackageMode(
 
-   HandlePackageModeType handlePackageModeType)
 
- {
 
-   this->ConsideredConfigs.clear();
 
-   // Try to find the config file.
 
-   cmProp def = this->Makefile->GetDefinition(this->Variable);
 
-   // Try to load the config file if the directory is known
 
-   bool fileFound = false;
 
-   if (this->UseConfigFiles) {
 
-     if (!cmIsOff(def)) {
 
-       // Get the directory from the variable value.
 
-       std::string dir = *def;
 
-       cmSystemTools::ConvertToUnixSlashes(dir);
 
-       // Treat relative paths with respect to the current source dir.
 
-       if (!cmSystemTools::FileIsFullPath(dir)) {
 
-         dir = "/" + dir;
 
-         dir = this->Makefile->GetCurrentSourceDirectory() + dir;
 
-       }
 
-       // The file location was cached.  Look for the correct file.
 
-       std::string file;
 
-       if (this->FindConfigFile(dir, file)) {
 
-         this->FileFound = file;
 
-         fileFound = true;
 
-       }
 
-       def = this->Makefile->GetDefinition(this->Variable);
 
-     }
 
-     // Search for the config file if it is not already found.
 
-     if (cmIsOff(def) || !fileFound) {
 
-       fileFound = this->FindConfig();
 
-     }
 
-     // Sanity check.
 
-     if (fileFound && this->FileFound.empty()) {
 
-       this->Makefile->IssueMessage(
 
-         MessageType::INTERNAL_ERROR,
 
-         "fileFound is true but FileFound is empty!");
 
-       fileFound = false;
 
-     }
 
-   }
 
-   std::string foundVar = cmStrCat(this->Name, "_FOUND");
 
-   std::string notFoundMessageVar = cmStrCat(this->Name, "_NOT_FOUND_MESSAGE");
 
-   std::string notFoundMessage;
 
-   // If the directory for the config file was found, try to read the file.
 
-   bool result = true;
 
-   bool found = false;
 
-   bool configFileSetFOUNDFalse = false;
 
-   if (fileFound) {
 
-     if (this->Makefile->IsDefinitionSet(foundVar) &&
 
-         !this->Makefile->IsOn(foundVar)) {
 
-       // by removing Foo_FOUND here if it is FALSE, we don't really change
 
-       // the situation for the Config file which is about to be included,
 
-       // but we make it possible to detect later on whether the Config file
 
-       // has set Foo_FOUND to FALSE itself:
 
-       this->Makefile->RemoveDefinition(foundVar);
 
-     }
 
-     this->Makefile->RemoveDefinition(notFoundMessageVar);
 
-     // Set the version variables before loading the config file.
 
-     // It may override them.
 
-     this->StoreVersionFound();
 
-     // Parse the configuration file.
 
-     if (this->ReadListFile(this->FileFound, DoPolicyScope)) {
 
-       // The package has been found.
 
-       found = true;
 
-       // Check whether the Config file has set Foo_FOUND to FALSE:
 
-       if (this->Makefile->IsDefinitionSet(foundVar) &&
 
-           !this->Makefile->IsOn(foundVar)) {
 
-         // we get here if the Config file has set Foo_FOUND actively to FALSE
 
-         found = false;
 
-         configFileSetFOUNDFalse = true;
 
-         notFoundMessage =
 
-           this->Makefile->GetSafeDefinition(notFoundMessageVar);
 
-       }
 
-     } else {
 
-       // The configuration file is invalid.
 
-       result = false;
 
-     }
 
-   }
 
-   if (this->UseFindModules && !found &&
 
-       handlePackageModeType == HandlePackageModeType::Config &&
 
-       this->Makefile->IsOn("CMAKE_FIND_PACKAGE_PREFER_CONFIG")) {
 
-     // Config mode failed. Allow Module case.
 
-     result = false;
 
-   }
 
-   if (this->DebugMode) {
 
-     this->DebugMessage(this->DebugBuffer);
 
-     this->DebugBuffer.clear();
 
-   }
 
-   // package not found
 
-   if (result && !found) {
 
-     // warn if package required or neither quiet nor in config mode
 
-     if (this->Required ||
 
-         !(this->Quiet ||
 
-           (this->UseConfigFiles && !this->UseFindModules &&
 
-            this->ConsideredConfigs.empty()))) {
 
-       // The variable is not set.
 
-       std::ostringstream e;
 
-       std::ostringstream aw;
 
-       if (configFileSetFOUNDFalse) {
 
-         /* clang-format off */
 
-         e << "Found package configuration file:\n"
 
-           "  " << this->FileFound << "\n"
 
-           "but it set " << foundVar << " to FALSE so package \"" <<
 
-           this->Name << "\" is considered to be NOT FOUND.";
 
-         /* clang-format on */
 
-         if (!notFoundMessage.empty()) {
 
-           e << " Reason given by package: \n" << notFoundMessage << "\n";
 
-         }
 
-       }
 
-       // If there are files in ConsideredConfigs, it means that FooConfig.cmake
 
-       // have been found, but they didn't have appropriate versions.
 
-       else if (!this->ConsideredConfigs.empty()) {
 
-         auto duplicate_end = cmRemoveDuplicates(this->ConsideredConfigs);
 
-         e << "Could not find a configuration file for package \"" << this->Name
 
-           << "\" that "
 
-           << (this->VersionExact ? "exactly matches" : "is compatible with")
 
-           << " requested version \"" << this->Version << "\".\n"
 
-           << "The following configuration files were considered but not "
 
-              "accepted:\n";
 
-         for (ConfigFileInfo const& info :
 
-              cmMakeRange(this->ConsideredConfigs.cbegin(), duplicate_end)) {
 
-           e << "  " << info.filename << ", version: " << info.version << "\n";
 
-         }
 
-       } else {
 
-         std::string requestedVersionString;
 
-         if (!this->Version.empty()) {
 
-           requestedVersionString =
 
-             cmStrCat(" (requested version ", this->Version, ')');
 
-         }
 
-         if (this->UseConfigFiles) {
 
-           if (this->UseFindModules) {
 
-             e << "By not providing \"Find" << this->Name
 
-               << ".cmake\" in "
 
-                  "CMAKE_MODULE_PATH this project has asked CMake to find a "
 
-                  "package configuration file provided by \""
 
-               << this->Name
 
-               << "\", "
 
-                  "but CMake did not find one.\n";
 
-           }
 
-           if (this->Configs.size() == 1) {
 
-             e << "Could not find a package configuration file named \""
 
-               << this->Configs[0] << "\" provided by package \"" << this->Name
 
-               << "\"" << requestedVersionString << ".\n";
 
-           } else {
 
-             e << "Could not find a package configuration file provided by \""
 
-               << this->Name << "\"" << requestedVersionString
 
-               << " with any of the following names:\n"
 
-               << cmWrap("  ", this->Configs, "", "\n") << "\n";
 
-           }
 
-           e << "Add the installation prefix of \"" << this->Name
 
-             << "\" to "
 
-                "CMAKE_PREFIX_PATH or set \""
 
-             << this->Variable
 
-             << "\" to a "
 
-                "directory containing one of the above files. "
 
-                "If \""
 
-             << this->Name
 
-             << "\" provides a separate development "
 
-                "package or SDK, be sure it has been installed.";
 
-         } else // if(!this->UseFindModules && !this->UseConfigFiles)
 
-         {
 
-           e << "No \"Find" << this->Name << ".cmake\" found in "
 
-             << "CMAKE_MODULE_PATH.";
 
-           aw
 
-             << "Find" << this->Name
 
-             << ".cmake must either be part of this "
 
-                "project itself, in this case adjust CMAKE_MODULE_PATH so that "
 
-                "it points to the correct location inside its source tree.\n"
 
-                "Or it must be installed by a package which has already been "
 
-                "found via find_package().  In this case make sure that "
 
-                "package has indeed been found and adjust CMAKE_MODULE_PATH to "
 
-                "contain the location where that package has installed "
 
-                "Find"
 
-             << this->Name
 
-             << ".cmake.  This must be a location "
 
-                "provided by that package.  This error in general means that "
 
-                "the buildsystem of this project is relying on a Find-module "
 
-                "without ensuring that it is actually available.\n";
 
-         }
 
-       }
 
-       this->Makefile->IssueMessage(this->Required ? MessageType::FATAL_ERROR
 
-                                                   : MessageType::WARNING,
 
-                                    e.str());
 
-       if (this->Required) {
 
-         cmSystemTools::SetFatalErrorOccured();
 
-       }
 
-       if (!aw.str().empty()) {
 
-         this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, aw.str());
 
-       }
 
-     }
 
-     // output result if in config mode but not in quiet mode
 
-     else if (!this->Quiet) {
 
-       this->Makefile->DisplayStatus(cmStrCat("Could NOT find ", this->Name,
 
-                                              " (missing: ", this->Name,
 
-                                              "_DIR)"),
 
-                                     -1);
 
-     }
 
-   }
 
-   // Set a variable marking whether the package was found.
 
-   this->Makefile->AddDefinition(foundVar, found ? "1" : "0");
 
-   // Set a variable naming the configuration file that was found.
 
-   std::string fileVar = cmStrCat(this->Name, "_CONFIG");
 
-   if (found) {
 
-     this->Makefile->AddDefinition(fileVar, this->FileFound);
 
-   } else {
 
-     this->Makefile->RemoveDefinition(fileVar);
 
-   }
 
-   std::string consideredConfigsVar =
 
-     cmStrCat(this->Name, "_CONSIDERED_CONFIGS");
 
-   std::string consideredVersionsVar =
 
-     cmStrCat(this->Name, "_CONSIDERED_VERSIONS");
 
-   std::string consideredConfigFiles;
 
-   std::string consideredVersions;
 
-   const char* sep = "";
 
-   for (ConfigFileInfo const& i : this->ConsideredConfigs) {
 
-     consideredConfigFiles += sep;
 
-     consideredVersions += sep;
 
-     consideredConfigFiles += i.filename;
 
-     consideredVersions += i.version;
 
-     sep = ";";
 
-   }
 
-   this->Makefile->AddDefinition(consideredConfigsVar, consideredConfigFiles);
 
-   this->Makefile->AddDefinition(consideredVersionsVar, consideredVersions);
 
-   return result;
 
- }
 
- bool cmFindPackageCommand::FindConfig()
 
- {
 
-   // Compute the set of search prefixes.
 
-   this->ComputePrefixes();
 
-   // Look for the project's configuration file.
 
-   bool found = false;
 
-   if (this->DebugMode) {
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer,
 
-                                  "find_package considered the following "
 
-                                  "locations for the Config module:\n");
 
-   }
 
-   // Search for frameworks.
 
-   if (!found && (this->SearchFrameworkFirst || this->SearchFrameworkOnly)) {
 
-     found = this->FindFrameworkConfig();
 
-   }
 
-   // Search for apps.
 
-   if (!found && (this->SearchAppBundleFirst || this->SearchAppBundleOnly)) {
 
-     found = this->FindAppBundleConfig();
 
-   }
 
-   // Search prefixes.
 
-   if (!found && !(this->SearchFrameworkOnly || this->SearchAppBundleOnly)) {
 
-     found = this->FindPrefixedConfig();
 
-   }
 
-   // Search for frameworks.
 
-   if (!found && this->SearchFrameworkLast) {
 
-     found = this->FindFrameworkConfig();
 
-   }
 
-   // Search for apps.
 
-   if (!found && this->SearchAppBundleLast) {
 
-     found = this->FindAppBundleConfig();
 
-   }
 
-   if (this->DebugMode) {
 
-     if (found) {
 
-       this->DebugBuffer = cmStrCat(
 
-         this->DebugBuffer, "The file was found at\n  ", this->FileFound, "\n");
 
-     } else {
 
-       this->DebugBuffer =
 
-         cmStrCat(this->DebugBuffer, "The file was not found.\n");
 
-     }
 
-   }
 
-   // Store the entry in the cache so it can be set by the user.
 
-   std::string init;
 
-   if (found) {
 
-     init = cmSystemTools::GetFilenamePath(this->FileFound);
 
-   } else {
 
-     init = this->Variable + "-NOTFOUND";
 
-   }
 
-   std::string help =
 
-     cmStrCat("The directory containing a CMake configuration file for ",
 
-              this->Name, '.');
 
-   // We force the value since we do not get here if it was already set.
 
-   this->Makefile->AddCacheDefinition(this->Variable, init, help.c_str(),
 
-                                      cmStateEnums::PATH, true);
 
-   return found;
 
- }
 
- bool cmFindPackageCommand::FindPrefixedConfig()
 
- {
 
-   std::vector<std::string> const& prefixes = this->SearchPaths;
 
-   for (std::string const& p : prefixes) {
 
-     if (this->SearchPrefix(p)) {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmFindPackageCommand::FindFrameworkConfig()
 
- {
 
-   std::vector<std::string> const& prefixes = this->SearchPaths;
 
-   for (std::string const& p : prefixes) {
 
-     if (this->SearchFrameworkPrefix(p)) {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmFindPackageCommand::FindAppBundleConfig()
 
- {
 
-   std::vector<std::string> const& prefixes = this->SearchPaths;
 
-   for (std::string const& p : prefixes) {
 
-     if (this->SearchAppBundlePrefix(p)) {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmFindPackageCommand::ReadListFile(const std::string& f,
 
-                                         PolicyScopeRule psr)
 
- {
 
-   const bool noPolicyScope = !this->PolicyScope || psr == NoPolicyScope;
 
-   if (this->Makefile->ReadDependentFile(f, noPolicyScope)) {
 
-     return true;
 
-   }
 
-   std::string e = cmStrCat("Error reading CMake code from \"", f, "\".");
 
-   this->SetError(e);
 
-   return false;
 
- }
 
- void cmFindPackageCommand::AppendToFoundProperty(bool found)
 
- {
 
-   std::vector<std::string> foundContents;
 
-   cmProp foundProp =
 
-     this->Makefile->GetState()->GetGlobalProperty("PACKAGES_FOUND");
 
-   if (cmNonempty(foundProp)) {
 
-     cmExpandList(*foundProp, foundContents, false);
 
-     auto nameIt =
 
-       std::find(foundContents.begin(), foundContents.end(), this->Name);
 
-     if (nameIt != foundContents.end()) {
 
-       foundContents.erase(nameIt);
 
-     }
 
-   }
 
-   std::vector<std::string> notFoundContents;
 
-   cmProp notFoundProp =
 
-     this->Makefile->GetState()->GetGlobalProperty("PACKAGES_NOT_FOUND");
 
-   if (cmNonempty(notFoundProp)) {
 
-     cmExpandList(*notFoundProp, notFoundContents, false);
 
-     auto nameIt =
 
-       std::find(notFoundContents.begin(), notFoundContents.end(), this->Name);
 
-     if (nameIt != notFoundContents.end()) {
 
-       notFoundContents.erase(nameIt);
 
-     }
 
-   }
 
-   if (found) {
 
-     foundContents.push_back(this->Name);
 
-   } else {
 
-     notFoundContents.push_back(this->Name);
 
-   }
 
-   std::string tmp = cmJoin(foundContents, ";");
 
-   this->Makefile->GetState()->SetGlobalProperty("PACKAGES_FOUND", tmp.c_str());
 
-   tmp = cmJoin(notFoundContents, ";");
 
-   this->Makefile->GetState()->SetGlobalProperty("PACKAGES_NOT_FOUND",
 
-                                                 tmp.c_str());
 
- }
 
- void cmFindPackageCommand::AppendSuccessInformation()
 
- {
 
-   {
 
-     std::string transitivePropName =
 
-       cmStrCat("_CMAKE_", this->Name, "_TRANSITIVE_DEPENDENCY");
 
-     this->Makefile->GetState()->SetGlobalProperty(transitivePropName, "False");
 
-   }
 
-   std::string found = cmStrCat(this->Name, "_FOUND");
 
-   std::string upperFound = cmSystemTools::UpperCase(found);
 
-   bool upperResult = this->Makefile->IsOn(upperFound);
 
-   bool result = this->Makefile->IsOn(found);
 
-   bool packageFound = (result || upperResult);
 
-   this->AppendToFoundProperty(packageFound);
 
-   // Record whether the find was quiet or not, so this can be used
 
-   // e.g. in FeatureSummary.cmake
 
-   std::string quietInfoPropName = cmStrCat("_CMAKE_", this->Name, "_QUIET");
 
-   this->Makefile->GetState()->SetGlobalProperty(
 
-     quietInfoPropName, this->Quiet ? "TRUE" : "FALSE");
 
-   // set a global property to record the required version of this package
 
-   std::string versionInfoPropName =
 
-     cmStrCat("_CMAKE_", this->Name, "_REQUIRED_VERSION");
 
-   std::string versionInfo;
 
-   if (!this->Version.empty()) {
 
-     versionInfo =
 
-       cmStrCat(this->VersionExact ? "==" : ">=", ' ', this->Version);
 
-   }
 
-   this->Makefile->GetState()->SetGlobalProperty(versionInfoPropName,
 
-                                                 versionInfo.c_str());
 
-   if (this->Required) {
 
-     std::string requiredInfoPropName =
 
-       cmStrCat("_CMAKE_", this->Name, "_TYPE");
 
-     this->Makefile->GetState()->SetGlobalProperty(requiredInfoPropName,
 
-                                                   "REQUIRED");
 
-   }
 
-   // Restore original state of "_FIND_" variables we set.
 
-   this->RestoreFindDefinitions();
 
-   // Pop the package stack
 
-   this->Makefile->FindPackageRootPathStack.pop_back();
 
- }
 
- inline std::size_t collectPathsForDebug(std::string& buffer,
 
-                                         cmSearchPath const& searchPath,
 
-                                         std::size_t startIndex = 0)
 
- {
 
-   const auto& paths = searchPath.GetPaths();
 
-   if (paths.empty()) {
 
-     buffer += "  none";
 
-     return 0;
 
-   }
 
-   for (std::size_t i = startIndex; i < paths.size(); i++) {
 
-     buffer += "  " + paths[i] + "\n";
 
-   }
 
-   return paths.size();
 
- }
 
- void cmFindPackageCommand::ComputePrefixes()
 
- {
 
-   if (!this->NoDefaultPath) {
 
-     if (!this->NoPackageRootPath) {
 
-       this->FillPrefixesPackageRoot();
 
-     }
 
-     if (!this->NoCMakePath) {
 
-       this->FillPrefixesCMakeVariable();
 
-     }
 
-     if (!this->NoCMakeEnvironmentPath) {
 
-       this->FillPrefixesCMakeEnvironment();
 
-     }
 
-   }
 
-   this->FillPrefixesUserHints();
 
-   if (!this->NoDefaultPath) {
 
-     if (!this->NoSystemEnvironmentPath) {
 
-       this->FillPrefixesSystemEnvironment();
 
-     }
 
-     if (!this->NoUserRegistry) {
 
-       this->FillPrefixesUserRegistry();
 
-     }
 
-     if (!this->NoCMakeSystemPath) {
 
-       this->FillPrefixesCMakeSystemVariable();
 
-     }
 
-     if (!this->NoSystemRegistry) {
 
-       this->FillPrefixesSystemRegistry();
 
-     }
 
-   }
 
-   this->FillPrefixesUserGuess();
 
-   this->ComputeFinalPaths();
 
- }
 
- void cmFindPackageCommand::FillPrefixesPackageRoot()
 
- {
 
-   cmSearchPath& paths = this->LabeledPaths[PathLabel::PackageRoot];
 
-   // Add the PACKAGE_ROOT_PATH from each enclosing find_package call.
 
-   for (auto pkgPaths = this->Makefile->FindPackageRootPathStack.rbegin();
 
-        pkgPaths != this->Makefile->FindPackageRootPathStack.rend();
 
-        ++pkgPaths) {
 
-     for (std::string const& path : *pkgPaths) {
 
-       paths.AddPath(path);
 
-     }
 
-   }
 
-   if (this->DebugMode) {
 
-     std::string debugBuffer = "<PackageName>_ROOT CMake variable "
 
-                               "[CMAKE_FIND_USE_PACKAGE_ROOT_PATH].\n";
 
-     collectPathsForDebug(debugBuffer, paths);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- void cmFindPackageCommand::FillPrefixesCMakeEnvironment()
 
- {
 
-   cmSearchPath& paths = this->LabeledPaths[PathLabel::CMakeEnvironment];
 
-   std::string debugBuffer;
 
-   std::size_t debugOffset = 0;
 
-   // Check the environment variable with the same name as the cache
 
-   // entry.
 
-   paths.AddEnvPath(this->Variable);
 
-   if (this->DebugMode) {
 
-     debugBuffer = cmStrCat("Env variable ", this->Variable,
 
-                            " [CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH].\n");
 
-     debugOffset = collectPathsForDebug(debugBuffer, paths);
 
-   }
 
-   // And now the general CMake environment variables
 
-   paths.AddEnvPath("CMAKE_PREFIX_PATH");
 
-   if (this->DebugMode) {
 
-     debugBuffer = cmStrCat(debugBuffer,
 
-                            "\nCMAKE_PREFIX_PATH env variable "
 
-                            "[CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH].\n");
 
-     debugOffset = collectPathsForDebug(debugBuffer, paths, debugOffset);
 
-   }
 
-   paths.AddEnvPath("CMAKE_FRAMEWORK_PATH");
 
-   paths.AddEnvPath("CMAKE_APPBUNDLE_PATH");
 
-   if (this->DebugMode) {
 
-     debugBuffer =
 
-       cmStrCat(debugBuffer,
 
-                "\nCMAKE_FRAMEWORK_PATH and CMAKE_APPBUNDLE_PATH env "
 
-                "variables [CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH].\n");
 
-     collectPathsForDebug(debugBuffer, paths, debugOffset);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- void cmFindPackageCommand::FillPrefixesCMakeVariable()
 
- {
 
-   cmSearchPath& paths = this->LabeledPaths[PathLabel::CMake];
 
-   std::string debugBuffer;
 
-   std::size_t debugOffset = 0;
 
-   paths.AddCMakePath("CMAKE_PREFIX_PATH");
 
-   if (this->DebugMode) {
 
-     debugBuffer = "CMAKE_PREFIX_PATH variable [CMAKE_FIND_USE_CMAKE_PATH].\n";
 
-     debugOffset = collectPathsForDebug(debugBuffer, paths);
 
-   }
 
-   paths.AddCMakePath("CMAKE_FRAMEWORK_PATH");
 
-   paths.AddCMakePath("CMAKE_APPBUNDLE_PATH");
 
-   if (this->DebugMode) {
 
-     debugBuffer =
 
-       cmStrCat(debugBuffer,
 
-                "\nCMAKE_FRAMEWORK_PATH and CMAKE_APPBUNDLE_PATH variables "
 
-                "[CMAKE_FIND_USE_CMAKE_PATH].\n");
 
-     collectPathsForDebug(debugBuffer, paths, debugOffset);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- void cmFindPackageCommand::FillPrefixesSystemEnvironment()
 
- {
 
-   cmSearchPath& paths = this->LabeledPaths[PathLabel::SystemEnvironment];
 
-   // Use the system search path to generate prefixes.
 
-   // Relative paths are interpreted with respect to the current
 
-   // working directory.
 
-   std::vector<std::string> tmp;
 
-   cmSystemTools::GetPath(tmp);
 
-   for (std::string const& i : tmp) {
 
-     // If the path is a PREFIX/bin case then add its parent instead.
 
-     if ((cmHasLiteralSuffix(i, "/bin")) || (cmHasLiteralSuffix(i, "/sbin"))) {
 
-       paths.AddPath(cmSystemTools::GetFilenamePath(i));
 
-     } else {
 
-       paths.AddPath(i);
 
-     }
 
-   }
 
-   if (this->DebugMode) {
 
-     std::string debugBuffer = "Standard system environment variables "
 
-                               "[CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH].\n";
 
-     collectPathsForDebug(debugBuffer, paths);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- void cmFindPackageCommand::FillPrefixesUserRegistry()
 
- {
 
- #if defined(_WIN32) && !defined(__CYGWIN__)
 
-   this->LoadPackageRegistryWinUser();
 
- #elif defined(__HAIKU__)
 
-   char dir[B_PATH_NAME_LENGTH];
 
-   if (find_directory(B_USER_SETTINGS_DIRECTORY, -1, false, dir, sizeof(dir)) ==
 
-       B_OK) {
 
-     std::string fname = cmStrCat(dir, "/cmake/packages/", Name);
 
-     this->LoadPackageRegistryDir(fname,
 
-                                  this->LabeledPaths[PathLabel::UserRegistry]);
 
-   }
 
- #else
 
-   std::string dir;
 
-   if (cmSystemTools::GetEnv("HOME", dir)) {
 
-     dir += "/.cmake/packages/";
 
-     dir += this->Name;
 
-     this->LoadPackageRegistryDir(dir,
 
-                                  this->LabeledPaths[PathLabel::UserRegistry]);
 
-   }
 
- #endif
 
-   if (this->DebugMode) {
 
-     std::string debugBuffer =
 
-       "CMake User Package Registry [CMAKE_FIND_USE_PACKAGE_REGISTRY].\n";
 
-     collectPathsForDebug(debugBuffer,
 
-                          this->LabeledPaths[PathLabel::UserRegistry]);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- void cmFindPackageCommand::FillPrefixesSystemRegistry()
 
- {
 
-   if (this->NoSystemRegistry || this->NoDefaultPath) {
 
-     return;
 
-   }
 
- #if defined(_WIN32) && !defined(__CYGWIN__)
 
-   this->LoadPackageRegistryWinSystem();
 
- #endif
 
-   if (this->DebugMode) {
 
-     std::string debugBuffer =
 
-       "CMake System Package Registry "
 
-       "[CMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY].\n";
 
-     collectPathsForDebug(debugBuffer,
 
-                          this->LabeledPaths[PathLabel::SystemRegistry]);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- #if defined(_WIN32) && !defined(__CYGWIN__)
 
- #  include <windows.h>
 
- // http://msdn.microsoft.com/en-us/library/aa384253%28v=vs.85%29.aspx
 
- #  if !defined(KEY_WOW64_32KEY)
 
- #    define KEY_WOW64_32KEY 0x0200
 
- #  endif
 
- #  if !defined(KEY_WOW64_64KEY)
 
- #    define KEY_WOW64_64KEY 0x0100
 
- #  endif
 
- void cmFindPackageCommand::LoadPackageRegistryWinUser()
 
- {
 
-   // HKEY_CURRENT_USER\\Software shares 32-bit and 64-bit views.
 
-   this->LoadPackageRegistryWin(true, 0,
 
-                                this->LabeledPaths[PathLabel::UserRegistry]);
 
- }
 
- void cmFindPackageCommand::LoadPackageRegistryWinSystem()
 
- {
 
-   cmSearchPath& paths = this->LabeledPaths[PathLabel::SystemRegistry];
 
-   // HKEY_LOCAL_MACHINE\\SOFTWARE has separate 32-bit and 64-bit views.
 
-   // Prefer the target platform view first.
 
-   if (this->Makefile->PlatformIs64Bit()) {
 
-     this->LoadPackageRegistryWin(false, KEY_WOW64_64KEY, paths);
 
-     this->LoadPackageRegistryWin(false, KEY_WOW64_32KEY, paths);
 
-   } else {
 
-     this->LoadPackageRegistryWin(false, KEY_WOW64_32KEY, paths);
 
-     this->LoadPackageRegistryWin(false, KEY_WOW64_64KEY, paths);
 
-   }
 
- }
 
- void cmFindPackageCommand::LoadPackageRegistryWin(bool user, unsigned int view,
 
-                                                   cmSearchPath& outPaths)
 
- {
 
-   std::wstring key = L"Software\\Kitware\\CMake\\Packages\\";
 
-   key += cmsys::Encoding::ToWide(this->Name);
 
-   std::set<std::wstring> bad;
 
-   HKEY hKey;
 
-   if (RegOpenKeyExW(user ? HKEY_CURRENT_USER : HKEY_LOCAL_MACHINE, key.c_str(),
 
-                     0, KEY_QUERY_VALUE | view, &hKey) == ERROR_SUCCESS) {
 
-     DWORD valueType = REG_NONE;
 
-     wchar_t name[16383]; // RegEnumValue docs limit name to 32767 _bytes_
 
-     std::vector<wchar_t> data(512);
 
-     bool done = false;
 
-     DWORD index = 0;
 
-     while (!done) {
 
-       DWORD nameSize = static_cast<DWORD>(sizeof(name));
 
-       DWORD dataSize = static_cast<DWORD>(data.size() * sizeof(data[0]));
 
-       switch (RegEnumValueW(hKey, index, name, &nameSize, 0, &valueType,
 
-                             (BYTE*)&data[0], &dataSize)) {
 
-         case ERROR_SUCCESS:
 
-           ++index;
 
-           if (valueType == REG_SZ) {
 
-             data[dataSize] = 0;
 
-             if (!this->CheckPackageRegistryEntry(
 
-                   cmsys::Encoding::ToNarrow(&data[0]), outPaths)) {
 
-               // The entry is invalid.
 
-               bad.insert(name);
 
-             }
 
-           }
 
-           break;
 
-         case ERROR_MORE_DATA:
 
-           data.resize((dataSize + sizeof(data[0]) - 1) / sizeof(data[0]));
 
-           break;
 
-         case ERROR_NO_MORE_ITEMS:
 
-         default:
 
-           done = true;
 
-           break;
 
-       }
 
-     }
 
-     RegCloseKey(hKey);
 
-   }
 
-   // Remove bad values if possible.
 
-   if (user && !bad.empty() &&
 
-       RegOpenKeyExW(HKEY_CURRENT_USER, key.c_str(), 0, KEY_SET_VALUE | view,
 
-                     &hKey) == ERROR_SUCCESS) {
 
-     for (std::wstring const& v : bad) {
 
-       RegDeleteValueW(hKey, v.c_str());
 
-     }
 
-     RegCloseKey(hKey);
 
-   }
 
- }
 
- #else
 
- class cmFindPackageCommandHoldFile
 
- {
 
-   const char* File;
 
- public:
 
-   cmFindPackageCommandHoldFile(const char* f)
 
-     : File(f)
 
-   {
 
-   }
 
-   ~cmFindPackageCommandHoldFile()
 
-   {
 
-     if (this->File) {
 
-       cmSystemTools::RemoveFile(this->File);
 
-     }
 
-   }
 
-   cmFindPackageCommandHoldFile(const cmFindPackageCommandHoldFile&) = delete;
 
-   cmFindPackageCommandHoldFile& operator=(
 
-     const cmFindPackageCommandHoldFile&) = delete;
 
-   void Release() { this->File = nullptr; }
 
- };
 
- void cmFindPackageCommand::LoadPackageRegistryDir(std::string const& dir,
 
-                                                   cmSearchPath& outPaths)
 
- {
 
-   cmsys::Directory files;
 
-   if (!files.Load(dir)) {
 
-     return;
 
-   }
 
-   std::string fname;
 
-   for (unsigned long i = 0; i < files.GetNumberOfFiles(); ++i) {
 
-     fname = cmStrCat(dir, '/', files.GetFile(i));
 
-     if (!cmSystemTools::FileIsDirectory(fname)) {
 
-       // Hold this file hostage until it behaves.
 
-       cmFindPackageCommandHoldFile holdFile(fname.c_str());
 
-       // Load the file.
 
-       cmsys::ifstream fin(fname.c_str(), std::ios::in | std::ios::binary);
 
-       std::string fentry;
 
-       if (fin && cmSystemTools::GetLineFromStream(fin, fentry) &&
 
-           this->CheckPackageRegistryEntry(fentry, outPaths)) {
 
-         // The file references an existing package, so release it.
 
-         holdFile.Release();
 
-       }
 
-     }
 
-   }
 
-   // TODO: Wipe out the directory if it is empty.
 
- }
 
- #endif
 
- bool cmFindPackageCommand::CheckPackageRegistryEntry(const std::string& fname,
 
-                                                      cmSearchPath& outPaths)
 
- {
 
-   // Parse the content of one package registry entry.
 
-   if (cmSystemTools::FileIsFullPath(fname)) {
 
-     // The first line in the stream is the full path to a file or
 
-     // directory containing the package.
 
-     if (cmSystemTools::FileExists(fname)) {
 
-       // The path exists.  Look for the package here.
 
-       if (!cmSystemTools::FileIsDirectory(fname)) {
 
-         outPaths.AddPath(cmSystemTools::GetFilenamePath(fname));
 
-       } else {
 
-         outPaths.AddPath(fname);
 
-       }
 
-       return true;
 
-     }
 
-     // The path does not exist.  Assume the stream content is
 
-     // associated with an old package that no longer exists, and
 
-     // delete it to keep the package registry clean.
 
-     return false;
 
-   }
 
-   // The first line in the stream is not the full path to a file or
 
-   // directory.  Assume the stream content was created by a future
 
-   // version of CMake that uses a different format, and leave it.
 
-   return true;
 
- }
 
- void cmFindPackageCommand::FillPrefixesCMakeSystemVariable()
 
- {
 
-   cmSearchPath& paths = this->LabeledPaths[PathLabel::CMakeSystem];
 
-   paths.AddCMakePath("CMAKE_SYSTEM_PREFIX_PATH");
 
-   paths.AddCMakePath("CMAKE_SYSTEM_FRAMEWORK_PATH");
 
-   paths.AddCMakePath("CMAKE_SYSTEM_APPBUNDLE_PATH");
 
-   if (this->DebugMode) {
 
-     std::string debugBuffer = "CMake variables defined in the Platform file "
 
-                               "[CMAKE_FIND_USE_CMAKE_SYSTEM_PATH].\n";
 
-     collectPathsForDebug(debugBuffer, paths);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- void cmFindPackageCommand::FillPrefixesUserGuess()
 
- {
 
-   cmSearchPath& paths = this->LabeledPaths[PathLabel::Guess];
 
-   for (std::string const& p : this->UserGuessArgs) {
 
-     paths.AddUserPath(p);
 
-   }
 
-   if (this->DebugMode) {
 
-     std::string debugBuffer =
 
-       "Paths specified by the find_package PATHS option.\n";
 
-     collectPathsForDebug(debugBuffer, paths);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- void cmFindPackageCommand::FillPrefixesUserHints()
 
- {
 
-   cmSearchPath& paths = this->LabeledPaths[PathLabel::Hints];
 
-   for (std::string const& p : this->UserHintsArgs) {
 
-     paths.AddUserPath(p);
 
-   }
 
-   if (this->DebugMode) {
 
-     std::string debugBuffer =
 
-       "Paths specified by the find_package HINTS option.\n";
 
-     collectPathsForDebug(debugBuffer, paths);
 
-     this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer, "\n");
 
-   }
 
- }
 
- bool cmFindPackageCommand::SearchDirectory(std::string const& dir)
 
- {
 
-   assert(!dir.empty() && dir.back() == '/');
 
-   // Check each path suffix on this directory.
 
-   for (std::string const& s : this->SearchPathSuffixes) {
 
-     std::string d = dir;
 
-     if (!s.empty()) {
 
-       d += s;
 
-       d += "/";
 
-     }
 
-     if (this->CheckDirectory(d)) {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmFindPackageCommand::CheckDirectory(std::string const& dir)
 
- {
 
-   assert(!dir.empty() && dir.back() == '/');
 
-   // Look for the file in this directory.
 
-   std::string d = dir.substr(0, dir.size() - 1);
 
-   if (this->FindConfigFile(d, this->FileFound)) {
 
-     // Remove duplicate slashes.
 
-     cmSystemTools::ConvertToUnixSlashes(this->FileFound);
 
-     return true;
 
-   }
 
-   return false;
 
- }
 
- bool cmFindPackageCommand::FindConfigFile(std::string const& dir,
 
-                                           std::string& file)
 
- {
 
-   if (this->IgnoredPaths.count(dir)) {
 
-     return false;
 
-   }
 
-   for (std::string const& c : this->Configs) {
 
-     file = cmStrCat(dir, '/', c);
 
-     if (this->DebugMode) {
 
-       this->DebugBuffer = cmStrCat(this->DebugBuffer, "  ", file, "\n");
 
-     }
 
-     if (cmSystemTools::FileExists(file, true) && this->CheckVersion(file)) {
 
-       // Allow resolving symlinks when the config file is found through a link
 
-       if (this->UseRealPath) {
 
-         file = cmSystemTools::GetRealPath(file);
 
-       }
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmFindPackageCommand::CheckVersion(std::string const& config_file)
 
- {
 
-   bool result = false; // by default, assume the version is not ok.
 
-   bool haveResult = false;
 
-   std::string version = "unknown";
 
-   // Get the filename without the .cmake extension.
 
-   std::string::size_type pos = config_file.rfind('.');
 
-   std::string version_file_base = config_file.substr(0, pos);
 
-   // Look for foo-config-version.cmake
 
-   std::string version_file = cmStrCat(version_file_base, "-version.cmake");
 
-   if (!haveResult && cmSystemTools::FileExists(version_file, true)) {
 
-     result = this->CheckVersionFile(version_file, version);
 
-     haveResult = true;
 
-   }
 
-   // Look for fooConfigVersion.cmake
 
-   version_file = cmStrCat(version_file_base, "Version.cmake");
 
-   if (!haveResult && cmSystemTools::FileExists(version_file, true)) {
 
-     result = this->CheckVersionFile(version_file, version);
 
-     haveResult = true;
 
-   }
 
-   // If no version was requested a versionless package is acceptable.
 
-   if (!haveResult && this->Version.empty()) {
 
-     result = true;
 
-   }
 
-   ConfigFileInfo configFileInfo;
 
-   configFileInfo.filename = config_file;
 
-   configFileInfo.version = version;
 
-   this->ConsideredConfigs.push_back(std::move(configFileInfo));
 
-   return result;
 
- }
 
- bool cmFindPackageCommand::CheckVersionFile(std::string const& version_file,
 
-                                             std::string& result_version)
 
- {
 
-   // The version file will be loaded in an isolated scope.
 
-   cmMakefile::ScopePushPop varScope(this->Makefile);
 
-   cmMakefile::PolicyPushPop polScope(this->Makefile);
 
-   static_cast<void>(varScope);
 
-   static_cast<void>(polScope);
 
-   // Clear the output variables.
 
-   this->Makefile->RemoveDefinition("PACKAGE_VERSION");
 
-   this->Makefile->RemoveDefinition("PACKAGE_VERSION_UNSUITABLE");
 
-   this->Makefile->RemoveDefinition("PACKAGE_VERSION_COMPATIBLE");
 
-   this->Makefile->RemoveDefinition("PACKAGE_VERSION_EXACT");
 
-   // Set the input variables.
 
-   this->Makefile->AddDefinition("PACKAGE_FIND_NAME", this->Name);
 
-   auto addDefinition = [this](const std::string& variable,
 
-                               cm::string_view value) {
 
-     this->Makefile->AddDefinition(variable, value);
 
-   };
 
-   this->SetVersionVariables(addDefinition, "PACKAGE_FIND_VERSION",
 
-                             this->Version, this->VersionCount,
 
-                             this->VersionMajor, this->VersionMinor,
 
-                             this->VersionPatch, this->VersionTweak);
 
-   // Load the version check file.  Pass NoPolicyScope because we do
 
-   // our own policy push/pop independent of CMP0011.
 
-   bool suitable = false;
 
-   if (this->ReadListFile(version_file, NoPolicyScope)) {
 
-     // Check the output variables.
 
-     bool okay = this->Makefile->IsOn("PACKAGE_VERSION_EXACT");
 
-     bool unsuitable = this->Makefile->IsOn("PACKAGE_VERSION_UNSUITABLE");
 
-     if (!okay && !this->VersionExact) {
 
-       okay = this->Makefile->IsOn("PACKAGE_VERSION_COMPATIBLE");
 
-     }
 
-     // The package is suitable if the version is okay and not
 
-     // explicitly unsuitable.
 
-     suitable = !unsuitable && (okay || this->Version.empty());
 
-     if (suitable) {
 
-       // Get the version found.
 
-       this->VersionFound =
 
-         this->Makefile->GetSafeDefinition("PACKAGE_VERSION");
 
-       // Try to parse the version number and store the results that were
 
-       // successfully parsed.
 
-       unsigned int parsed_major;
 
-       unsigned int parsed_minor;
 
-       unsigned int parsed_patch;
 
-       unsigned int parsed_tweak;
 
-       this->VersionFoundCount =
 
-         sscanf(this->VersionFound.c_str(), "%u.%u.%u.%u", &parsed_major,
 
-                &parsed_minor, &parsed_patch, &parsed_tweak);
 
-       switch (this->VersionFoundCount) {
 
-         case 4:
 
-           this->VersionFoundTweak = parsed_tweak;
 
-           CM_FALLTHROUGH;
 
-         case 3:
 
-           this->VersionFoundPatch = parsed_patch;
 
-           CM_FALLTHROUGH;
 
-         case 2:
 
-           this->VersionFoundMinor = parsed_minor;
 
-           CM_FALLTHROUGH;
 
-         case 1:
 
-           this->VersionFoundMajor = parsed_major;
 
-           CM_FALLTHROUGH;
 
-         default:
 
-           break;
 
-       }
 
-     }
 
-   }
 
-   result_version = this->Makefile->GetSafeDefinition("PACKAGE_VERSION");
 
-   if (result_version.empty()) {
 
-     result_version = "unknown";
 
-   }
 
-   // Succeed if the version is suitable.
 
-   return suitable;
 
- }
 
- void cmFindPackageCommand::StoreVersionFound()
 
- {
 
-   // Store the whole version string.
 
-   std::string ver = cmStrCat(this->Name, "_VERSION");
 
-   auto addDefinition = [this](const std::string& variable,
 
-                               cm::string_view value) {
 
-     this->Makefile->AddDefinition(variable, value);
 
-   };
 
-   this->SetVersionVariables(addDefinition, ver, this->VersionFound,
 
-                             this->VersionFoundCount, this->VersionFoundMajor,
 
-                             this->VersionFoundMinor, this->VersionFoundPatch,
 
-                             this->VersionFoundTweak);
 
-   if (this->VersionFound.empty()) {
 
-     this->Makefile->RemoveDefinition(ver);
 
-   }
 
- }
 
- class cmFileListGeneratorBase
 
- {
 
- public:
 
-   virtual ~cmFileListGeneratorBase() = default;
 
- protected:
 
-   bool Consider(std::string const& fullPath, cmFileList& listing);
 
- private:
 
-   bool Search(cmFileList&);
 
-   virtual bool Search(std::string const& parent, cmFileList&) = 0;
 
-   virtual std::unique_ptr<cmFileListGeneratorBase> Clone() const = 0;
 
-   friend class cmFileList;
 
-   cmFileListGeneratorBase* SetNext(cmFileListGeneratorBase const& next);
 
-   std::unique_ptr<cmFileListGeneratorBase> Next;
 
- };
 
- class cmFileList
 
- {
 
- public:
 
-   virtual ~cmFileList() = default;
 
-   cmFileList& operator/(cmFileListGeneratorBase const& rhs)
 
-   {
 
-     if (this->Last) {
 
-       this->Last = this->Last->SetNext(rhs);
 
-     } else {
 
-       this->First = rhs.Clone();
 
-       this->Last = this->First.get();
 
-     }
 
-     return *this;
 
-   }
 
-   bool Search()
 
-   {
 
-     if (this->First) {
 
-       return this->First->Search(*this);
 
-     }
 
-     return false;
 
-   }
 
- private:
 
-   virtual bool Visit(std::string const& fullPath) = 0;
 
-   friend class cmFileListGeneratorBase;
 
-   std::unique_ptr<cmFileListGeneratorBase> First;
 
-   cmFileListGeneratorBase* Last = nullptr;
 
- };
 
- class cmFindPackageFileList : public cmFileList
 
- {
 
- public:
 
-   cmFindPackageFileList(cmFindPackageCommand* fpc, bool use_suffixes = true)
 
-     : FPC(fpc)
 
-     , UseSuffixes(use_suffixes)
 
-   {
 
-   }
 
- private:
 
-   bool Visit(std::string const& fullPath) override
 
-   {
 
-     if (this->UseSuffixes) {
 
-       return this->FPC->SearchDirectory(fullPath);
 
-     }
 
-     return this->FPC->CheckDirectory(fullPath);
 
-   }
 
-   cmFindPackageCommand* FPC;
 
-   bool UseSuffixes;
 
- };
 
- bool cmFileListGeneratorBase::Search(cmFileList& listing)
 
- {
 
-   return this->Search("", listing);
 
- }
 
- cmFileListGeneratorBase* cmFileListGeneratorBase::SetNext(
 
-   cmFileListGeneratorBase const& next)
 
- {
 
-   this->Next = next.Clone();
 
-   return this->Next.get();
 
- }
 
- bool cmFileListGeneratorBase::Consider(std::string const& fullPath,
 
-                                        cmFileList& listing)
 
- {
 
-   if (this->Next) {
 
-     return this->Next->Search(fullPath + "/", listing);
 
-   }
 
-   return listing.Visit(fullPath + "/");
 
- }
 
- class cmFileListGeneratorFixed : public cmFileListGeneratorBase
 
- {
 
- public:
 
-   cmFileListGeneratorFixed(std::string str)
 
-     : String(std::move(str))
 
-   {
 
-   }
 
-   cmFileListGeneratorFixed(cmFileListGeneratorFixed const& r)
 
-     : String(r.String)
 
-   {
 
-   }
 
- private:
 
-   std::string String;
 
-   bool Search(std::string const& parent, cmFileList& lister) override
 
-   {
 
-     std::string fullPath = parent + this->String;
 
-     return this->Consider(fullPath, lister);
 
-   }
 
-   std::unique_ptr<cmFileListGeneratorBase> Clone() const override
 
-   {
 
-     std::unique_ptr<cmFileListGeneratorBase> g(
 
-       new cmFileListGeneratorFixed(*this));
 
-     return g;
 
-   }
 
- };
 
- class cmFileListGeneratorEnumerate : public cmFileListGeneratorBase
 
- {
 
- public:
 
-   cmFileListGeneratorEnumerate(std::vector<std::string> const& v)
 
-     : Vector(v)
 
-   {
 
-   }
 
-   cmFileListGeneratorEnumerate(cmFileListGeneratorEnumerate const& r)
 
-     : Vector(r.Vector)
 
-   {
 
-   }
 
- private:
 
-   std::vector<std::string> const& Vector;
 
-   bool Search(std::string const& parent, cmFileList& lister) override
 
-   {
 
-     for (std::string const& i : this->Vector) {
 
-       if (this->Consider(parent + i, lister)) {
 
-         return true;
 
-       }
 
-     }
 
-     return false;
 
-   }
 
-   std::unique_ptr<cmFileListGeneratorBase> Clone() const override
 
-   {
 
-     std::unique_ptr<cmFileListGeneratorBase> g(
 
-       new cmFileListGeneratorEnumerate(*this));
 
-     return g;
 
-   }
 
- };
 
- class cmFileListGeneratorProject : public cmFileListGeneratorBase
 
- {
 
- public:
 
-   cmFileListGeneratorProject(std::vector<std::string> const& names,
 
-                              cmFindPackageCommand::SortOrderType so,
 
-                              cmFindPackageCommand::SortDirectionType sd)
 
-     : Names(names)
 
-   {
 
-     this->SetSort(so, sd);
 
-   }
 
-   cmFileListGeneratorProject(cmFileListGeneratorProject const& r)
 
-     : Names(r.Names)
 
-   {
 
-     this->SetSort(r.SortOrder, r.SortDirection);
 
-   }
 
-   void SetSort(cmFindPackageCommand::SortOrderType o,
 
-                cmFindPackageCommand::SortDirectionType d)
 
-   {
 
-     SortOrder = o;
 
-     SortDirection = d;
 
-   }
 
- protected:
 
-   // sort parameters
 
-   cmFindPackageCommand::SortOrderType SortOrder;
 
-   cmFindPackageCommand::SortDirectionType SortDirection;
 
- private:
 
-   std::vector<std::string> const& Names;
 
-   bool Search(std::string const& parent, cmFileList& lister) override
 
-   {
 
-     // Construct a list of matches.
 
-     std::vector<std::string> matches;
 
-     cmsys::Directory d;
 
-     d.Load(parent);
 
-     for (unsigned long i = 0; i < d.GetNumberOfFiles(); ++i) {
 
-       const char* fname = d.GetFile(i);
 
-       if (strcmp(fname, ".") == 0 || strcmp(fname, "..") == 0) {
 
-         continue;
 
-       }
 
-       for (std::string const& n : this->Names) {
 
-         if (cmsysString_strncasecmp(fname, n.c_str(), n.length()) == 0) {
 
-           matches.emplace_back(fname);
 
-         }
 
-       }
 
-     }
 
-     // before testing the matches check if there is a specific sorting order to
 
-     // perform
 
-     if (this->SortOrder != cmFindPackageCommand::None) {
 
-       cmFindPackageCommand::Sort(matches.begin(), matches.end(), SortOrder,
 
-                                  SortDirection);
 
-     }
 
-     for (std::string const& i : matches) {
 
-       if (this->Consider(parent + i, lister)) {
 
-         return true;
 
-       }
 
-     }
 
-     return false;
 
-   }
 
-   std::unique_ptr<cmFileListGeneratorBase> Clone() const override
 
-   {
 
-     std::unique_ptr<cmFileListGeneratorBase> g(
 
-       new cmFileListGeneratorProject(*this));
 
-     return g;
 
-   }
 
- };
 
- class cmFileListGeneratorMacProject : public cmFileListGeneratorBase
 
- {
 
- public:
 
-   cmFileListGeneratorMacProject(std::vector<std::string> const& names,
 
-                                 const char* ext)
 
-     : Names(names)
 
-     , Extension(ext)
 
-   {
 
-   }
 
-   cmFileListGeneratorMacProject(cmFileListGeneratorMacProject const& r)
 
-     : Names(r.Names)
 
-     , Extension(r.Extension)
 
-   {
 
-   }
 
- private:
 
-   std::vector<std::string> const& Names;
 
-   std::string Extension;
 
-   bool Search(std::string const& parent, cmFileList& lister) override
 
-   {
 
-     // Construct a list of matches.
 
-     std::vector<std::string> matches;
 
-     cmsys::Directory d;
 
-     d.Load(parent);
 
-     for (unsigned long i = 0; i < d.GetNumberOfFiles(); ++i) {
 
-       const char* fname = d.GetFile(i);
 
-       if (strcmp(fname, ".") == 0 || strcmp(fname, "..") == 0) {
 
-         continue;
 
-       }
 
-       for (std::string name : this->Names) {
 
-         name += this->Extension;
 
-         if (cmsysString_strcasecmp(fname, name.c_str()) == 0) {
 
-           matches.emplace_back(fname);
 
-         }
 
-       }
 
-     }
 
-     for (std::string const& i : matches) {
 
-       if (this->Consider(parent + i, lister)) {
 
-         return true;
 
-       }
 
-     }
 
-     return false;
 
-   }
 
-   std::unique_ptr<cmFileListGeneratorBase> Clone() const override
 
-   {
 
-     std::unique_ptr<cmFileListGeneratorBase> g(
 
-       new cmFileListGeneratorMacProject(*this));
 
-     return g;
 
-   }
 
- };
 
- class cmFileListGeneratorCaseInsensitive : public cmFileListGeneratorBase
 
- {
 
- public:
 
-   cmFileListGeneratorCaseInsensitive(std::string str)
 
-     : String(std::move(str))
 
-   {
 
-   }
 
-   cmFileListGeneratorCaseInsensitive(
 
-     cmFileListGeneratorCaseInsensitive const& r)
 
-     : String(r.String)
 
-   {
 
-   }
 
- private:
 
-   std::string String;
 
-   bool Search(std::string const& parent, cmFileList& lister) override
 
-   {
 
-     // Look for matching files.
 
-     std::vector<std::string> matches;
 
-     cmsys::Directory d;
 
-     d.Load(parent);
 
-     for (unsigned long i = 0; i < d.GetNumberOfFiles(); ++i) {
 
-       const char* fname = d.GetFile(i);
 
-       if (strcmp(fname, ".") == 0 || strcmp(fname, "..") == 0) {
 
-         continue;
 
-       }
 
-       if (cmsysString_strcasecmp(fname, this->String.c_str()) == 0) {
 
-         if (this->Consider(parent + fname, lister)) {
 
-           return true;
 
-         }
 
-       }
 
-     }
 
-     return false;
 
-   }
 
-   std::unique_ptr<cmFileListGeneratorBase> Clone() const override
 
-   {
 
-     std::unique_ptr<cmFileListGeneratorBase> g(
 
-       new cmFileListGeneratorCaseInsensitive(*this));
 
-     return g;
 
-   }
 
- };
 
- class cmFileListGeneratorGlob : public cmFileListGeneratorBase
 
- {
 
- public:
 
-   cmFileListGeneratorGlob(std::string str)
 
-     : Pattern(std::move(str))
 
-   {
 
-   }
 
-   cmFileListGeneratorGlob(cmFileListGeneratorGlob const& r)
 
-     : Pattern(r.Pattern)
 
-   {
 
-   }
 
- private:
 
-   std::string Pattern;
 
-   bool Search(std::string const& parent, cmFileList& lister) override
 
-   {
 
-     // Glob the set of matching files.
 
-     std::string expr = cmStrCat(parent, this->Pattern);
 
-     cmsys::Glob g;
 
-     if (!g.FindFiles(expr)) {
 
-       return false;
 
-     }
 
-     std::vector<std::string> const& files = g.GetFiles();
 
-     // Look for directories among the matches.
 
-     for (std::string const& f : files) {
 
-       if (cmSystemTools::FileIsDirectory(f)) {
 
-         if (this->Consider(f, lister)) {
 
-           return true;
 
-         }
 
-       }
 
-     }
 
-     return false;
 
-   }
 
-   std::unique_ptr<cmFileListGeneratorBase> Clone() const override
 
-   {
 
-     return cm::make_unique<cmFileListGeneratorGlob>(*this);
 
-   }
 
- };
 
- bool cmFindPackageCommand::SearchPrefix(std::string const& prefix_in)
 
- {
 
-   assert(!prefix_in.empty() && prefix_in.back() == '/');
 
-   // Skip this if the prefix does not exist.
 
-   if (!cmSystemTools::FileIsDirectory(prefix_in)) {
 
-     return false;
 
-   }
 
-   //  PREFIX/ (useful on windows or in build trees)
 
-   if (this->SearchDirectory(prefix_in)) {
 
-     return true;
 
-   }
 
-   // Strip the trailing slash because the path generator is about to
 
-   // add one.
 
-   std::string prefix = prefix_in.substr(0, prefix_in.size() - 1);
 
-   //  PREFIX/(cmake|CMake)/ (useful on windows or in build trees)
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorCaseInsensitive("cmake");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   //  PREFIX/(Foo|foo|FOO).*/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection);
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   //  PREFIX/(Foo|foo|FOO).*/(cmake|CMake)/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection) /
 
-       cmFileListGeneratorCaseInsensitive("cmake");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   // Construct list of common install locations (lib and share).
 
-   std::vector<std::string> common;
 
-   if (!this->LibraryArchitecture.empty()) {
 
-     common.push_back("lib/" + this->LibraryArchitecture);
 
-   }
 
-   if (this->UseLib32Paths) {
 
-     common.emplace_back("lib32");
 
-   }
 
-   if (this->UseLib64Paths) {
 
-     common.emplace_back("lib64");
 
-   }
 
-   if (this->UseLibx32Paths) {
 
-     common.emplace_back("libx32");
 
-   }
 
-   common.emplace_back("lib");
 
-   common.emplace_back("share");
 
-   //  PREFIX/(lib/ARCH|lib*|share)/cmake/(Foo|foo|FOO).*/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorEnumerate(common) /
 
-       cmFileListGeneratorFixed("cmake") /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection);
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   //  PREFIX/(lib/ARCH|lib*|share)/(Foo|foo|FOO).*/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorEnumerate(common) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection);
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   //  PREFIX/(lib/ARCH|lib*|share)/(Foo|foo|FOO).*/(cmake|CMake)/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorEnumerate(common) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection) /
 
-       cmFileListGeneratorCaseInsensitive("cmake");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   // PREFIX/(Foo|foo|FOO).*/(lib/ARCH|lib*|share)/cmake/(Foo|foo|FOO).*/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection) /
 
-       cmFileListGeneratorEnumerate(common) /
 
-       cmFileListGeneratorFixed("cmake") /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection);
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   // PREFIX/(Foo|foo|FOO).*/(lib/ARCH|lib*|share)/(Foo|foo|FOO).*/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection) /
 
-       cmFileListGeneratorEnumerate(common) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection);
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   // PREFIX/(Foo|foo|FOO).*/(lib/ARCH|lib*|share)/(Foo|foo|FOO).*/(cmake|CMake)/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection) /
 
-       cmFileListGeneratorEnumerate(common) /
 
-       cmFileListGeneratorProject(this->Names, this->SortOrder,
 
-                                  this->SortDirection) /
 
-       cmFileListGeneratorCaseInsensitive("cmake");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmFindPackageCommand::SearchFrameworkPrefix(std::string const& prefix_in)
 
- {
 
-   assert(!prefix_in.empty() && prefix_in.back() == '/');
 
-   // Strip the trailing slash because the path generator is about to
 
-   // add one.
 
-   std::string prefix = prefix_in.substr(0, prefix_in.size() - 1);
 
-   // <prefix>/Foo.framework/Resources/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorMacProject(this->Names, ".framework") /
 
-       cmFileListGeneratorFixed("Resources");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   // <prefix>/Foo.framework/Resources/CMake/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorMacProject(this->Names, ".framework") /
 
-       cmFileListGeneratorFixed("Resources") /
 
-       cmFileListGeneratorCaseInsensitive("cmake");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   // <prefix>/Foo.framework/Versions/*/Resources/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorMacProject(this->Names, ".framework") /
 
-       cmFileListGeneratorFixed("Versions") /
 
-       cmFileListGeneratorGlob("*/Resources");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   // <prefix>/Foo.framework/Versions/*/Resources/CMake/
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorMacProject(this->Names, ".framework") /
 
-       cmFileListGeneratorFixed("Versions") /
 
-       cmFileListGeneratorGlob("*/Resources") /
 
-       cmFileListGeneratorCaseInsensitive("cmake");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmFindPackageCommand::SearchAppBundlePrefix(std::string const& prefix_in)
 
- {
 
-   assert(!prefix_in.empty() && prefix_in.back() == '/');
 
-   // Strip the trailing slash because the path generator is about to
 
-   // add one.
 
-   std::string prefix = prefix_in.substr(0, prefix_in.size() - 1);
 
-   // <prefix>/Foo.app/Contents/Resources
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorMacProject(this->Names, ".app") /
 
-       cmFileListGeneratorFixed("Contents/Resources");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   // <prefix>/Foo.app/Contents/Resources/CMake
 
-   {
 
-     cmFindPackageFileList lister(this);
 
-     lister / cmFileListGeneratorFixed(prefix) /
 
-       cmFileListGeneratorMacProject(this->Names, ".app") /
 
-       cmFileListGeneratorFixed("Contents/Resources") /
 
-       cmFileListGeneratorCaseInsensitive("cmake");
 
-     if (lister.Search()) {
 
-       return true;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- // TODO: Debug cmsys::Glob double slash problem.
 
- bool cmFindPackage(std::vector<std::string> const& args,
 
-                    cmExecutionStatus& status)
 
- {
 
-   return cmFindPackageCommand(status).InitialPass(args);
 
- }
 
 
  |