summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/BuildDepends/CustomCommandDepfile.cmake
Commit message (Collapse)AuthorAgeFilesLines
* add_custom_command(DEPFILE): avoid duplicate entries in dependenciesMarc Chevrier2024-10-251-0/+9
| | | | Fixes: #26399
* Makefile: Fix double escaping when DEPFILE is usedOrkun Tokdemir2024-01-091-0/+11
| | | | | | | | | | In commit cfd8a5ac1f (Makefiles: Add support of DEPFILE for add_custom_command, 2020-12-04, v3.20.0-rc1~237^2~1) we added a `ConvertToOutputPath` call on a path given to the `depends` field of `WriteMakeRule`. The latter already handles escaping for Makefile syntax. Fixes: #25554
* Depfile parsing: enhance compatibility with GNU MakeMarc Chevrier2022-01-161-0/+9
|
* Genex: add_custom_command: DEPFILE supports genexMarc Chevrier2021-04-121-4/+4
| | | | | | This facility is very useful for 'Ninja Multi-Config' and required as well for future support of DEPFILE in 'Xcode' and 'Visual Studio' generators (#20286).
* Ninja: add_custom_command(DEPFILE): Ensure dependencies consistencyMarc Chevrier2021-01-191-1/+1
| | | | Fixes: #21694
* Tests: Add case for DEPFILE in add_custom_commandMarc Chevrier2020-12-231-0/+61
Issue: #20286, #21415