| 3355 | } |
| 3356 | |
| 3357 | void cmGlobalGenerator::AddBuildDatabaseFile(std::string const& lang, |
| 3358 | std::string const& config, |
| 3359 | std::string const& path) |
| 3360 | { |
| 3361 | if (!config.empty()) { |
| 3362 | this->PerConfigModuleDbs[config][lang].push_back(path); |
| 3363 | } |
| 3364 | this->PerLanguageModuleDbs[lang].push_back(path); |
| 3365 | } |
| 3366 | |
| 3367 | bool cmGlobalGenerator::AddBuildDatabaseTargets() |
| 3368 | { |
no test coverage detected