summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/PrecompileHeaders/PchMultilanguage-check.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'pch-genex-absolute'Brad King2020-04-281-2/+2
|\ | | | | | | | | | | | | | | b204bae261 target_precompile_headers: Fix documented example using genex Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Cristian Adam <cristian.adam@gmail.com> Merge-request: !4678
| * target_precompile_headers: Fix documented example using genexBrad King2020-04-271-2/+2
| | | | | | | | | | | | | | | | When the path to a header file is specified using a generator expression, evaluation of the genex must produce an absolute path. Update our documented example and add a test covering the case. Fixes: #20617
* | Multi-Ninja: Add precompile headers supportCristian Adam2020-01-171-0/+4
|/ | | | Fixes: #19789
* PCH: No repeated path for internal generated PCH filesCristian Adam2019-11-111-7/+2
| | | | Fixes: #19952
* PCH: Document and test COMPILE_LANGUAGE genex for per-language headerBrad King2019-10-161-0/+14
| | | | Fixes: #19839
* PCH: Fix CMake test files indentationCristian Adam2019-10-031-8/+8
|
* PCH: Add multi-language PCH generation supportCristian Adam2019-10-031-0/+17
If the target has C files, it will get a C PCH file. The same for C++ files. The linker language is no longer used to determine which language to use for PCH. Fixes: #19790