summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/find_file/PrefixInPATH.cmake
Commit message (Collapse)AuthorAgeFilesLines
* find_*: Use debug logging infrastructureRobert Maynard2019-12-191-0/+6
| | | | | | Teach the find_package, find_library, find_program, find_path, and find_file commands to print debug log messages when enabled by the `--debug-find` command-line option or `CMAKE_FIND_DEBUG_MODE` variable.
* Teach find_(library|file|path) to get prefixes from PATH (#15370)Brad King2015-02-191-0/+8
The find_package command already knows how to compute installation prefixes from PATH. Use the same approach to establish prefixes for find_library, find_file, and find_path to use to look in directories like "<prefix>/lib[/<arch>]" and "<prefix>/include" for libraries and headers. This will reduce the amount of configuration end users need to do to establish a work environment rooted under a specific prefix.