diff options
author | Peter Kuemmel <syntheticpp@gmx.net> | 2012-04-06 19:07:32 (GMT) |
---|---|---|
committer | Peter Kuemmel <syntheticpp@gmx.net> | 2012-04-06 19:07:32 (GMT) |
commit | 73426ac774ab7f74ed6ef3339f075bcebb5336eb (patch) | |
tree | 991ce10e581dcd44e5f7ff6c8ec1568ca142a479 /Source | |
parent | 8217c26813d1a1f6a81c2fe15f20ee1795d428e5 (diff) | |
download | CMake-73426ac774ab7f74ed6ef3339f075bcebb5336eb.zip CMake-73426ac774ab7f74ed6ef3339f075bcebb5336eb.tar.gz CMake-73426ac774ab7f74ed6ef3339f075bcebb5336eb.tar.bz2 |
Ninja: no 16:9 screens for the cmake team ;)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmNinjaNormalTargetGenerator.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx index 2bfe814..25d742b 100644 --- a/Source/cmNinjaNormalTargetGenerator.cxx +++ b/Source/cmNinjaNormalTargetGenerator.cxx @@ -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()); } -void cmNinjaNormalTargetGenerator::EnsureParentDirectoryExists(const std::string& path) +void +cmNinjaNormalTargetGenerator +::EnsureParentDirectoryExists(const std::string& path) { EnsureDirectoryExists(cmSystemTools::GetParentDirectory(path.c_str())); } - void cmNinjaNormalTargetGenerator::Generate() { if (!this->TargetLinkLanguage) { |