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

Method GetGeneratedISPCObjects

Source/cmGeneratorTarget.cxx:4410–4422  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4408}
4409
4410std::vector<std::string> cmGeneratorTarget::GetGeneratedISPCObjects(
4411 std::string const& config) const
4412{
4413 std::string config_upper;
4414 if (!config.empty()) {
4415 config_upper = cmSystemTools::UpperCase(config);
4416 }
4417 auto iter = this->ISPCGeneratedObjects.find(config_upper);
4418 if (iter == this->ISPCGeneratedObjects.end()) {
4419 return std::vector<std::string>{};
4420 }
4421 return iter->second;
4422}
4423
4424std::string cmGeneratorTarget::GetFrameworkVersion() const
4425{

Callers 5

WriteTargetBuildRulesMethod · 0.80
WriteObjectsStringsMethod · 0.80
AppendTargetDependsMethod · 0.80
WriteLinkStatementMethod · 0.80

Calls 3

emptyMethod · 0.45
findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected