mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 20:29:56 -06:00
FASTBuild: Add internal helper for intermediate directory creation
This commit is contained in:
@@ -523,6 +523,12 @@ void cmFastbuildNormalTargetGenerator::EnsureDirectoryExists(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void cmFastbuildNormalTargetGenerator::EnsureParentDirectoryExists(
|
||||||
|
std::string const& path) const
|
||||||
|
{
|
||||||
|
this->EnsureDirectoryExists(cmSystemTools::GetParentDirectory(path));
|
||||||
|
}
|
||||||
|
|
||||||
std::vector<std::string>
|
std::vector<std::string>
|
||||||
cmFastbuildNormalTargetGenerator::GetManifestsAsFastbuildPath() const
|
cmFastbuildNormalTargetGenerator::GetManifestsAsFastbuildPath() const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -157,4 +157,5 @@ private:
|
|||||||
std::vector<std::string> GetManifestsAsFastbuildPath() const;
|
std::vector<std::string> GetManifestsAsFastbuildPath() const;
|
||||||
|
|
||||||
void EnsureDirectoryExists(std::string const& path) const;
|
void EnsureDirectoryExists(std::string const& path) const;
|
||||||
|
void EnsureParentDirectoryExists(std::string const& path) const;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user