2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-10-16 00:36:42 +04:00
|
|
|
#ifndef cmSearchPath_h
|
|
|
|
#define cmSearchPath_h
|
|
|
|
|
2016-09-01 21:05:48 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2014-10-16 00:36:42 +04:00
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
class cmFindCommon;
|
|
|
|
|
|
|
|
/** \class cmSearchPath
|
2014-10-17 21:07:26 +04:00
|
|
|
* \brief Container for encapsulating a set of search paths
|
2014-10-16 00:36:42 +04:00
|
|
|
*
|
|
|
|
* cmSearchPath is a container that encapsulates search path construction and
|
|
|
|
* management
|
|
|
|
*/
|
|
|
|
class cmSearchPath
|
|
|
|
{
|
|
|
|
public:
|
2014-10-17 21:07:26 +04:00
|
|
|
// cmSearchPath must be initialized from a valid pointer. The only reason
|
2016-05-31 18:15:22 +03:00
|
|
|
// for the default is to allow it to be easily used in stl containers.
|
2014-10-17 21:07:26 +04:00
|
|
|
// Attempting to initialize with a NULL value will fail an assertion
|
2016-06-27 23:44:16 +03:00
|
|
|
cmSearchPath(cmFindCommon* findCmd = CM_NULLPTR);
|
2014-10-16 00:36:42 +04:00
|
|
|
~cmSearchPath();
|
|
|
|
|
|
|
|
const std::vector<std::string>& GetPaths() const { return this->Paths; }
|
|
|
|
|
|
|
|
void ExtractWithout(const std::set<std::string>& ignore,
|
|
|
|
std::vector<std::string>& outPaths,
|
|
|
|
bool clear = false) const;
|
|
|
|
|
|
|
|
void AddPath(const std::string& path);
|
|
|
|
void AddUserPath(const std::string& path);
|
|
|
|
void AddCMakePath(const std::string& variable);
|
|
|
|
void AddEnvPath(const std::string& variable);
|
|
|
|
void AddCMakePrefixPath(const std::string& variable);
|
2015-02-18 18:54:45 +03:00
|
|
|
void AddEnvPrefixPath(const std::string& variable, bool stripBin = false);
|
2014-10-16 00:36:42 +04:00
|
|
|
void AddSuffixes(const std::vector<std::string>& suffixes);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void AddPrefixPaths(const std::vector<std::string>& paths,
|
2016-06-27 23:44:16 +03:00
|
|
|
const char* base = CM_NULLPTR);
|
|
|
|
void AddPathInternal(const std::string& path, const char* base = CM_NULLPTR);
|
2014-10-16 00:36:42 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmFindCommon* FC;
|
2014-10-16 00:36:42 +04:00
|
|
|
std::vector<std::string> Paths;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|