cmake: Make FindCacheFile a static method
It does not need access to member data.
This commit is contained in:
parent
ea69e03afa
commit
cc770e7670
|
@ -1046,7 +1046,7 @@ const char* cmake::GetHomeOutputDirectory() const
|
||||||
return this->State->GetBinaryDirectory();
|
return this->State->GetBinaryDirectory();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string cmake::FindCacheFile(const std::string& binaryDir) const
|
std::string cmake::FindCacheFile(const std::string& binaryDir)
|
||||||
{
|
{
|
||||||
std::string cachePath = binaryDir;
|
std::string cachePath = binaryDir;
|
||||||
cmSystemTools::ConvertToUnixSlashes(cachePath);
|
cmSystemTools::ConvertToUnixSlashes(cachePath);
|
||||||
|
|
|
@ -194,7 +194,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
///! Return the full path to where the CMakeCache.txt file should be.
|
///! Return the full path to where the CMakeCache.txt file should be.
|
||||||
std::string FindCacheFile(const std::string& binaryDir) const;
|
static std::string FindCacheFile(const std::string& binaryDir);
|
||||||
|
|
||||||
///! Return the global generator assigned to this instance of cmake
|
///! Return the global generator assigned to this instance of cmake
|
||||||
void SetGlobalGenerator(cmGlobalGenerator*);
|
void SetGlobalGenerator(cmGlobalGenerator*);
|
||||||
|
|
Loading…
Reference in New Issue