summaryrefslogtreecommitdiffstats
path: root/Source/cmDepends.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* Major optimization of C/C++ dependency scanning.Alexander Neundorf2009-09-231-3/+23
| | | | | | | | | | | | | | Now only the dependencies for the file where the dependencies actually may have changed are rescanned, before that this was done for all source files even if only one source file had changed. This reduces e.g. on my machine the time for scanning the dependencies of kdelibs/khtml/ when only one file (khtml_global.cpp) has changed from around 7.5 seconds to 1.2 seconds. The tests succeed, it does what I expected it to do on kdelibs, and Brad also reviewed the patch, so I think it should be ok. Alex
* Minor optimization in dependency checking.Alexander Neundorf2009-09-191-2/+12
| | | | | | | | | | | | When reading the depend.internal file, check only once for every depender whether it exists, instead of repeatedly in a loop for each dependee. Within that function it can only change of the depender is removed. This is taken care of. This reduces the number of access() calls in kdelibs/khtml from 180000 to 90000 (i.e. 50%), and reduces the time for that (without the actual scanning) from 0.3 s to 0.21 s on my system. Alex
* ENH: Light refactoring of implicit dependency scanning configuration ↵Brad King2008-05-081-3/+15
| | | | | | implementation. - Move lookup of config variables from cmLocalUnixMakefileGenerator3 to cmDepends hierarchy.
* ENH: Implement Fortran module dependencies across targets and directories.Brad King2007-12-281-0/+7
| | | | | | | | | - See issue #5809 - Keep information about all sources in the target until deps are written - Create a fortran.internal file after scanning that lists modules provided - Load fortran.internal files from linked targets to find modules - Search the include path for external modules - Create file-level deps on in-project module timestamps or external mods
* ENH: Convert cmDepends object interface to scan an entire target at once.Brad King2007-12-231-3/+34
|
* ENH: Moved dependency integrity check from CheckBuildSystem over to a ↵Brad King2007-12-191-8/+14
| | | | per-target UpdateDependencies step. This greatly reduces the startup time for make processes and allows individual targets to be built without a global dependency check.
* BUG: Updated Makefile dependency scanning to provide a full local generator ↵Brad King2006-05-251-1/+5
| | | | to the dependency scanner to do proper path conversions. This allows the rules written into the depend.make files to use the same relative path conversion as those written into the build.make files. Several previous changes added more and more information for use by the dependency scanner and it was converging to having the full local generator anyway.
* STYLE: fix line lengthKen Martin2006-05-101-1/+2
|
* STYLE: some m_ to this-> cleanupKen Martin2006-03-151-20/+20
|
* ENH: correct include for memcpyBill Hoffman2006-01-231-2/+1
|
* BUG: Fix logic to return true when the file was already statted. Also, use ↵Andy Cedilnik2005-10-131-1/+0
| | | | nanosecond percision if available. Remove debug
* ENH: Improve performance of check build system by creating another file that ↵Andy Cedilnik2005-10-121-7/+102
| | | | is simpler to parse and therefore much faster overall
* ENH: reduce the number of files produced still needs a bit more cleanupKen Martin2005-07-271-65/+13
|
* BUG: a fix for constant recomputing of dependsKen Martin2005-05-251-2/+7
|
* ENH: some changes to the depends signature to be more flexibleKen Martin2005-05-111-12/+19
|
* ENH: Added optional verbose output to build system dependency check.Brad King2005-05-061-2/+11
|
* ENH: do not collapse full path for cwdBill Hoffman2005-04-121-1/+3
|
* BUG: Dependency scans and checks must always set the current working ↵Brad King2005-03-081-0/+20
| | | | directory to the directory containing the Makefile.
* ENH: Implemented support for include/complain regular expressions for ↵Brad King2005-02-071-1/+6
| | | | 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/+96
superclass with language-specific subclasses such as cmDependsC.