summaryrefslogtreecommitdiffstats
path: root/Source/cmDependsC.h
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Patch from Alex to speed dependency scanning approximately 2x.Brad King2006-09-131-1/+2
|
* ENH: Make sure all custom command outputs are up to date before scanning ↵Brad King2006-08-311-11/+0
| | | | dependencies. This avoids the need to pass a list of generated files to the dependency scanning code and to rescan after the files have been generated. Currently there is no notion of implicit dependencies of the custom commands themselves so this design is safe. We only need to make sure implicit dependencies are up to date before the make process for the /build part of a target is executed because only this process loads them. This is a step towards fixing bug#3658.
* ENH: a warning fix and some more cleanupKen Martin2006-03-161-1/+1
|
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-13/+13
|
* STYLE: Fix some style issuesAndy Cedilnik2006-03-101-4/+6
|
* BUG: Fix for scanning generated headers included with double-quotes. Also ↵Brad King2006-01-051-0/+3
| | | | fixed double-quote include support to not use the special quoted location when a full path is given on the include line.
* ENH: try to fix hp build problemBill Hoffman2005-12-101-1/+1
|
* ENH: fix compile errorAndy Cedilnik2005-12-091-2/+2
|
* ENH: clean up style a bitBill Hoffman2005-12-091-3/+3
|
* PERF: apply patch for bug 2575 speeds up depend scanningBill Hoffman2005-12-091-2/+16
|
* ENH: Improve performance of check build system by creating another file that ↵Andy Cedilnik2005-10-121-7/+6
| | | | is simpler to parse and therefore much faster overall
* ENH: Adding support for automatically adding the OBJECT_DEPENDS for ↵Brad King2005-08-171-2/+11
| | | | generated header files.
* ENH: reduce the number of files produced still needs a bit more cleanupKen Martin2005-07-271-14/+5
|
* ENH: some changes to the depends signature to be more flexibleKen Martin2005-05-111-4/+5
|
* BUG: Re-implemented dependency line parsing to deal with quoted paths and ↵Brad King2005-05-101-0/+5
| | | | escaped spaces.
* ENH: Added optional verbose output to build system dependency check.Brad King2005-05-061-1/+1
|
* BUG: Fixed scanning to account for double-quote includes.Brad King2005-03-031-2/+7
|
* ENH: Implemented support for include/complain regular expressions for ↵Brad King2005-02-071-3/+9
| | | | dependency scanning. This now includes the possibility that scanning will return failure and the build will stop.
* ENH: Split dependency scanning and checking into separate cmDepends ↵Brad King2005-01-181-0/+70
superclass with language-specific subclasses such as cmDependsC.