summaryrefslogtreecommitdiffstats
path: root/Source/cmIfCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r--Source/cmIfCommand.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h
index 8293a1e..4dcf884 100644
--- a/Source/cmIfCommand.h
+++ b/Source/cmIfCommand.h
@@ -115,9 +115,9 @@ public:
"the same expression must be given to IF, ELSE, and ENDIF. Long "
"exressions can be used and the order or precidence is that the "
"EXISTS, COMMAND, and DEFINED operators will be evaluated first. "
- "Then any EQUAL, LESS, GREATER, STRLESS, STRGREATER, MATCHES will be "
- "evaluated. Then NOT operators and finally AND, OR operators will be "
- "evaluated. Possible expressions are:\n"
+ "Then any EQUAL, LESS, GREATER, STRLESS, STRGREATER, STREQUAL, MATCHES "
+ "will be evaluated. Then NOT operators and finally AND, OR operators "
+ "will be evaluated. Possible expressions are:\n"
" IF(variable)\n"
"True if the variable's value is not empty, 0, FALSE, OFF, or NOTFOUND.\n"
" IF(NOT variable)\n"
@@ -149,8 +149,10 @@ public:
" IF(string STRLESS string)\n"
" IF(variable STRGREATER string)\n"
" IF(string STRGREATER string)\n"
+ " IF(variable STREQUAL string)\n"
+ " IF(string STREQUAL string)\n"
"True if the given string or variable's value is lexicographically "
- "less (or greater) than the string on the right.\n"
+ "less (or greater, or equal) than the string on the right.\n"
" IF(DEFINED variable)\n"
"True if the given variable is defined. It does not matter if the "
"variable is true or false just if it has been set.";