summaryrefslogtreecommitdiffstats
path: root/Source/cmIfCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-04-18 14:27:24 (GMT)
committerBrad King <brad.king@kitware.com>2006-04-18 14:27:24 (GMT)
commit016e689f57f2161df4601a5077c4ac56d6a237c5 (patch)
tree34668112d34a90a23eaf5018934cbd1ac21af264 /Source/cmIfCommand.h
parent9db422067158bf33f3f0597d7cac796d15d7025c (diff)
downloadCMake-016e689f57f2161df4601a5077c4ac56d6a237c5.zip
CMake-016e689f57f2161df4601a5077c4ac56d6a237c5.tar.gz
CMake-016e689f57f2161df4601a5077c4ac56d6a237c5.tar.bz2
BUG: Fixed missing false values in documentation of IF command.
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r--Source/cmIfCommand.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h
index fa1df27..9e55762 100644
--- a/Source/cmIfCommand.h
+++ b/Source/cmIfCommand.h
@@ -113,9 +113,11 @@ public:
"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"
+ "True if the variable's value is not empty, 0, N, NO, OFF, FALSE, "
+ "NOTFOUND, or <variable>-NOTFOUND.\n"
" IF(NOT variable)\n"
- "True if the variable's value is empty, 0, FALSE, OFF, or NOTFOUND.\n"
+ "True if the variable's value is empty, 0, N, NO, OFF, FALSE, "
+ "NOTFOUND, or <variable>-NOTFOUND.\n"
" IF(variable1 AND variable2)\n"
"True if both variables would be considered true individually.\n"
" IF(variable1 OR variable2)\n"