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