summaryrefslogtreecommitdiffstats
path: root/Source/LexerParser/cmGccDepfileLexer.in.l
Commit message (Collapse)AuthorAgeFilesLines
* Depfile parsing: enhance compatibility with GNU MakeMarc Chevrier2022-01-161-2/+9
|
* clang-analyzer: rename from scan-build in commentsBrad King2021-06-031-1/+1
|
* cmGccDepfileReader: Rework helper codeKyle Edwards2020-10-131-1/+1
| | | | | 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/+72
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.