diff options
author | Peter Kümmel <syntheticpp@gmx.net> | 2013-02-16 11:54:19 (GMT) |
---|---|---|
committer | Peter Kümmel <syntheticpp@gmx.net> | 2013-02-16 12:45:28 (GMT) |
commit | bbea30eec88fe6dc98d716f16141c6aab6a75314 (patch) | |
tree | 37d60f754e24593b3f8a252999c9ff70325c7f91 /Source | |
parent | 5698d9b86549d1252d5748e818dec1530c7a4296 (diff) | |
download | CMake-bbea30eec88fe6dc98d716f16141c6aab6a75314.zip CMake-bbea30eec88fe6dc98d716f16141c6aab6a75314.tar.gz CMake-bbea30eec88fe6dc98d716f16141c6aab6a75314.tar.bz2 |
Ninja: remove implicit dependency on custom command outputs
Revert aa2e1e9caef92b10083a03c2ded5c937703e69b8
With this commit all files are rebuild when only one moc file has changed.
BUG 0013874
Diffstat (limited to 'Source')
-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 f8e4399..80a1a9b 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -552,7 +552,7 @@ cmNinjaTargetGenerator cmCustomCommand const* cc = (*si)->GetCustomCommand(); const std::vector<std::string>& ccoutputs = cc->GetOutputs(); std::transform(ccoutputs.begin(), ccoutputs.end(), - std::back_inserter(implicitDeps), MapToNinjaPath()); + std::back_inserter(orderOnlyDeps), MapToNinjaPath()); } // If the source file is GENERATED and does not have a custom command |