diff options
author | Brad King <brad.king@kitware.com> | 2012-10-09 12:38:54 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-10-09 12:38:54 (GMT) |
commit | f413d280bc3f249d631c279d9dd236cbd85fd39d (patch) | |
tree | 24fab03540db3f6279d720bb766a30cdc002e048 /Source/cmNinjaTargetGenerator.cxx | |
parent | 7da986bb6c3cb82a1853420377bb7be5fb581f81 (diff) | |
parent | aa2e1e9caef92b10083a03c2ded5c937703e69b8 (diff) | |
download | CMake-f413d280bc3f249d631c279d9dd236cbd85fd39d.zip CMake-f413d280bc3f249d631c279d9dd236cbd85fd39d.tar.gz CMake-f413d280bc3f249d631c279d9dd236cbd85fd39d.tar.bz2 |
Merge topic 'ninja-custom-command-implicit'
aa2e1e9 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 9a9c857..39f6aab 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 |