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

Method GetCompileFeatures

Source/cmGeneratorTarget_Options.cxx:305–313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

303}
304
305void cmGeneratorTarget::GetCompileFeatures(std::vector<std::string>& result,
306 std::string const& config) const
307{
308 std::vector<BT<std::string>> tmp = this->GetCompileFeatures(config);
309 result.reserve(tmp.size());
310 for (BT<std::string>& v : tmp) {
311 result.emplace_back(std::move(v.Value));
312 }
313}
314
315std::vector<BT<std::string>> cmGeneratorTarget::GetCompileFeatures(
316 std::string const& config) const

Callers 2

Calls 8

moveFunction · 0.85
AddInterfaceEntriesFunction · 0.85
processOptionsFunction · 0.85
reserveMethod · 0.80
emplace_backMethod · 0.80
sizeMethod · 0.45
GetDefinitionMethod · 0.45

Tested by

no test coverage detected