| 1790 | } |
| 1791 | |
| 1792 | void cmGlobalXCodeGenerator::ForceLinkerLanguages() |
| 1793 | { |
| 1794 | for (auto const& localGenerator : this->LocalGenerators) { |
| 1795 | // All targets depend on the build-system check target. |
| 1796 | for (auto const& tgt : localGenerator->GetGeneratorTargets()) { |
| 1797 | // This makes sure all targets link using the proper language. |
| 1798 | this->ForceLinkerLanguage(tgt.get()); |
| 1799 | } |
| 1800 | } |
| 1801 | } |
| 1802 | |
| 1803 | void cmGlobalXCodeGenerator::ForceLinkerLanguage(cmGeneratorTarget* gtgt) |
| 1804 | { |
nothing calls this directly
no test coverage detected