| 243 | } |
| 244 | |
| 245 | static bool cmVS10IsTargetsFile(std::string const& path) |
| 246 | { |
| 247 | std::string const ext = cmSystemTools::GetFilenameLastExtension(path); |
| 248 | return cmSystemTools::Strucmp(ext.c_str(), ".targets") == 0; |
| 249 | } |
| 250 | |
| 251 | static VsProjectType computeProjectType(cmGeneratorTarget const* t) |
| 252 | { |
no test coverage detected
searching dependent graphs…