Ninja: remove implicit dependency on custom command outputs

Revert aa2e1e9cae
With this commit all files are rebuild when only one moc file has changed.

BUG 0013874
This commit is contained in:
Peter Kümmel 2013-02-16 12:54:19 +01:00
parent 5698d9b865
commit bbea30eec8
1 changed files with 1 additions and 1 deletions

View File

@ -552,7 +552,7 @@ cmNinjaTargetGenerator
cmCustomCommand const* cc = (*si)->GetCustomCommand(); cmCustomCommand const* cc = (*si)->GetCustomCommand();
const std::vector<std::string>& ccoutputs = cc->GetOutputs(); const std::vector<std::string>& ccoutputs = cc->GetOutputs();
std::transform(ccoutputs.begin(), ccoutputs.end(), 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 // If the source file is GENERATED and does not have a custom command