| 5058 | } |
| 5059 | |
| 5060 | void cmVisualStudio10TargetGenerator::WriteSdkStyleEvents( |
| 5061 | Elem& e0, std::string const& configName) |
| 5062 | { |
| 5063 | this->WriteSdkStyleEvent(e0, "PreLink", "BeforeTargets", "Link", |
| 5064 | this->GeneratorTarget->GetPreLinkCommands(), |
| 5065 | configName); |
| 5066 | this->WriteSdkStyleEvent(e0, "PreBuild", "BeforeTargets", "PreBuildEvent", |
| 5067 | this->GeneratorTarget->GetPreBuildCommands(), |
| 5068 | configName); |
| 5069 | this->WriteSdkStyleEvent(e0, "PostBuild", "AfterTargets", "PostBuildEvent", |
| 5070 | this->GeneratorTarget->GetPostBuildCommands(), |
| 5071 | configName); |
| 5072 | } |
| 5073 | |
| 5074 | void cmVisualStudio10TargetGenerator::WriteSdkStyleEvent( |
| 5075 | Elem& e0, std::string const& name, std::string const& when, |
no test coverage detected