| 864 | } |
| 865 | |
| 866 | void cmLocalNinjaGenerator::AddCustomCommandTarget(cmCustomCommand const* cc, |
| 867 | cmGeneratorTarget* target) |
| 868 | { |
| 869 | CustomCommandTargetMap::value_type v(cc, std::set<cmGeneratorTarget*>()); |
| 870 | std::pair<CustomCommandTargetMap::iterator, bool> ins = |
| 871 | this->CustomCommandTargets.insert(v); |
| 872 | if (ins.second) { |
| 873 | this->CustomCommands.push_back(cc); |
| 874 | } |
| 875 | ins.first->second.insert(target); |
| 876 | } |
| 877 | |
| 878 | void cmLocalNinjaGenerator::WriteCustomCommandBuildStatements( |
| 879 | std::string const& fileConfig) |
no test coverage detected