diff options
author | Peter Kümmel <syntheticpp@gmx.net> | 2012-10-03 16:09:49 (GMT) |
---|---|---|
committer | Peter Kümmel <syntheticpp@gmx.net> | 2012-10-03 16:09:49 (GMT) |
commit | aa2e1e9caef92b10083a03c2ded5c937703e69b8 (patch) | |
tree | 2a0fabc4384b957c82071aaebd809e4855ce5094 /Source/cmNinjaTargetGenerator.cxx | |
parent | 17d4527032c4a7e626bbbdb0d4d88bd133c78977 (diff) | |
download | CMake-aa2e1e9caef92b10083a03c2ded5c937703e69b8.zip CMake-aa2e1e9caef92b10083a03c2ded5c937703e69b8.tar.gz CMake-aa2e1e9caef92b10083a03c2ded5c937703e69b8.tar.bz2 |
Ninja: implicit dependency for custom command files
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index 612e047..45fa217 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -547,7 +547,7 @@ cmNinjaTargetGenerator cmCustomCommand const* cc = (*si)->GetCustomCommand(); const std::vector<std::string>& ccoutputs = cc->GetOutputs(); std::transform(ccoutputs.begin(), ccoutputs.end(), - std::back_inserter(orderOnlyDeps), MapToNinjaPath()); + std::back_inserter(implicitDeps), MapToNinjaPath()); } // If the source file is GENERATED and does not have a custom command |