* Does a string indicates that CMake/CPack/CTest internally * forced this value. This is not the same as On, but this * may be considered as "internally switched on". */
| 298 | * may be considered as "internally switched on". |
| 299 | */ |
| 300 | inline bool cmIsInternallyOn(cm::string_view val) |
| 301 | { |
| 302 | return cmValue::IsInternallyOn(val); |
| 303 | } |
| 304 | inline bool cmIsInternallyOn(char const* val) |
| 305 | { |
| 306 | return cmValue::IsInternallyOn(val); |
no test coverage detected
searching dependent graphs…