| 3330 | } |
| 3331 | |
| 3332 | std::string cmVisualStudio10TargetGenerator::GetAssemblyName( |
| 3333 | std::string const& config) const |
| 3334 | { |
| 3335 | std::string postfixName = |
| 3336 | cmStrCat(cmSystemTools::UpperCase(config), "_POSTFIX"); |
| 3337 | std::string assemblyName = this->GeneratorTarget->GetOutputName( |
| 3338 | config, cmStateEnums::RuntimeBinaryArtifact); |
| 3339 | if (cmValue postfix = this->GeneratorTarget->GetProperty(postfixName)) { |
| 3340 | assemblyName += *postfix; |
| 3341 | } |
| 3342 | return assemblyName; |
| 3343 | } |
| 3344 | |
| 3345 | bool cmVisualStudio10TargetGenerator::ComputeClOptions() |
| 3346 | { |
nothing calls this directly
no test coverage detected