Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: Remove stray source dir modification in RunCMake.find_program | Brad King | 2019-07-26 | 1 | -1/+0 |
| | | | | | | Since commit c76c1ea208 (find_program: Consider CWD only for paths with separator, 2018-05-31, v3.13.0-rc1~413^2) this test has created a directory in the source tree unnecessarily. Remove it. | ||||
* | Find: Correct spelling and layout issues in CMAKE_FIND_USE_ docs | Robert Maynard | 2019-07-09 | 1 | -1/+1 |
| | |||||
* | Find: Provide global controls for the `NO_[]_PATH` call options | Robert Maynard | 2019-06-21 | 1 | -0/+22 |
| | |||||
* | find_program: Consider CWD only for paths with separator | Sam Yates | 2018-06-14 | 1 | -0/+63 |
find_program() incorrectly prepended search path components to absolute file paths, and incorrectly searched the current working directory for files that contained no directory separators. * Replace calls cmFindProgramHelper::CheckDirectory(std::string()) with call of new method cmFindProgramHelper::CheckCompoundNames() that checks for the presence of a directory separator in the file name. * Use cmSystemTools::CollapseCombinedPath rather than string concatenation to properly combine absolute file names with search path components. * Add unit tests to verify corrections. Fixes: #18044 |