| 286 | } |
| 287 | |
| 288 | void cmLocalVisualStudio7Generator::WriteConfigurations( |
| 289 | std::ostream& fout, std::vector<std::string> const& configs, |
| 290 | std::string const& libName, cmGeneratorTarget* target) |
| 291 | { |
| 292 | fout << "\t<Configurations>\n"; |
| 293 | for (std::string const& config : configs) { |
| 294 | this->WriteConfiguration(fout, config, libName, target); |
| 295 | } |
| 296 | fout << "\t</Configurations>\n"; |
| 297 | } |
| 298 | cmVS7FlagTable cmLocalVisualStudio7GeneratorFortranFlagTable[] = { |
| 299 | { "Preprocess", "fpp", "Run Preprocessor on files", "preprocessYes", 0 }, |
| 300 | { "Preprocess", "nofpp", "Run Preprocessor on files", "preprocessNo", 0 }, |
no test coverage detected