summaryrefslogtreecommitdiffstats
path: root/Source/cmGccDepfileLexerHelper.cxx
Commit message (Collapse)AuthorAgeFilesLines
* add_custom_command(DEPFILE): ensure all dependencies are taken into accountMarc Chevrier2022-01-161-20/+20
|
* Makefiles dependencies: normalize windows pathsMarc Chevrier2021-03-301-1/+13
| | | | Fixes: #21997
* cmGccDepfileReader: Rework helper codeKyle Edwards2020-10-131-11/+22
| | | | | Fix some of the semantics of the depfile, add error handling, and refactor cmGccDepfileLexerHelper.
* Add a parser for GCC-style depfilesJoerg Bornemann2020-01-281-0/+126
Introduce the function cmReadGccDepfile that parses a GCC-style depfile and returns its content. The implementation uses a lexer that is modeled after the re2c implementation in Ninja. The sample files of the autotest have been created with gcc 8.3.0. This depfile reader is to be used by the Autogen facility to make use of the depfiles that are generated by Qt's meta object compiler.