summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorPeter Kuemmel <syntheticpp@gmx.net>2012-04-06 19:07:32 (GMT)
committerPeter Kuemmel <syntheticpp@gmx.net>2012-04-06 19:07:32 (GMT)
commit73426ac774ab7f74ed6ef3339f075bcebb5336eb (patch)
tree991ce10e581dcd44e5f7ff6c8ec1568ca142a479 /Source
parent8217c26813d1a1f6a81c2fe15f20ee1795d428e5 (diff)
downloadCMake-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.cxx9
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) {