Ninja: no 16:9 screens for the cmake team ;)

This commit is contained in:
Peter Kuemmel 2012-04-06 21:07:32 +02:00
parent 8217c26813
commit 73426ac774
1 changed files with 6 additions and 3 deletions

View File

@ -55,18 +55,21 @@ cmNinjaNormalTargetGenerator::~cmNinjaNormalTargetGenerator()
{ {
} }
void cmNinjaNormalTargetGenerator::EnsureDirectoryExists(const std::string& dir) void
cmNinjaNormalTargetGenerator
::EnsureDirectoryExists(const std::string& dir)
{ {
cmSystemTools::MakeDirectory(dir.c_str()); cmSystemTools::MakeDirectory(dir.c_str());
} }
void cmNinjaNormalTargetGenerator::EnsureParentDirectoryExists(const std::string& path) void
cmNinjaNormalTargetGenerator
::EnsureParentDirectoryExists(const std::string& path)
{ {
EnsureDirectoryExists(cmSystemTools::GetParentDirectory(path.c_str())); EnsureDirectoryExists(cmSystemTools::GetParentDirectory(path.c_str()));
} }
void cmNinjaNormalTargetGenerator::Generate() void cmNinjaNormalTargetGenerator::Generate()
{ {
if (!this->TargetLinkLanguage) { if (!this->TargetLinkLanguage) {