mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 19:30:13 -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>
|
||||
cmFastbuildNormalTargetGenerator::GetManifestsAsFastbuildPath() const
|
||||
{
|
||||
|
||||
@@ -157,4 +157,5 @@ private:
|
||||
std::vector<std::string> GetManifestsAsFastbuildPath() const;
|
||||
|
||||
void EnsureDirectoryExists(std::string const& path) const;
|
||||
void EnsureParentDirectoryExists(std::string const& path) const;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user