| 31 | cmInstallCxxModuleBmiGenerator::~cmInstallCxxModuleBmiGenerator() = default; |
| 32 | |
| 33 | bool cmInstallCxxModuleBmiGenerator::Compute(cmLocalGenerator* lg) |
| 34 | { |
| 35 | this->LocalGenerator = lg; |
| 36 | |
| 37 | this->Target = lg->FindLocalNonAliasGeneratorTarget(this->TargetName); |
| 38 | if (!this->Target) { |
| 39 | // If no local target has been found, find it in the global scope. |
| 40 | this->Target = |
| 41 | lg->GetGlobalGenerator()->FindGeneratorTarget(this->TargetName); |
| 42 | } |
| 43 | |
| 44 | return true; |
| 45 | } |
| 46 | |
| 47 | std::string cmInstallCxxModuleBmiGenerator::GetScriptLocation( |
| 48 | std::string const& config) const |
nothing calls this directly
no test coverage detected