mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-14 21:41:06 -05:00
Ninja: don't pollute current dir when using gui (#13495)
This commit is contained in:
@@ -662,9 +662,19 @@ cmNinjaTargetGenerator
|
||||
|
||||
void
|
||||
cmNinjaTargetGenerator
|
||||
::EnsureDirectoryExists(const std::string& dir) const
|
||||
::EnsureDirectoryExists(const std::string& path) const
|
||||
{
|
||||
cmSystemTools::MakeDirectory(dir.c_str());
|
||||
if (cmSystemTools::FileIsFullPath(path.c_str()))
|
||||
{
|
||||
cmSystemTools::MakeDirectory(path.c_str());
|
||||
}
|
||||
else
|
||||
{
|
||||
const std::string fullPath = std::string(this->GetGlobalGenerator()->
|
||||
GetCMakeInstance()->GetHomeOutputDirectory())
|
||||
+ "/" + path;
|
||||
cmSystemTools::MakeDirectory(fullPath.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user