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

Function computeInstallObjectDir

Source/cmInstallTargetGenerator.cxx:37–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35
36namespace {
37std::string computeInstallObjectDir(cmGeneratorTarget* gt,
38 std::string const& config)
39{
40 std::string objectDir = "objects";
41 if (!config.empty()) {
42 objectDir += "-";
43 objectDir += config;
44 }
45 objectDir += "/";
46 objectDir += gt->GetName();
47 return objectDir;
48}
49
50void computeFilesToInstall(
51 cmInstallTargetGenerator::Files& files,

Callers 2

GetFilesMethod · 0.85
GetInstallObjectNamesMethod · 0.85

Calls 2

emptyMethod · 0.45
GetNameMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…