Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: Allow the installer to overwrite the install prefix | Andy Cedilnik | 2005-12-10 | 1 | -2/+7 |
| | |||||
* | ENH: Add support for output reguilar expression | Andy Cedilnik | 2005-11-08 | 1 | -1/+30 |
| | |||||
* | ENH: Add a way for test to intentionally fail | Andy Cedilnik | 2005-09-07 | 1 | -1/+11 |
| | |||||
* | ENH: Added versioned executable support. This partially addresses bug#2143. ↵ | Brad King | 2005-08-17 | 1 | -2/+17 |
| | | | | Also made OUTPUT_NAME work when installing executables. | ||||
* | ENH: fix bug 2087 lib prefix stripped off on windows | Bill Hoffman | 2005-08-10 | 1 | -0/+6 |
| | |||||
* | ENH: Add set and get test propety command | Andy Cedilnik | 2005-07-31 | 1 | -2/+2 |
| | |||||
* | ENH: put cmake files intoa CMakeFiles subdir to clean up bin tree | Ken Martin | 2005-07-29 | 1 | -0/+5 |
| | |||||
* | ENH: reduce the number of files produced still needs a bit more cleanup | Ken Martin | 2005-07-27 | 1 | -7/+13 |
| | |||||
* | ENH: make sure flags set in CC or CXX environment variables stay with the ↵ | Bill Hoffman | 2005-07-20 | 1 | -1/+17 |
| | | | | compiler | ||||
* | ENH: fix for bug 992, mac bundle install fix | Bill Hoffman | 2005-07-14 | 1 | -4/+29 |
| | |||||
* | ENH: add -L as possible library flag | Bill Hoffman | 2005-07-13 | 1 | -1/+1 |
| | |||||
* | BUG: fix for debug optimized link libraries | Ken Martin | 2005-07-05 | 1 | -1/+1 |
| | |||||
* | ENH: make LOCATION an computed property of the target and get rid of a bunch ↵ | Ken Martin | 2005-06-22 | 1 | -4/+4 |
| | | | | of const junk | ||||
* | ENH: removed old convert calls | Ken Martin | 2005-06-10 | 1 | -24/+0 |
| | |||||
* | ENH: Add capability to include files to DartTestfile.txt and add example of that | Andy Cedilnik | 2005-06-07 | 1 | -0/+5 |
| | |||||
* | COMP: shut up warning | Ken Martin | 2005-05-13 | 1 | -0/+2 |
| | |||||
* | ENH: warning fixes and some first steps in cleaning up the convert code | Ken Martin | 2005-05-13 | 1 | -25/+72 |
| | |||||
* | COMP: Remove warning | Andy Cedilnik | 2005-04-25 | 1 | -4/+4 |
| | |||||
* | ENH: Improve internal test handling by creating a test class. Command ↵ | Andy Cedilnik | 2005-04-24 | 1 | -2/+83 |
| | | | | 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 | -47/+4 |
| | | | | 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. | ||||
* | BUG: add missing header for borland | Bill Hoffman | 2005-04-12 | 1 | -0/+1 |
| | |||||
* | ENH: performance improvements | Bill Hoffman | 2005-04-12 | 1 | -77/+164 |
| | |||||
* | BUG: local gen was setting proj dir when it shouldnt | Ken Martin | 2005-04-12 | 1 | -7/+0 |
| | |||||
* | ENH: remove commented code | Bill Hoffman | 2005-03-22 | 1 | -2/+0 |
| | |||||
* | ENH: big change that includes immediate subdir support, removing the notion ↵ | Ken Martin | 2005-03-18 | 1 | -7/+22 |
| | | | | 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 | -4/+4 |
| | |||||
* | ENH: Converted some ConvertToRelativeOutputPath calls to ↵ | Brad King | 2005-02-24 | 1 | -3/+3 |
| | | | | ConvertToOptionallyRelativeOutputPath in preparation for making ConvertToRelativeOutputPath not check CMAKE_USE_RELATIVE_PATHS. | ||||
* | ENH: Merged implementations of ConvertToRelative*Path methods. The main ↵ | Brad King | 2005-02-24 | 1 | -77/+53 |
| | | | | 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 | -11/+0 |
| | |||||
* | ENH: add a new library path ordering algorithm to make sure -L paths will ↵ | Bill Hoffman | 2005-02-24 | 1 | -93/+63 |
| | | | | pick the correct libraries if possible | ||||
* | ENH: Added better default install location for windows builds. The previous ↵ | Brad King | 2005-02-22 | 1 | -0/+22 |
| | | | | default /usr/local did not make much sense. Now "%SystemDrive%/Program Files/PROJECT_NAME" is used, which is the windows equivalent to /usr/local. | ||||
* | ENH: Updated implementation of custom commands. Multiple command lines are ↵ | Brad King | 2005-02-22 | 1 | -1/+34 |
| | | | | 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: all tests are passing for XCode | Bill Hoffman | 2005-02-18 | 1 | -0/+4 |
| | |||||
* | ENH: move AddFlags stuff up to LocalGenerator from LocalUnix generator | Bill Hoffman | 2005-02-02 | 1 | -0/+71 |
| | |||||
* | STYLE: Adjusted signature of cmGeneratedFileStream to make copy-if-different ↵ | Brad King | 2004-11-03 | 1 | -1/+2 |
| | | | | more explicity. | ||||
* | ENH: Re-implemented cmGeneratedFileStream to look like a real stream and ↵ | Brad King | 2004-11-03 | 1 | -2/+1 |
| | | | | replace the destination file atomically. This will avoid problems with the process being terminated while generating a file. | ||||
* | FIX: fix shared flag | Bill Hoffman | 2004-10-29 | 1 | -1/+1 |
| | |||||
* | ENH: put error checking for missing linker languages | Bill Hoffman | 2004-10-27 | 1 | -0/+18 |
| | |||||
* | ENH: Split part of GetIncludeFlags method into separate ↵ | Brad King | 2004-10-26 | 1 | -52/+62 |
| | | | | GetIncludeDirectories method. | ||||
* | COMP: fix warnings | Bill Hoffman | 2004-10-21 | 1 | -0/+8 |
| | |||||
* | COMP: fix warning | Bill Hoffman | 2004-10-21 | 1 | -1/+1 |
| | |||||
* | ENH: add the ability to generate custom commands for a language that is not ↵ | Bill Hoffman | 2004-10-21 | 1 | -22/+800 |
| | | | | supported by an IDE | ||||
* | BUG: make sure all returns for ConvertToRelativeOutputPath get passed by ↵ | Bill Hoffman | 2004-10-14 | 1 | -1/+1 |
| | | | | ConvertToOutputPath | ||||
* | BUG: now that system tools relative path works, clean up the convert to ↵ | Bill Hoffman | 2004-10-14 | 1 | -110/+43 |
| | | | | relative output path code | ||||
* | ENH: major changes to support addition of languages from cmake modules ↵ | Bill Hoffman | 2004-09-22 | 1 | -0/+1 |
| | | | | directory. | ||||
* | ENH: remove warnings | Bill Hoffman | 2004-09-03 | 1 | -5/+0 |
| | |||||
* | ENH: define language extensions in cmake files and not hard coded, also fix ↵ | Bill Hoffman | 2004-09-03 | 1 | -0/+7 |
| | | | | trycompile problem | ||||
* | BUG: install_manifest.txt should be overwritten each time the install is run. | Brad King | 2004-07-02 | 1 | -0/+2 |
| | |||||
* | BUG: Implement installing of shared library versioning and add test for the ↵ | Andy Cedilnik | 2004-06-28 | 1 | -3/+28 |
| | | | | whole thing | ||||
* | ENH: Fix bug in cmake install when exec/librayr output path not defined. ↵ | Andy Cedilnik | 2004-06-01 | 1 | -0/+10 |
| | | | | Closes Bug #899 - subdir INSTALL_TARGETS INSTALL_PROGRAMS dont work |