* Does a string indicate a true or ON value? This is not the same as ifdef. */
| 236 | * Does a string indicate a true or ON value? This is not the same as ifdef. |
| 237 | */ |
| 238 | inline bool cmIsOn(cm::string_view val) |
| 239 | { |
| 240 | return cmValue::IsOn(val); |
| 241 | } |
| 242 | inline bool cmIsOn(char const* val) |
| 243 | { |
| 244 | return cmValue::IsOn(val); |
searching dependent graphs…