* Does a string indicate a false or off value ? Note that this is * not the same as !IsOn(...) because there are a number of * ambiguous values such as "/usr/local/bin" a path will result in * IsON and IsOff both returning false. Note that the special path * NOTFOUND, *-NOTFOUND or IGNORE will cause IsOff to return true. */
| 256 | * NOTFOUND, *-NOTFOUND or IGNORE will cause IsOff to return true. |
| 257 | */ |
| 258 | inline bool cmIsOff(cm::string_view val) |
| 259 | { |
| 260 | return cmValue::IsOff(val); |
| 261 | } |
| 262 | inline bool cmIsOff(char const* val) |
| 263 | { |
| 264 | return cmValue::IsOff(val); |
searching dependent graphs…