commit | a1dc38a5670939a8ce8dfd99282f86d47412a98a | [log] [tgz] |
---|---|---|
author | scivision <scivision@users.noreply.github.com> | Mon Jan 23 10:47:54 2023 -0500 |
committer | Brad King <brad.king@kitware.com> | Tue Jan 24 14:13:52 2023 -0500 |
tree | 12f0296080cf6c345901839bc6f134fbd01177d3 | |
parent | adac7f3ca41ae38248f62ce48000390143762e99 [diff] |
Help: Document behavior of if(EXISTS,IS_DIRECTORY) for empty paths Document and add explicit tests for empty string input: `if(EXISTS "")` and `if(IS_DIRECTORY "")` are always false. This avoids need for users to do extra checks due to CMake non-short-circuit logic as below: if("${p}") if(EXISTS "${p}")