summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeTests/GetFilenameComponentRealpathTest.cmake.in
Commit message (Collapse)AuthorAgeFilesLines
* Fix get_filename_component(... REALPATH) work dirBrad King2009-11-181-0/+15
| | | | | | | The commit "Fix get_filename_component ABSOLUTE mode" broke REALPATH treatment of relative paths because it stopped storing the absolute path in local variable 'filename'. This commit fixes the call to GetRealPath to use the proper local variable and adds a test.
* ENH: Add get_filename_component(... REALPATH)Brad King2009-02-091-0/+57
This patch from Philip Lowman creates a REALPATH mode in the get_filename_component command. It is like ABSOLUTE, but will also resolve symlinks (which ABSOLUTE once did but was broken long ago). See issue #8423.