| 117 | } |
| 118 | |
| 119 | cm::optional<bool> cmVisualStudioGeneratorOptions::UsingDebugRuntime() const |
| 120 | { |
| 121 | cm::optional<bool> result; |
| 122 | if (char const* rtl = this->GetFlag("RuntimeLibrary")) { |
| 123 | result = strstr(rtl, "Debug") != nullptr; |
| 124 | } |
| 125 | return result; |
| 126 | } |
| 127 | |
| 128 | bool cmVisualStudioGeneratorOptions::IsWinRt() const |
| 129 | { |
no test coverage detected