| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmFindPackageCommand.h"
- #include <cmsys/RegularExpression.hxx>
- #ifdef CMAKE_BUILD_WITH_CMAKE
- #include "cmVariableWatch.h"
- #endif
- void cmFindPackageNeedBackwardsCompatibility(const std::string& variable,
- int access_type, void*, const char* newValue,
- const cmMakefile*)
- {
- (void)newValue;
- #ifdef CMAKE_BUILD_WITH_CMAKE
- if(access_type == cmVariableWatch::UNKNOWN_VARIABLE_READ_ACCESS)
- {
- std::string message = "An attempt was made to access a variable: ";
- message += variable;
- message +=
- " that has not been defined. This variable is created by the "
- "FIND_PACKAGE command. CMake version 1.6 always converted the "
- "variable name to upper-case, but this behavior is no longer the "
- "case. To fix this you might need to set the cache value of "
- "CMAKE_BACKWARDS_COMPATIBILITY to 1.6 or less. If you are writing a "
- "CMake listfile, you should change the variable reference to use "
- "the case of the argument to FIND_PACKAGE.";
- cmSystemTools::Error(message.c_str());
- }
- #else
- (void)variable;
- (void)access_type;
- #endif
- }
- //----------------------------------------------------------------------------
- cmFindPackageCommand::cmFindPackageCommand()
- {
- cmSystemTools::ReplaceString(this->GenericDocumentationRootPath,
- "CMAKE_FIND_ROOT_PATH_MODE_XXX",
- "CMAKE_FIND_ROOT_PATH_MODE_PACKAGE");
- cmSystemTools::ReplaceString(this->GenericDocumentationPathsOrder,
- "FIND_ARGS_XXX", "<package>");
- cmSystemTools::ReplaceString(this->GenericDocumentationPathsOrder,
- "FIND_XXX", "find_package");
- this->CMakePathName = "PACKAGE";
- this->Quiet = false;
- this->Required = false;
- this->NoBuilds = false;
- this->NoModule = false;
- this->DebugMode = false;
- this->CommandDocumentation =
- " find_package(<package> [major.minor] [QUIET] [NO_MODULE]\n"
- " [[REQUIRED|COMPONENTS] [components...]]\n"
- " [NAMES name1 [name2 ...]]\n"
- " [CONFIGS config1 [config2 ...]]\n"
- " [PATHS path1 [path2 ... ]]\n"
- " [PATH_SUFFIXES suffix1 [suffix2 ...]]\n"
- " [NO_DEFAULT_PATH]\n"
- " [NO_CMAKE_ENVIRONMENT_PATH]\n"
- " [NO_CMAKE_PATH]\n"
- " [NO_SYSTEM_ENVIRONMENT_PATH]\n"
- " [NO_CMAKE_BUILDS_PATH]\n"
- " [NO_CMAKE_SYSTEM_PATH]\n"
- " [CMAKE_FIND_ROOT_PATH_BOTH |\n"
- " ONLY_CMAKE_FIND_ROOT_PATH |\n"
- " NO_CMAKE_FIND_ROOT_PATH])\n"
- "Finds and loads settings from an external project. <package>_FOUND "
- "will be set to indicate whether the package was found. Settings that "
- "can be used when <package>_FOUND is true are package-specific. "
- "A package-specific list of components may be listed after the "
- "REQUIRED option, or after the COMPONENTS option if no REQUIRED "
- "option is given. The \"major.minor\" version argument is currently "
- "a placeholder for future use and is ignored. "
- "The command has two modes by which it searches for packages: "
- "\"Module\" mode and \"Config\" mode."
- "\n"
- "Module mode has a reduced signature:\n"
- " find_package(<package> [major.minor] [QUIET]\n"
- " [[REQUIRED|COMPONENTS] [components...]])\n"
- "CMake searches for a file called \"Find<package>.cmake\" in "
- "the CMAKE_MODULE_PATH followed by the CMake installation. "
- "If the file is found, it is read and processed by CMake. "
- "It is responsible for finding the package "
- "or producing an error message if package content cannot be found. "
- "Otherwise the command proceeds to Config mode. The NO_MODULE "
- "option may be used to skip Module mode explicitly, but the option "
- "is implied by use of options not specified in the reduced signature."
- "\n"
- "Config mode attempts to locate a configuration file provided by the "
- "package to be found. A cache entry called <package>_DIR is created to "
- "hold the directory containing the file. "
- "By default the command searches for a package with the name <package>. "
- "If the NAMES option is given the names following it are used instead "
- "of <package>. "
- "The command searches for a file called \"<name>Config.cmake\" or "
- "\"<lower-case-name>-config.cmake\" for each name specified. "
- "A replacement set of possible configuration file names may be given "
- "using the CONFIGS option. "
- "The search procedure is specified below. Once found, the configuration "
- "file is read and processed by CMake. Since the file is provided by the "
- "package it already knows the location of package contents. "
- "The full path to the configuration file is stored in the cmake "
- "variable <package>_CONFIG."
- "\n"
- "If the package configuration file cannot be found CMake "
- "will generate an error describing the problem unless the QUIET "
- "argument is specified. If REQUIRED is specified and the package "
- "is not found a fatal error is generated and the configure step stops "
- "executing. If <package>_DIR has been set to a directory not containing "
- "a configuration file a fatal error is always generated because user "
- "intervention is required."
- "\n"
- "CMake constructs a set of possible installation prefixes for the "
- "package. Under each prefix the following directories are searched "
- "for a configuration file:\n"
- " <prefix>/ (W)\n"
- " <prefix>/(cmake|CMake)/ (W)\n"
- " <prefix>/(share|lib)/<name>*/ (P)\n"
- " <prefix>/(share|lib)/<name>*/(cmake|CMake)/ (P)\n"
- "On systems supporting OS X Frameworks and Application Bundles "
- "the following directories are searched for frameworks or bundles "
- "containing a configuration file:\n"
- " <prefix>/<name>.framework/Resources/ (A)\n"
- " <prefix>/<name>.framework/Resources/CMake/ (A)\n"
- " <prefix>/<name>.framework/Versions/*/Resources/ (A)\n"
- " <prefix>/<name>.framework/Versions/*/Resources/CMake/ (A)\n"
- " <prefix>/<name>.app/Contents/Resources/ (A)\n"
- " <prefix>/<name>.app/Contents/Resources/CMake/ (A)\n"
- "In all cases the <name> is treated as case-insensitive and corresponds "
- "to any of the names specified (<package> or names given by NAMES). "
- "If PATH_SUFFIXES is specified the suffixes are appended to each "
- "(W) or (P) directory entry one-by-one.\n"
- "This set of directories is intended to work in cooperation with "
- "projects that provide configuration files in their installation trees. "
- "Directories above marked with (W) are intended for installations on "
- "Windows where the prefix may point at the top of an application's "
- "installation directory. Those marked with (P) are intended for "
- "installations on POSIX platforms where the prefix is shared by "
- "multiple packages. This is merely a convention, so all (W) and (P) "
- "directories are still searched on all platforms. "
- "Directories marked with (A) are intended for installations on "
- "Apple platforms. The cmake variables CMAKE_FIND_FRAMEWORK and "
- "CMAKE_FIND_APPBUNDLE determine the order of preference "
- "as specified below.\n"
- "The set of installation prefixes is constructed using the following "
- "steps. If NO_DEFAULT_PATH is specified steps 1-5 are skipped.\n"
- "1. Search cmake specific environment variables. This "
- "can be skipped if NO_CMAKE_ENVIRONMENT_PATH is passed.\n"
- " CMAKE_PREFIX_PATH\n"
- " CMAKE_FRAMEWORK_PATH\n"
- " CMAKE_APPBUNDLE_PATH\n"
- "2. Search cmake variables with the same names as the cmake specific "
- "environment variables. These are intended to be used on the command "
- "line with a -DVAR=value. This can be skipped if NO_CMAKE_PATH "
- "is passed.\n"
- " CMAKE_PREFIX_PATH\n"
- " CMAKE_FRAMEWORK_PATH\n"
- " CMAKE_APPBUNDLE_PATH\n"
- "3. Search the standard system environment variables. "
- "This can be skipped if NO_SYSTEM_ENVIRONMENT_PATH is passed. "
- "Path entries ending in \"/bin\" or \"/sbin\" are automatically "
- "converted to their parent directories.\n"
- " PATH\n"
- "4. Search project build trees recently configured in a CMake GUI. "
- "This can be skipped if NO_CMAKE_BUILDS_PATH is passed. "
- "It is intended for the case when a user is building multiple "
- "dependent projects one after another.\n"
- "5. Search cmake variables defined in the Platform files "
- "for the current system. This can be skipped if NO_CMAKE_SYSTEM_PATH "
- "is passed.\n"
- " CMAKE_SYSTEM_PREFIX_PATH\n"
- " CMAKE_SYSTEM_FRAMEWORK_PATH\n"
- " CMAKE_SYSTEM_APPBUNDLE_PATH\n"
- "6. Search paths specified by the PATHS option.\n"
- ;
- this->CommandDocumentation += this->GenericDocumentationMacPolicy;
- this->CommandDocumentation += this->GenericDocumentationRootPath;
- this->CommandDocumentation += this->GenericDocumentationPathsOrder;
- }
- //----------------------------------------------------------------------------
- const char* cmFindPackageCommand::GetFullDocumentation()
- {
- return this->CommandDocumentation.c_str();
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args)
- {
- if(args.size() < 1)
- {
- this->SetError("called with incorrect number of arguments");
- return false;
- }
- // Check for debug mode.
- this->DebugMode = this->Makefile->IsOn("CMAKE_FIND_DEBUG_MODE");
- // 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 = "";
- // Check ancient compatibility.
- this->Compatibility_1_6 =
- this->Makefile->GetLocalGenerator()
- ->NeedBackwardsCompatibility(1, 6);
- // Always search directly in a generated path.
- this->SearchPathSuffixes.push_back("");
- // Parse the arguments.
- enum Doing { DoingNone, DoingComponents, DoingNames, DoingPaths,
- DoingPathSuffixes, DoingConfigs };
- Doing doing = DoingNone;
- cmsys::RegularExpression version("^[0-9.]+$");
- bool haveVersion = false;
- for(unsigned int i=1; i < args.size(); ++i)
- {
- if(args[i] == "QUIET")
- {
- this->Quiet = true;
- doing = DoingNone;
- }
- else if(args[i] == "NO_MODULE")
- {
- this->NoModule = true;
- doing = DoingNone;
- }
- else if(args[i] == "REQUIRED")
- {
- this->Required = true;
- doing = DoingComponents;
- }
- else if(args[i] == "COMPONENTS")
- {
- this->Compatibility_1_6 = false;
- doing = DoingComponents;
- }
- else if(args[i] == "NAMES")
- {
- this->NoModule = true;
- this->Compatibility_1_6 = false;
- doing = DoingNames;
- }
- else if(args[i] == "PATHS")
- {
- this->NoModule = true;
- this->Compatibility_1_6 = false;
- doing = DoingPaths;
- }
- else if(args[i] == "PATH_SUFFIXES")
- {
- this->NoModule = true;
- this->Compatibility_1_6 = false;
- doing = DoingPathSuffixes;
- }
- else if(args[i] == "CONFIGS")
- {
- this->NoModule = true;
- this->Compatibility_1_6 = false;
- doing = DoingConfigs;
- }
- else if(args[i] == "NO_CMAKE_BUILDS_PATH")
- {
- this->NoBuilds = true;
- this->NoModule = true;
- this->Compatibility_1_6 = false;
- doing = DoingNone;
- }
- else if(this->CheckCommonArgument(args[i]))
- {
- this->NoModule = true;
- this->Compatibility_1_6 = false;
- doing = DoingNone;
- }
- else if(doing == DoingComponents)
- {
- // Set a variable telling the find script this component
- // is required.
- std::string req_var = Name + "_FIND_REQUIRED_" + args[i];
- this->Makefile->AddDefinition(req_var.c_str(), "1");
- // 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->AddUserPath(args[i]);
- }
- else if(doing == DoingPathSuffixes)
- {
- this->AddPathSuffix(args[i]);
- }
- else if(doing == DoingConfigs)
- {
- this->Configs.push_back(args[i]);
- }
- else if(!haveVersion && version.find(args[i].c_str()))
- {
- haveVersion = true;
- }
- else
- {
- cmOStringStream e;
- e << "called with invalid argument \"" << args[i].c_str() << "\"";
- this->SetError(e.str().c_str());
- return false;
- }
- }
- // Store the list of components.
- std::string components_var = Name + "_FIND_COMPONENTS";
- this->Makefile->AddDefinition(components_var.c_str(), components.c_str());
- // See if there is a Find<package>.cmake module.
- if(!this->NoModule)
- {
- bool foundModule = false;
- if(!this->FindModule(foundModule))
- {
- this->AppendSuccessInformation();
- return false;
- }
- if(foundModule)
- {
- this->AppendSuccessInformation();
- return true;
- }
- }
- // No find module. Assume the project has a CMake config file. Use
- // a <package>_DIR cache variable to locate it.
- this->Variable = this->Name;
- this->Variable += "_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::vector<std::string>::const_iterator ni = this->Names.begin();
- ni != this->Names.end(); ++ni)
- {
- std::string config = *ni;
- config += "Config.cmake";
- this->Configs.push_back(config);
- config = cmSystemTools::LowerCase(*ni);
- config += "-config.cmake";
- this->Configs.push_back(config);
- }
- }
- // Find and load the package.
- bool result = this->HandlePackageMode();
- this->AppendSuccessInformation();
- return result;
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::FindModule(bool& found)
- {
- std::string module = "Find";
- module += this->Name;
- module += ".cmake";
- std::string mfile = this->Makefile->GetModulesFile(module.c_str());
- if ( mfile.size() )
- {
- if(this->Quiet)
- {
- // Tell the module that is about to be read that it should find
- // quietly.
- std::string quietly = this->Name;
- quietly += "_FIND_QUIETLY";
- this->Makefile->AddDefinition(quietly.c_str(), "1");
- }
- 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 = this->Name;
- req += "_FIND_REQUIRED";
- this->Makefile->AddDefinition(req.c_str(), "1");
- }
- // Load the module we found.
- found = true;
- return this->ReadListFile(mfile.c_str());
- }
- return true;
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::HandlePackageMode()
- {
- // Support old capitalization behavior.
- std::string upperDir = cmSystemTools::UpperCase(this->Name);
- std::string upperFound = cmSystemTools::UpperCase(this->Name);
- upperDir += "_DIR";
- upperFound += "_FOUND";
- if(upperDir == this->Variable)
- {
- this->Compatibility_1_6 = false;
- }
- // Try to find the config file.
- const char* def = this->Makefile->GetDefinition(this->Variable.c_str());
- if(this->Compatibility_1_6 && cmSystemTools::IsOff(def))
- {
- // Use the setting of the old name of the variable to provide the
- // value of the new.
- const char* oldDef = this->Makefile->GetDefinition(upperDir.c_str());
- if(!cmSystemTools::IsOff(oldDef))
- {
- this->Makefile->AddDefinition(this->Variable.c_str(), oldDef);
- def = this->Makefile->GetDefinition(this->Variable.c_str());
- }
- }
- // Search for the config file if it is not already found.
- if(cmSystemTools::IsOff(def))
- {
- this->FindConfig();
- def = this->Makefile->GetDefinition(this->Variable.c_str());
- }
- // If the config file was found, load it.
- std::string file;
- bool result = true;
- bool found = false;
- if(!cmSystemTools::IsOff(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.c_str()))
- {
- dir = "/" + dir;
- dir = this->Makefile->GetCurrentDirectory() + dir;
- }
- // Find the configuration file.
- if(this->FindConfigFile(dir, file))
- {
- // Parse the configuration file.
- if(this->ReadListFile(file.c_str()))
- {
- // The package has been found.
- found = true;
- }
- else
- {
- // The configuration file is invalid.
- result = false;
- }
- }
- else
- {
- // The variable setting is wrong.
- cmOStringStream e;
- e << "cannot find package " << this->Name << " because "
- << this->Variable << " is set to \"" << def << "\" "
- << "which is not a directory containing a package configuration "
- << "file. "
- << "Please set the cache entry " << this->Variable << " "
- << "to the correct directory, or delete it to ask CMake "
- << "to search.";
- this->SetError(e.str().c_str());
- result = false;
- }
- }
- else if(!this->Quiet || this->Required)
- {
- // The variable is not set.
- cmOStringStream e;
- e << "could not find ";
- if(!this->NoModule)
- {
- e << "module Find" << this->Name << ".cmake or ";
- }
- e << "a configuration file for package " << this->Name << ".\n";
- if(!this->NoModule)
- {
- e << "Adjust CMAKE_MODULE_PATH to find Find"
- << this->Name << ".cmake or set ";
- }
- else
- {
- e << "Set ";
- }
- e << this->Variable << " to the directory containing a CMake "
- << "configuration file for " << this->Name << ". ";
- if(this->Configs.size() == 1)
- {
- e << "The file will be called " << this->Configs[0];
- }
- else
- {
- e << "The file will have one of the following names:\n";
- for(std::vector<std::string>::const_iterator ci = this->Configs.begin();
- ci != this->Configs.end(); ++ci)
- {
- e << " " << *ci << "\n";
- }
- }
- if(this->Required)
- {
- this->SetError(e.str().c_str());
- result = false;
- }
- else
- {
- cmSystemTools::Error("find_package ", e.str().c_str());
- }
- }
- // Set a variable marking whether the package was found.
- std::string foundVar = this->Name;
- foundVar += "_FOUND";
- this->Makefile->AddDefinition(foundVar.c_str(), found? "1":"0");
- // Set a variable naming the configuration file that was found.
- std::string fileVar = this->Name;
- fileVar += "_CONFIG";
- if(found)
- {
- this->Makefile->AddDefinition(fileVar.c_str(), file.c_str());
- }
- else
- {
- this->Makefile->RemoveDefinition(fileVar.c_str());
- }
- // Handle some ancient compatibility stuff.
- if(this->Compatibility_1_6)
- {
- // Listfiles will be looking for the capitalized version of the
- // name. Provide it.
- this->Makefile->AddDefinition
- (upperDir.c_str(),
- this->Makefile->GetDefinition(this->Variable.c_str()));
- this->Makefile->AddDefinition
- (upperFound.c_str(),
- this->Makefile->GetDefinition(foundVar.c_str()));
- }
- #ifdef CMAKE_BUILD_WITH_CMAKE
- if(!(upperDir == this->Variable))
- {
- if(this->Compatibility_1_6)
- {
- // Listfiles may use the capitalized version of the name.
- // Remove any previously added watch.
- this->Makefile->GetVariableWatch()->RemoveWatch(
- upperDir.c_str(),
- cmFindPackageNeedBackwardsCompatibility
- );
- }
- else
- {
- // Listfiles should not be using the capitalized version of the
- // name. Add a watch to warn the user.
- this->Makefile->GetVariableWatch()->AddWatch(
- upperDir.c_str(),
- cmFindPackageNeedBackwardsCompatibility
- );
- }
- }
- #endif
- return result;
- }
- //----------------------------------------------------------------------------
- void cmFindPackageCommand::FindConfig()
- {
- // Compute the set of search prefixes.
- this->ComputePrefixes();
- // Look for the project's configuration file.
- bool found = false;
- // 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();
- }
- // 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 =
- "The directory containing a CMake configuration file for ";
- help += this->Name;
- help += ".";
- this->Makefile->AddCacheDefinition(this->Variable.c_str(),
- init.c_str(), help.c_str(),
- cmCacheManager::PATH);
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::FindPrefixedConfig()
- {
- for(std::vector<std::string>::const_iterator pi = this->Prefixes.begin();
- pi != this->Prefixes.end(); ++pi)
- {
- if(this->SearchPrefix(*pi))
- {
- return true;
- }
- }
- return false;
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::FindFrameworkConfig()
- {
- for(std::vector<std::string>::const_iterator i = this->Prefixes.begin();
- i != this->Prefixes.end(); ++i)
- {
- if(this->SearchFrameworkPrefix(*i))
- {
- return true;
- }
- }
- return false;
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::FindAppBundleConfig()
- {
- for(std::vector<std::string>::const_iterator i = this->Prefixes.begin();
- i != this->Prefixes.end(); ++i)
- {
- if(this->SearchAppBundlePrefix(*i))
- {
- return true;
- }
- }
- return false;
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::ReadListFile(const char* f)
- {
- if(this->Makefile->ReadListFile(this->Makefile->GetCurrentListFile(),f))
- {
- return true;
- }
- std::string e = "Error reading CMake code from \"";
- e += f;
- e += "\".";
- this->SetError(e.c_str());
- return false;
- }
- //----------------------------------------------------------------------------
- void cmFindPackageCommand::AppendToProperty(const char* propertyName)
- {
- std::string propertyValue;
- const char *prop =
- this->Makefile->GetCMakeInstance()->GetProperty(propertyName);
- if (prop && *prop)
- {
- propertyValue = prop;
- std::vector<std::string> contents;
- cmSystemTools::ExpandListArgument(propertyValue, contents, false);
- bool alreadyInserted = false;
- for(std::vector<std::string>::const_iterator it = contents.begin();
- it != contents.end(); ++ it )
- {
- if (*it == this->Name)
- {
- alreadyInserted = true;
- break;
- }
- }
- if (!alreadyInserted)
- {
- propertyValue += ";";
- propertyValue += this->Name;
- }
- }
- else
- {
- propertyValue = this->Name;
- }
- this->Makefile->GetCMakeInstance()->SetProperty(propertyName,
- propertyValue.c_str());
- }
- //----------------------------------------------------------------------------
- void cmFindPackageCommand::AppendSuccessInformation()
- {
- std::string found = this->Name;
- found += "_FOUND";
- std::string upperFound = cmSystemTools::UpperCase(found);
- const char* upperResult = this->Makefile->GetDefinition(upperFound.c_str());
- const char* result = this->Makefile->GetDefinition(found.c_str());
- if ((cmSystemTools::IsOn(result)) || (cmSystemTools::IsOn(upperResult)))
- {
- this->AppendToProperty("PACKAGES_FOUND");
- if (!this->Quiet)
- {
- this->AppendToProperty("ENABLED_FEATURES");
- }
- }
- else
- {
- this->AppendToProperty("PACKAGES_NOT_FOUND");
- if (!this->Quiet)
- {
- this->AppendToProperty("DISABLED_FEATURES");
- }
- }
- }
- //----------------------------------------------------------------------------
- void cmFindPackageCommand::AddUserPath(std::string const& p)
- {
- std::string userPath = p;
- cmSystemTools::ExpandRegistryValues(userPath);
- this->UserPaths.push_back(userPath);
- }
- //----------------------------------------------------------------------------
- void cmFindPackageCommand::ComputePrefixes()
- {
- std::vector<std::string>& prefixes = this->Prefixes;
- std::set<cmStdString> emmitted;
- if(!this->NoCMakeEnvironmentPath && !this->NoDefaultPath)
- {
- // Check the environment variable with the same name as the cache
- // entry.
- std::string env;
- if(cmSystemTools::GetEnv(this->Variable.c_str(), env) && env.length() > 0)
- {
- cmSystemTools::ConvertToUnixSlashes(env);
- this->AddPathInternal(prefixes, env, EnvPath, &emmitted);
- }
- this->AddEnvPath(prefixes, "CMAKE_PREFIX_PATH", &emmitted);
- this->AddEnvPath(prefixes, "CMAKE_FRAMEWORK_PATH", &emmitted);
- this->AddEnvPath(prefixes, "CMAKE_APPBUNDLE_PATH", &emmitted);
- }
- if(!this->NoCMakePath && !this->NoDefaultPath)
- {
- this->AddCMakePath(prefixes, "CMAKE_PREFIX_PATH", &emmitted);
- this->AddCMakePath(prefixes, "CMAKE_FRAMEWORK_PATH", &emmitted);
- this->AddCMakePath(prefixes, "CMAKE_APPBUNDLE_PATH", &emmitted);
- }
- if(!this->NoSystemEnvironmentPath && !this->NoDefaultPath)
- {
- // 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::vector<std::string>::iterator i = tmp.begin();
- i != tmp.end(); ++i)
- {
- std::string const& d = *i;
- // If the path is a PREFIX/bin case then add its parent instead.
- if(d.size() >= 4 && strcmp(d.c_str()+d.size()-4, "/bin") == 0 ||
- d.size() >= 5 && strcmp(d.c_str()+d.size()-5, "/sbin") == 0)
- {
- this->AddPathInternal(prefixes,
- cmSystemTools::GetFilenamePath(d),
- EnvPath, &emmitted);
- }
- else
- {
- this->AddPathInternal(prefixes, d, EnvPath, &emmitted);
- }
- }
- }
- if(!this->NoBuilds && !this->NoDefaultPath)
- {
- // It is likely that CMake will have recently built the project.
- for(int i=1; i <= 10; ++i)
- {
- cmOStringStream r;
- r <<
- "[HKEY_CURRENT_USER\\Software\\Kitware\\CMakeSetup\\"
- "Settings\\StartPath;WhereBuild" << i << "]";
- std::string f = r.str();
- cmSystemTools::ExpandRegistryValues(f);
- cmSystemTools::ConvertToUnixSlashes(f);
- if(cmSystemTools::FileIsFullPath(f.c_str()) &&
- cmSystemTools::FileIsDirectory(f.c_str()))
- {
- this->AddPathInternal(prefixes, f, FullPath, &emmitted);
- }
- }
- }
- if(!this->NoCMakeSystemPath && !this->NoDefaultPath)
- {
- this->AddCMakePath(prefixes, "CMAKE_SYSTEM_PREFIX_PATH", &emmitted);
- this->AddCMakePath(prefixes, "CMAKE_SYSTEM_FRAMEWORK_PATH", &emmitted);
- this->AddCMakePath(prefixes, "CMAKE_SYSTEM_APPBUNDLE_PATH", &emmitted);
- }
- if(!this->UserPaths.empty())
- {
- // Add paths specified by the caller.
- this->AddPathsInternal(prefixes, this->UserPaths, CMakePath, &emmitted);
- }
- // Construct the final set of prefixes.
- this->RerootPaths(prefixes);
- // Add a trailing slash to all prefixes to aid the search process.
- for(std::vector<std::string>::iterator i = prefixes.begin();
- i != prefixes.end(); ++i)
- {
- std::string& prefix = *i;
- if(prefix[prefix.size()-1] != '/')
- {
- prefix += "/";
- }
- }
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::SearchDirectory(std::string const& dir)
- {
- assert(!dir.empty() && dir[dir.size()-1] == '/');
- // Check each path suffix on this directory.
- for(std::vector<std::string>::const_iterator
- si = this->SearchPathSuffixes.begin();
- si != this->SearchPathSuffixes.end(); ++si)
- {
- std::string d = dir;
- if(!si->empty())
- {
- d += *si;
- d += "/";
- }
- if(this->CheckDirectory(d))
- {
- return true;
- }
- }
- return false;
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::CheckDirectory(std::string const& dir)
- {
- assert(!dir.empty() && dir[dir.size()-1] == '/');
- // Look for the file in this directory.
- std::string d = dir.substr(0, dir.size()-1);
- if(this->FindConfigFile(d, this->FileFound))
- {
- return true;
- }
- return false;
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::FindConfigFile(std::string const& dir,
- std::string& file)
- {
- for(std::vector<std::string>::const_iterator ci = this->Configs.begin();
- ci != this->Configs.end(); ++ci)
- {
- file = dir;
- file += "/";
- file += *ci;
- if(this->DebugMode)
- {
- fprintf(stderr, "Checking file [%s]\n", file.c_str());
- }
- if(cmSystemTools::FileExists(file.c_str(), true))
- {
- return true;
- }
- }
- return false;
- }
- //----------------------------------------------------------------------------
- #include <cmsys/Directory.hxx>
- #include <cmsys/Glob.hxx>
- #include <cmsys/String.h>
- #include <cmsys/auto_ptr.hxx>
- class cmFileList;
- class cmFileListGeneratorBase
- {
- protected:
- bool Consider(std::string const& fullPath, cmFileList& listing);
- private:
- bool Search(cmFileList&);
- virtual bool Search(std::string const& parent, cmFileList&) = 0;
- virtual cmsys::auto_ptr<cmFileListGeneratorBase> Clone() const = 0;
- friend class cmFileList;
- cmFileListGeneratorBase* SetNext(cmFileListGeneratorBase const& next);
- cmsys::auto_ptr<cmFileListGeneratorBase> Next;
- };
- class cmFileList
- {
- public:
- cmFileList(): First(), Last(0) {}
- 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.get())
- {
- return this->First->Search(*this);
- }
- return false;
- }
- private:
- virtual bool Visit(std::string const& fullPath) = 0;
- friend class cmFileListGeneratorBase;
- cmsys::auto_ptr<cmFileListGeneratorBase> First;
- cmFileListGeneratorBase* Last;
- };
- class cmFindPackageFileList: public cmFileList
- {
- public:
- cmFindPackageFileList(cmFindPackageCommand* fpc,
- bool use_suffixes = true):
- cmFileList(), FPC(fpc), UseSuffixes(use_suffixes) {}
- private:
- bool Visit(std::string const& fullPath)
- {
- if(this->UseSuffixes)
- {
- return this->FPC->SearchDirectory(fullPath);
- }
- else
- {
- 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.get())
- {
- return this->Next->Search(fullPath + "/", listing);
- }
- else
- {
- return listing.Visit(fullPath + "/");
- }
- }
- class cmFileListGeneratorFixed: public cmFileListGeneratorBase
- {
- public:
- cmFileListGeneratorFixed(std::string const& str):
- cmFileListGeneratorBase(), String(str) {}
- cmFileListGeneratorFixed(cmFileListGeneratorFixed const& r):
- cmFileListGeneratorBase(), String(r.String) {}
- private:
- std::string String;
- virtual bool Search(std::string const& parent, cmFileList& lister)
- {
- std::string fullPath = parent + this->String;
- return this->Consider(fullPath, lister);
- }
- virtual cmsys::auto_ptr<cmFileListGeneratorBase> Clone() const
- {
- cmsys::auto_ptr<cmFileListGeneratorBase>
- g(new cmFileListGeneratorFixed(*this));
- return g;
- }
- };
- class cmFileListGeneratorEnumerate: public cmFileListGeneratorBase
- {
- public:
- cmFileListGeneratorEnumerate(const char* p1, const char* p2):
- cmFileListGeneratorBase()
- {
- this->Vector.push_back(p1);
- this->Vector.push_back(p2);
- }
- cmFileListGeneratorEnumerate(cmFileListGeneratorEnumerate const& r):
- cmFileListGeneratorBase(), Vector(r.Vector) {}
- private:
- std::vector<std::string> Vector;
- virtual bool Search(std::string const& parent, cmFileList& lister)
- {
- for(std::vector<std::string>::const_iterator i = this->Vector.begin();
- i != this->Vector.end(); ++i)
- {
- if(this->Consider(parent + *i, lister))
- {
- return true;
- }
- }
- return false;
- }
- virtual cmsys::auto_ptr<cmFileListGeneratorBase> Clone() const
- {
- cmsys::auto_ptr<cmFileListGeneratorBase>
- g(new cmFileListGeneratorEnumerate(*this));
- return g;
- }
- };
- class cmFileListGeneratorProject: public cmFileListGeneratorBase
- {
- public:
- cmFileListGeneratorProject(std::vector<std::string> const& names):
- cmFileListGeneratorBase(), Names(names) {}
- cmFileListGeneratorProject(cmFileListGeneratorProject const& r):
- cmFileListGeneratorBase(), Names(r.Names) {}
- private:
- std::vector<std::string> const& Names;
- virtual bool Search(std::string const& parent, cmFileList& lister)
- {
- // Construct a list of matches.
- std::vector<std::string> matches;
- cmsys::Directory d;
- d.Load(parent.c_str());
- 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::vector<std::string>::const_iterator ni = this->Names.begin();
- ni != this->Names.end(); ++ni)
- {
- if(cmsysString_strncasecmp(fname, ni->c_str(),
- ni->length()) == 0)
- {
- matches.push_back(fname);
- }
- }
- }
- for(std::vector<std::string>::const_iterator i = matches.begin();
- i != matches.end(); ++i)
- {
- if(this->Consider(parent + *i, lister))
- {
- return true;
- }
- }
- return false;
- }
- virtual cmsys::auto_ptr<cmFileListGeneratorBase> Clone() const
- {
- cmsys::auto_ptr<cmFileListGeneratorBase>
- g(new cmFileListGeneratorProject(*this));
- return g;
- }
- };
- class cmFileListGeneratorMacProject: public cmFileListGeneratorBase
- {
- public:
- cmFileListGeneratorMacProject(std::vector<std::string> const& names,
- const char* ext):
- cmFileListGeneratorBase(), Names(names), Extension(ext) {}
- cmFileListGeneratorMacProject(cmFileListGeneratorMacProject const& r):
- cmFileListGeneratorBase(), Names(r.Names), Extension(r.Extension) {}
- private:
- std::vector<std::string> const& Names;
- std::string Extension;
- virtual bool Search(std::string const& parent, cmFileList& lister)
- {
- // Construct a list of matches.
- std::vector<std::string> matches;
- cmsys::Directory d;
- d.Load(parent.c_str());
- 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::vector<std::string>::const_iterator ni = this->Names.begin();
- ni != this->Names.end(); ++ni)
- {
- std::string name = *ni;
- name += this->Extension;
- if(cmsysString_strcasecmp(fname, name.c_str()) == 0)
- {
- matches.push_back(fname);
- }
- }
- }
- for(std::vector<std::string>::const_iterator i = matches.begin();
- i != matches.end(); ++i)
- {
- if(this->Consider(parent + *i, lister))
- {
- return true;
- }
- }
- return false;
- }
- virtual cmsys::auto_ptr<cmFileListGeneratorBase> Clone() const
- {
- cmsys::auto_ptr<cmFileListGeneratorBase>
- g(new cmFileListGeneratorMacProject(*this));
- return g;
- }
- };
- class cmFileListGeneratorCaseInsensitive: public cmFileListGeneratorBase
- {
- public:
- cmFileListGeneratorCaseInsensitive(std::string const& str):
- cmFileListGeneratorBase(), String(str) {}
- cmFileListGeneratorCaseInsensitive(cmFileListGeneratorCaseInsensitive const& r):
- cmFileListGeneratorBase(), String(r.String) {}
- private:
- std::string String;
- virtual bool Search(std::string const& parent, cmFileList& lister)
- {
- // Look for matching files.
- std::vector<std::string> matches;
- cmsys::Directory d;
- d.Load(parent.c_str());
- 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;
- }
- virtual cmsys::auto_ptr<cmFileListGeneratorBase> Clone() const
- {
- cmsys::auto_ptr<cmFileListGeneratorBase>
- g(new cmFileListGeneratorCaseInsensitive(*this));
- return g;
- }
- };
- class cmFileListGeneratorGlob: public cmFileListGeneratorBase
- {
- public:
- cmFileListGeneratorGlob(std::string const& str):
- cmFileListGeneratorBase(), Pattern(str) {}
- cmFileListGeneratorGlob(cmFileListGeneratorGlob const& r):
- cmFileListGeneratorBase(), Pattern(r.Pattern) {}
- private:
- std::string Pattern;
- virtual bool Search(std::string const& parent, cmFileList& lister)
- {
- // Glob the set of matching files.
- std::string expr = parent;
- expr += 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::vector<std::string>::const_iterator fi = files.begin();
- fi != files.end(); ++fi)
- {
- if(cmSystemTools::FileIsDirectory(fi->c_str()))
- {
- if(this->Consider(*fi, lister))
- {
- return true;
- }
- }
- }
- return false;
- }
- virtual cmsys::auto_ptr<cmFileListGeneratorBase> Clone() const
- {
- cmsys::auto_ptr<cmFileListGeneratorBase>
- g(new cmFileListGeneratorGlob(*this));
- return g;
- }
- };
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::SearchPrefix(std::string const& prefix_in)
- {
- assert(!prefix_in.empty() && prefix_in[prefix_in.size()-1] == '/');
- if(this->DebugMode)
- {
- fprintf(stderr, "Checking prefix [%s]\n", prefix_in.c_str());
- }
- // Skip this if the prefix does not exist.
- if(!cmSystemTools::FileIsDirectory(prefix_in.c_str()))
- {
- 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/(share|lib)/(Foo|foo|FOO).*/
- {
- cmFindPackageFileList lister(this);
- lister
- / cmFileListGeneratorFixed(prefix)
- / cmFileListGeneratorEnumerate("lib", "share")
- / cmFileListGeneratorProject(this->Names);
- if(lister.Search())
- {
- return true;
- }
- }
- // PREFIX/(share|lib)/(Foo|foo|FOO).*/(cmake|CMake)/
- {
- cmFindPackageFileList lister(this);
- lister
- / cmFileListGeneratorFixed(prefix)
- / cmFileListGeneratorEnumerate("lib", "share")
- / cmFileListGeneratorProject(this->Names)
- / cmFileListGeneratorCaseInsensitive("cmake");
- if(lister.Search())
- {
- return true;
- }
- }
- return false;
- }
- //----------------------------------------------------------------------------
- bool cmFindPackageCommand::SearchFrameworkPrefix(std::string const& prefix_in)
- {
- assert(!prefix_in.empty() && prefix_in[prefix_in.size()-1] == '/');
- if(this->DebugMode)
- {
- fprintf(stderr, "Checking framework prefix [%s]\n", prefix_in.c_str());
- }
- // 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[prefix_in.size()-1] == '/');
- if(this->DebugMode)
- {
- fprintf(stderr, "Checking bundle prefix [%s]\n", prefix_in.c_str());
- }
- // 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: Version numbers? Perhaps have a listing component class that
- // sorts by lexicographic and numerical ordering. Also try to match
- // some command argument for the version. Alternatively provide an
- // API that just returns a list of valid directories? Perhaps push a
- // scope and try loading the target file just to get its version
- // number? Could add a foo-version.cmake or FooVersion.cmake file
- // in the projects that contains just version information.
- // TODO: Debug cmsys::Glob double slash problem.
- // TODO: Add registry entries after cmake system search path?
- // Currently the user must specify them with the PATHS option.
- //
- // [HKEY_CURRENT_USER\Software\*\Foo*;InstallDir]
- // [HKEY_CURRENT_USER\Software\*\*\Foo*;InstallDir]
- // [HKEY_LOCAL_MACHINE\Software\*\Foo*;InstallDir]
- // [HKEY_LOCAL_MACHINE\Software\*\*\Foo*;InstallDir]
|