summaryrefslogtreecommitdiffstats
path: root/Source/cmIfCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-06-26 14:57:35 (GMT)
committerBrad King <brad.king@kitware.com>2006-06-26 14:57:35 (GMT)
commit1307dfbd32d0079d320ca2f1d4d0d52216e09e1a (patch)
tree6d93d48a68088551a2c5714ff98a75c1b9f74e42 /Source/cmIfCommand.h
parent26a3a223252c2fd5874f2a9b61c1d04a40c275c1 (diff)
downloadCMake-1307dfbd32d0079d320ca2f1d4d0d52216e09e1a.zip
CMake-1307dfbd32d0079d320ca2f1d4d0d52216e09e1a.tar.gz
CMake-1307dfbd32d0079d320ca2f1d4d0d52216e09e1a.tar.bz2
ENH: Clarified documentation of EXISTS and IS_DIRECTORY modes.
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 59ee55b..e49c21f 100644
--- a/Source/cmIfCommand.h
+++ b/Source/cmIfCommand.h
@@ -126,9 +126,11 @@ public:
"True if the given name is a command that can be invoked.\n"
" IF(EXISTS file-name)\n"
" IF(EXISTS directory-name)\n"
- "True if the named file or directory exists.\n"
+ "True if the named file or directory exists. "
+ "Behavior is well-defined only for full paths.\n"
" IF(IS_DIRECTORY directory-name)\n"
- "True if the given name is a directory.\n"
+ "True if the given name is a directory. "
+ "Behavior is well-defined only for full paths.\n"
" IF(variable MATCHES regex)\n"
" IF(string MATCHES regex)\n"
"True if the given string or variable's value matches the given "