| 350 | } |
| 351 | |
| 352 | cmOutputConverter::FortranPreprocess cmOutputConverter::GetFortranPreprocess( |
| 353 | cm::string_view value) |
| 354 | { |
| 355 | if (value.empty()) { |
| 356 | return FortranPreprocess::Unset; |
| 357 | } |
| 358 | |
| 359 | return cmIsOn(value) ? FortranPreprocess::Needed |
| 360 | : FortranPreprocess::NotNeeded; |
| 361 | } |
| 362 | |
| 363 | void cmOutputConverter::SetLinkScriptShell(bool linkScriptShell) |
| 364 | { |