diff options
author | Brad King <brad.king@kitware.com> | 2009-10-21 17:11:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-10-21 17:11:16 (GMT) |
commit | 7a9f75c1a8ab159398ee852774904e7b7b0457c2 (patch) | |
tree | ecb6cdd7f2b55d7662d20deba42b69def786b60a /Source/cmIfCommand.h | |
parent | a52fd03a2a6cd50a201309f8629ea76acf7cd10a (diff) | |
download | CMake-7a9f75c1a8ab159398ee852774904e7b7b0457c2.zip CMake-7a9f75c1a8ab159398ee852774904e7b7b0457c2.tar.gz CMake-7a9f75c1a8ab159398ee852774904e7b7b0457c2.tar.bz2 |
Add IS_SYMLINK test to if command
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r-- | Source/cmIfCommand.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h index 90d1447..f480220 100644 --- a/Source/cmIfCommand.h +++ b/Source/cmIfCommand.h @@ -150,6 +150,9 @@ public: " if(IS_DIRECTORY directory-name)\n" "True if the given name is a directory. " "Behavior is well-defined only for full paths.\n" + " if(IS_SYMLINK file-name)\n" + "True if the given name is a symbolic link. " + "Behavior is well-defined only for full paths.\n" " if(IS_ABSOLUTE path)\n" "True if the given path is an absolute path.\n" " if(variable MATCHES regex)\n" |