cmake: Add support for "--build ." in subdirectory (#15696)
This commit is contained in:
parent
17ecfd8210
commit
ba1065ab7b
|
@ -2745,6 +2745,25 @@ int cmake::Build(const std::string& dir,
|
|||
}
|
||||
std::string cachePath = dir;
|
||||
cmSystemTools::ConvertToUnixSlashes(cachePath);
|
||||
std::string cacheFile = cachePath;
|
||||
cacheFile += "/CMakeCache.txt";
|
||||
if(!cmSystemTools::FileExists(cacheFile.c_str()))
|
||||
{
|
||||
// search in parent directories for cache
|
||||
std::string cmakeFiles = cachePath;
|
||||
cmakeFiles += "/CMakeFiles";
|
||||
if(cmSystemTools::FileExists(cmakeFiles.c_str()))
|
||||
{
|
||||
std::string cachePathFound =
|
||||
cmSystemTools::FileExistsInParentDirectories(
|
||||
"CMakeCache.txt", cachePath.c_str(), "/");
|
||||
if(!cachePathFound.empty())
|
||||
{
|
||||
cachePath = cmSystemTools::GetFilenamePath(cachePathFound);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(!this->LoadCache(cachePath))
|
||||
{
|
||||
std::cerr << "Error: could not load cache\n";
|
||||
|
|
Loading…
Reference in New Issue