diff options
-rw-r--r-- | Help/command/if.rst | 4 | ||||
-rw-r--r-- | Source/CMakeVersion.cmake | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Help/command/if.rst b/Help/command/if.rst index f377f2c..d8e3a45 100644 --- a/Help/command/if.rst +++ b/Help/command/if.rst @@ -88,7 +88,9 @@ Possible conditions are: ``if(EXISTS path-to-file-or-directory)`` True if the named file or directory exists. Behavior is well-defined - only for full paths. + only for full paths. Resolves symbolic links, i.e. if the named file or + directory is a symbolic link, returns true if the target of the + symbolic link exists. ``if(file1 IS_NEWER_THAN file2)`` True if ``file1`` is newer than ``file2`` or if one of the two files doesn't diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 3ba392e..f4dacb4 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -1,5 +1,5 @@ # CMake version number components. set(CMake_VERSION_MAJOR 3) set(CMake_VERSION_MINOR 14) -set(CMake_VERSION_PATCH 20190404) +set(CMake_VERSION_PATCH 20190405) #set(CMake_VERSION_RC 1) |