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

Method GenerateImportFile

Source/cmExportAndroidMKGenerator.cxx:26–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26bool cmExportAndroidMKGenerator::GenerateImportFile(std::ostream& os)
27{
28 if (!this->AppendMode) {
29 // Start with the import file header.
30 this->GenerateImportHeaderCode(os);
31 }
32
33 // Create all the imported targets.
34 std::stringstream mainFileBuffer;
35 bool result = this->GenerateMainFile(mainFileBuffer);
36
37 // Write cached import code.
38 os << mainFileBuffer.rdbuf();
39
40 return result;
41}
42
43void cmExportAndroidMKGenerator::GenerateInterfaceProperties(
44 cmGeneratorTarget const* target, std::ostream& os,

Callers

nothing calls this directly

Calls 2

GenerateMainFileMethod · 0.45

Tested by

no test coverage detected