MCPcopy Create free account
hub / github.com/Kitware/CMake / GetAssemblyName

Method GetAssemblyName

Source/cmVisualStudio10TargetGenerator.cxx:3332–3343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3330}
3331
3332std::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
3345bool cmVisualStudio10TargetGenerator::ComputeClOptions()
3346{

Callers

nothing calls this directly

Calls 3

GetOutputNameMethod · 0.80
cmStrCatFunction · 0.70
GetPropertyMethod · 0.45

Tested by

no test coverage detected