| 810 | } |
| 811 | |
| 812 | void cmFastbuildTargetGenerator::AddIncludeFlags(std::string& languageFlags, |
| 813 | std::string const& language, |
| 814 | std::string const&) |
| 815 | { |
| 816 | std::vector<std::string> includes; |
| 817 | this->LocalGenerator->GetIncludeDirectories(includes, this->GeneratorTarget, |
| 818 | language, Config); |
| 819 | // Add include directory flags. |
| 820 | std::string includeFlags = this->LocalGenerator->GetIncludeFlags( |
| 821 | includes, this->GeneratorTarget, language, Config, false); |
| 822 | |
| 823 | this->LocalGenerator->AppendFlags(languageFlags, includeFlags); |
| 824 | } |
| 825 | |
| 826 | std::string cmFastbuildTargetGenerator::GetName() |
| 827 | { |
nothing calls this directly
no test coverage detected