diff options
author | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-12 22:52:46 (GMT) |
---|---|---|
committer | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-12 22:52:46 (GMT) |
commit | 43200c145d9690701f0cc6dbd5c60ee3ece5edf8 (patch) | |
tree | 126a97e913a088f18bfb5d91e789f19b04d8eb27 /Source/cmNinjaNormalTargetGenerator.cxx | |
parent | 12cc6434bfad53a4bc45b0ab36d27489346dfadc (diff) | |
download | CMake-43200c145d9690701f0cc6dbd5c60ee3ece5edf8.zip CMake-43200c145d9690701f0cc6dbd5c60ee3ece5edf8.tar.gz CMake-43200c145d9690701f0cc6dbd5c60ee3ece5edf8.tar.bz2 |
Ninja: work with ninja/master, don't compile rc files with cl
Ninja generates for paths with spaces wrong results for $out.d,
using the new DEP_FILE variable instead.
Diffstat (limited to 'Source/cmNinjaNormalTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaNormalTargetGenerator.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx index df1418f..81715dc 100644 --- a/Source/cmNinjaNormalTargetGenerator.cxx +++ b/Source/cmNinjaNormalTargetGenerator.cxx @@ -55,21 +55,6 @@ cmNinjaNormalTargetGenerator::~cmNinjaNormalTargetGenerator() { } -void -cmNinjaNormalTargetGenerator -::EnsureDirectoryExists(const std::string& dir) -{ - cmSystemTools::MakeDirectory(dir.c_str()); -} - -void -cmNinjaNormalTargetGenerator -::EnsureParentDirectoryExists(const std::string& path) -{ - EnsureDirectoryExists(cmSystemTools::GetParentDirectory(path.c_str())); -} - - void cmNinjaNormalTargetGenerator::Generate() { if (!this->TargetLinkLanguage) { |