2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2003-01-22 01:15:22 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2003-01-22 01:15:22 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2003-01-22 01:15:22 +03:00
|
|
|
#ifndef cmFindPackageCommand_h
|
|
|
|
#define cmFindPackageCommand_h
|
|
|
|
|
2008-01-17 17:02:31 +03:00
|
|
|
#include "cmFindCommon.h"
|
|
|
|
|
|
|
|
class cmFindPackageFileList;
|
2003-01-22 01:15:22 +03:00
|
|
|
|
|
|
|
/** \class cmFindPackageCommand
|
|
|
|
* \brief Load settings from an external project.
|
|
|
|
*
|
|
|
|
* cmFindPackageCommand
|
|
|
|
*/
|
2008-01-17 17:02:31 +03:00
|
|
|
class cmFindPackageCommand : public cmFindCommon
|
2003-01-22 01:15:22 +03:00
|
|
|
{
|
|
|
|
public:
|
2008-01-17 17:02:31 +03:00
|
|
|
cmFindPackageCommand();
|
|
|
|
|
2003-01-22 01:15:22 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2007-12-15 22:17:21 +03:00
|
|
|
virtual cmCommand* Clone()
|
2003-01-22 01:15:22 +03:00
|
|
|
{
|
|
|
|
return new cmFindPackageCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2003-01-22 01:15:22 +03:00
|
|
|
|
2005-12-07 19:39:08 +03:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual bool IsScriptable() const { return true; }
|
2005-12-07 19:39:08 +03:00
|
|
|
|
2003-01-22 01:15:22 +03:00
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetName() const { return "find_package";}
|
2003-01-22 01:15:22 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetTerseDocumentation() const
|
2003-01-22 01:15:22 +03:00
|
|
|
{
|
|
|
|
return "Load settings for an external project.";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetFullDocumentation() const;
|
2007-12-15 22:17:21 +03:00
|
|
|
|
2008-01-17 17:02:31 +03:00
|
|
|
cmTypeMacro(cmFindPackageCommand, cmFindCommon);
|
2010-11-12 18:47:28 +03:00
|
|
|
protected:
|
|
|
|
virtual void GenerateDocumentation();
|
2003-01-22 01:15:22 +03:00
|
|
|
private:
|
2008-01-17 17:02:31 +03:00
|
|
|
void AppendSuccessInformation();
|
2012-05-06 18:32:10 +04:00
|
|
|
void AppendToFoundProperty(bool found);
|
2008-09-07 14:52:06 +04:00
|
|
|
void SetModuleVariables(const std::string& components);
|
2008-01-17 17:02:31 +03:00
|
|
|
bool FindModule(bool& found);
|
2008-12-09 18:08:54 +03:00
|
|
|
void AddFindDefinition(const char* var, const char* val);
|
|
|
|
void RestoreFindDefinitions();
|
2008-01-17 17:02:31 +03:00
|
|
|
bool HandlePackageMode();
|
2009-10-07 22:37:30 +04:00
|
|
|
bool FindConfig();
|
2008-01-17 17:02:31 +03:00
|
|
|
bool FindPrefixedConfig();
|
|
|
|
bool FindFrameworkConfig();
|
|
|
|
bool FindAppBundleConfig();
|
2009-01-22 21:18:40 +03:00
|
|
|
enum PolicyScopeRule { NoPolicyScope, DoPolicyScope };
|
|
|
|
bool ReadListFile(const char* f, PolicyScopeRule psr);
|
2008-01-29 04:38:48 +03:00
|
|
|
void StoreVersionFound();
|
2003-01-22 01:15:22 +03:00
|
|
|
|
2008-01-17 17:02:31 +03:00
|
|
|
void ComputePrefixes();
|
2008-06-06 02:20:16 +04:00
|
|
|
void AddPrefixesCMakeEnvironment();
|
|
|
|
void AddPrefixesCMakeVariable();
|
|
|
|
void AddPrefixesSystemEnvironment();
|
2011-04-13 18:36:45 +04:00
|
|
|
void AddPrefixesUserRegistry();
|
2011-04-13 21:14:41 +04:00
|
|
|
void AddPrefixesSystemRegistry();
|
2008-06-06 02:20:16 +04:00
|
|
|
void AddPrefixesBuilds();
|
|
|
|
void AddPrefixesCMakeSystemVariable();
|
2008-06-09 23:08:59 +04:00
|
|
|
void AddPrefixesUserGuess();
|
|
|
|
void AddPrefixesUserHints();
|
2009-09-01 22:04:27 +04:00
|
|
|
void LoadPackageRegistryDir(std::string const& dir);
|
2011-04-13 21:17:42 +04:00
|
|
|
void LoadPackageRegistryWinUser();
|
|
|
|
void LoadPackageRegistryWinSystem();
|
|
|
|
void LoadPackageRegistryWin(bool user, unsigned int view);
|
2009-09-01 22:04:27 +04:00
|
|
|
bool CheckPackageRegistryEntry(std::istream& is);
|
2008-01-17 17:02:31 +03:00
|
|
|
bool SearchDirectory(std::string const& dir);
|
|
|
|
bool CheckDirectory(std::string const& dir);
|
|
|
|
bool FindConfigFile(std::string const& dir, std::string& file);
|
2008-01-29 04:38:48 +03:00
|
|
|
bool CheckVersion(std::string const& config_file);
|
2010-08-29 19:07:39 +04:00
|
|
|
bool CheckVersionFile(std::string const& version_file,
|
|
|
|
std::string& result_version);
|
2008-01-17 17:02:31 +03:00
|
|
|
bool SearchPrefix(std::string const& prefix);
|
|
|
|
bool SearchFrameworkPrefix(std::string const& prefix_in);
|
|
|
|
bool SearchAppBundlePrefix(std::string const& prefix_in);
|
|
|
|
|
|
|
|
friend class cmFindPackageFileList;
|
|
|
|
|
2008-12-09 18:08:54 +03:00
|
|
|
struct OriginalDef { bool exists; std::string value; };
|
|
|
|
std::map<cmStdString, OriginalDef> OriginalDefs;
|
|
|
|
|
2008-01-17 17:02:31 +03:00
|
|
|
std::string CommandDocumentation;
|
2003-01-22 01:15:22 +03:00
|
|
|
cmStdString Name;
|
|
|
|
cmStdString Variable;
|
2008-01-21 16:48:33 +03:00
|
|
|
cmStdString Version;
|
|
|
|
unsigned int VersionMajor;
|
|
|
|
unsigned int VersionMinor;
|
|
|
|
unsigned int VersionPatch;
|
2008-09-10 18:11:48 +04:00
|
|
|
unsigned int VersionTweak;
|
2008-01-21 16:48:33 +03:00
|
|
|
unsigned int VersionCount;
|
2008-01-29 04:38:48 +03:00
|
|
|
bool VersionExact;
|
2008-01-17 17:02:31 +03:00
|
|
|
cmStdString FileFound;
|
2008-01-29 04:38:48 +03:00
|
|
|
cmStdString VersionFound;
|
|
|
|
unsigned int VersionFoundMajor;
|
|
|
|
unsigned int VersionFoundMinor;
|
|
|
|
unsigned int VersionFoundPatch;
|
2008-09-10 18:11:48 +04:00
|
|
|
unsigned int VersionFoundTweak;
|
2008-01-29 04:38:48 +03:00
|
|
|
unsigned int VersionFoundCount;
|
2012-02-28 18:51:10 +04:00
|
|
|
unsigned int RequiredCMakeVersion;
|
2008-01-17 17:02:31 +03:00
|
|
|
bool Quiet;
|
|
|
|
bool Required;
|
|
|
|
bool Compatibility_1_6;
|
2012-02-21 01:09:10 +04:00
|
|
|
bool UseConfigFiles;
|
2012-02-18 00:31:08 +04:00
|
|
|
bool UseFindModules;
|
2011-04-13 18:36:45 +04:00
|
|
|
bool NoUserRegistry;
|
2011-04-13 21:14:41 +04:00
|
|
|
bool NoSystemRegistry;
|
2008-01-17 17:02:31 +03:00
|
|
|
bool NoBuilds;
|
|
|
|
bool DebugMode;
|
2008-08-13 03:01:04 +04:00
|
|
|
bool UseLib64Paths;
|
2009-01-22 21:18:40 +03:00
|
|
|
bool PolicyScope;
|
2011-06-08 16:46:31 +04:00
|
|
|
std::string LibraryArchitecture;
|
2008-01-17 17:02:31 +03:00
|
|
|
std::vector<std::string> Names;
|
|
|
|
std::vector<std::string> Configs;
|
2010-08-13 02:20:47 +04:00
|
|
|
std::set<std::string> IgnoredPaths;
|
2010-08-29 19:51:44 +04:00
|
|
|
|
|
|
|
struct ConfigFileInfo { std::string filename; std::string version; };
|
|
|
|
std::vector<ConfigFileInfo> ConsideredConfigs;
|
2003-01-22 01:15:22 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|