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

Method AppendDefines

Source/cmLocalGenerator.cxx:3878–3886  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3876}
3877
3878void cmLocalGenerator::AppendDefines(std::set<std::string>& defines,
3879 std::string const& defines_list) const
3880{
3881 std::set<BT<std::string>> tmp;
3882 this->AppendDefines(tmp, cmExpandListWithBacktrace(defines_list));
3883 for (BT<std::string> const& i : tmp) {
3884 defines.emplace(i.Value);
3885 }
3886}
3887
3888void cmLocalGenerator::AppendDefines(std::set<BT<std::string>>& defines,
3889 std::string const& defines_list) const

Callers 6

GetTargetDefinesMethod · 0.95
WriteObjectRuleFilesMethod · 0.45
ComputeDefinesMethod · 0.45
ComputeDefinesMethod · 0.45
ComputeDefinesMethod · 0.45
BuildCompileDataMethod · 0.45

Calls 7

CheckDefinitionMethod · 0.95
cmHasLiteralPrefixFunction · 0.85
emplaceMethod · 0.80
emptyMethod · 0.45
substrMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected