summaryrefslogtreecommitdiffstats
path: root/Help/release/dev/find-command-prefix-from-PATH.rst
Commit message (Collapse)AuthorAgeFilesLines
* Help: Consolidate 3.3 release notesBrad King2015-06-021-6/+0
| | | | | | | | | | | | | | Move all development release notes into a new version-specific document: tail -q -n +3 Help/release/dev/* > Help/release/3.3.rst git rm -- Help/release/dev/* except the sample topic: git checkout HEAD -- Help/release/dev/0-sample-topic.rst Reference the new document from the release notes index document. Add a title and intro sentence to the new document by hand.
* Teach find_(library|file|path) to get prefixes from PATH (#15370)Brad King2015-02-191-0/+6
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.