Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: add working directory support | Bill Hoffman | 2006-02-08 | 1 | -0/+1 |
| | |||||
* | ENH: Further centralized custom command dependency computation. Custom ↵ | Brad King | 2006-01-14 | 1 | -6/+6 |
| | | | | command dependencies in the source tree may now also be specified relative to the source directory. | ||||
* | COMP: Removed unused paramter from cmLocalGenerator::OutputLinkLibraries. | Brad King | 2006-01-13 | 1 | -1/+1 |
| | |||||
* | BUG: Sweeping changes to cleanup computation of target names. This should | Brad King | 2006-01-13 | 1 | -2/+24 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | fix many bugs related to target names being computed inconsistently. - Centralized computation of a target's file name to a method in cmTarget. Now that global knowledge is always available the *_CMAKE_PATH cache variables are no longer needed. - Centralized computation of link library command lines and link directory search order. - Moved computation of link directories needed to link CMake targets to be after evaluation of linking dependencies. This also removed alot of duplicate code in which each version had its own bugs. This commit is surrounded by the tags CMake-TargetNameCentralization1-pre and CMake-TargetNameCentralization1-post so make the large set of changes easy to identify. | ||||
* | ENH: fix borland make clean targets before build, add new generators for ↵ | Bill Hoffman | 2005-12-22 | 1 | -0/+1 |
| | | | | msys and mingw | ||||
* | ENH: reduce the number of files produced still needs a bit more cleanup | Ken Martin | 2005-07-27 | 1 | -0/+3 |
| | |||||
* | ENH: make LOCATION an computed property of the target and get rid of a bunch ↵ | Ken Martin | 2005-06-22 | 1 | -1/+1 |
| | | | | of const junk | ||||
* | ENH: added support for forcing recomputation of depends | Ken Martin | 2005-06-10 | 1 | -2/+4 |
| | |||||
* | ENH: removed old convert calls | Ken Martin | 2005-06-10 | 1 | -21/+0 |
| | |||||
* | ENH: warning fixes and some first steps in cleaning up the convert code | Ken Martin | 2005-05-13 | 1 | -1/+25 |
| | |||||
* | ENH: added new generator | Ken Martin | 2005-05-12 | 1 | -0/+6 |
| | |||||
* | ENH: Improve internal test handling by creating a test class. Command ↵ | Andy Cedilnik | 2005-04-24 | 1 | -1/+7 |
| | | | | cmEnableTesting now only sets CMAKE_TESTING_ENABLED and cmAddTest only adds a test to the list. The actual test files are written by local generator. This way we can at some point in the future replace DartTestfile with some XML file | ||||
* | ENH: Added cmTarget::GetBaseName and cmTarget::GetFullName methods and ↵ | Brad King | 2005-04-22 | 1 | -3/+0 |
| | | | | removed cmLocalGenerator::GetFullTargetName and cmLocalUnixMakefileGenerator2::GetBaseTargetName. This functionality is more sensibly implemented in cmTarget. It is also needed for an upcoming feature in which both the shared and static versions of a library will be removed before one is linked. | ||||
* | ENH: performance improvements | Bill Hoffman | 2005-04-12 | 1 | -0/+14 |
| | |||||
* | ENH: big change that includes immediate subdir support, removing the notion ↵ | Ken Martin | 2005-03-18 | 1 | -7/+10 |
| | | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings | ||||
* | ENH: add support for out of source source | Ken Martin | 2005-03-14 | 1 | -1/+0 |
| | |||||
* | ENH: Merged implementations of ConvertToRelative*Path methods. The main ↵ | Brad King | 2005-02-24 | 1 | -6/+30 |
| | | | | ConvertToRelativePath method is now in cmGlobalGenerator. It converts paths only if they are at least inside the deepest common directory between the top-level source and build trees. Each cmLocalGenerator instance calls this global method with its own output directory as the "local" argument from which paths are relative. Added separate ConvertToOptionallyRelative path that pays attention to the CMAKE_USE_RELATIVE_PATHS option. | ||||
* | ENH: remove unused code | Bill Hoffman | 2005-02-24 | 1 | -3/+0 |
| | |||||
* | ENH: add a new library path ordering algorithm to make sure -L paths will ↵ | Bill Hoffman | 2005-02-24 | 1 | -1/+3 |
| | | | | pick the correct libraries if possible | ||||
* | ENH: Updated implementation of custom commands. Multiple command lines are ↵ | Brad King | 2005-02-22 | 1 | -0/+3 |
| | | | | now supported effectively allowing entire scripts to be written. Also removed extra variable expansions and cleaned up passing of commands through to the generators. The command and individual arguments are now kept separate all the way until the generator writes them out. This cleans up alot of escaping issues. | ||||
* | ENH: getting closer | Bill Hoffman | 2005-02-14 | 1 | -3/+4 |
| | |||||
* | ENH: depends work between targets | Bill Hoffman | 2005-02-03 | 1 | -2/+2 |
| | |||||
* | ENH: getting closer | Bill Hoffman | 2005-02-02 | 1 | -1/+2 |
| | |||||
* | ENH: move AddFlags stuff up to LocalGenerator from LocalUnix generator | Bill Hoffman | 2005-02-02 | 1 | -0/+5 |
| | |||||
* | ENH: Split part of GetIncludeFlags method into separate ↵ | Brad King | 2004-10-26 | 1 | -0/+4 |
| | | | | GetIncludeDirectories method. | ||||
* | ENH: add the ability to generate custom commands for a language that is not ↵ | Bill Hoffman | 2004-10-21 | 1 | -0/+46 |
| | | | | supported by an IDE | ||||
* | ENH: remove warnings | Bill Hoffman | 2004-09-03 | 1 | -1/+0 |
| | |||||
* | ENH: define language extensions in cmake files and not hard coded, also fix ↵ | Bill Hoffman | 2004-09-03 | 1 | -0/+1 |
| | | | | trycompile problem | ||||
* | BUG: Implement installing of shared library versioning and add test for the ↵ | Andy Cedilnik | 2004-06-28 | 1 | -1/+2 |
| | | | | whole thing | ||||
* | ENH: GetSafeDefinition is now in cmMakefile | Andy Cedilnik | 2004-04-27 | 1 | -2/+0 |
| | |||||
* | ENH: add new subdirectory exclude from top option | Bill Hoffman | 2004-03-09 | 1 | -1/+16 |
| | |||||
* | ENH: Make install on windows seems to work now | Andy Cedilnik | 2004-01-27 | 1 | -1/+2 |
| | |||||
* | ERR: Fix std:: namespace | Andy Cedilnik | 2004-01-26 | 1 | -1/+1 |
| | |||||
* | ENH: Start adding new installation framework | Andy Cedilnik | 2004-01-26 | 1 | -0/+14 |
| | |||||
* | ENH: move relative path to parent generator class | Bill Hoffman | 2003-12-22 | 1 | -1/+9 |
| | |||||
* | ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵ | Brad King | 2002-10-23 | 1 | -3/+3 |
| | | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. | ||||
* | changed handling of FinalPass | Ken Martin | 2002-09-15 | 1 | -0/+5 |
| | |||||
* | compiler warning | Ken Martin | 2002-09-08 | 1 | -1/+1 |
| | |||||
* | made destructor virtual | Ken Martin | 2002-09-05 | 1 | -1/+1 |
| | |||||
* | updates | Ken Martin | 2002-09-04 | 1 | -3/+2 |
| | |||||
* | in progress checkin | Ken Martin | 2002-08-30 | 1 | -0/+71 |