Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: Do not generate install target unless some INSTALL or INSTALL_* ↵ | Brad King | 2006-08-31 | 1 | -0/+2 |
| | | | | commands have been used. This addresses bug#2827. | ||||
* | ENH: Adding install/local global target for Makefile generators. This runs ↵ | Brad King | 2006-08-29 | 1 | -0/+1 |
| | | | | installation only in the current directory and not subdirectories. | ||||
* | BUG: Delay relative path configuration until as late as possible to make ↵ | Brad King | 2006-06-19 | 1 | -0/+1 |
| | | | | sure the source/binary dir are set. This is a work-around for lack of a more structured way of creating the global generator. | ||||
* | ENH: Added generation of link rules into script files executed by a cmake -E ↵ | Brad King | 2006-06-15 | 1 | -0/+4 |
| | | | | command in order to support longer link lines. This is needed only on platforms without response file support and that may have weak shells. | ||||
* | BUG: cmGlobalGenerator::Build should not always use the /fast target name ↵ | Brad King | 2006-06-01 | 1 | -2/+2 |
| | | | | because dependency checking is often required. It now takes an argument specifying whether to use the /fast target name, and the argument is currently only true for try-compiles. | ||||
* | BUG: Updated Makefile dependency scanning to provide a full local generator ↵ | Brad King | 2006-05-25 | 1 | -1/+1 |
| | | | | 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 length | Ken Martin | 2006-05-11 | 1 | -1/+2 |
| | |||||
* | ENH: Enabling color makefile support using cmsysTerminal_cfprintf. Support ↵ | Brad King | 2006-04-27 | 1 | -2/+2 |
| | | | | for color is automatically detected when messages are printed. Also made color scheme more readable on both black and white backgrounds. This option can be enabled by setting CMAKE_COLOR_MAKEFILE to true in the project. | ||||
* | ENH: Add packaging of source code (make package_source) | Andy Cedilnik | 2006-04-17 | 1 | -0/+1 |
| | |||||
* | ENH: fix compile issue on HP hopefully | Ken Martin | 2006-04-12 | 1 | -2/+1 |
| | |||||
* | ENH: some performance optimizations | Ken Martin | 2006-04-11 | 1 | -0/+6 |
| | |||||
* | ENH: Added support for multiple outputs generated by a single custom ↵ | Brad King | 2006-04-11 | 1 | -0/+3 |
| | | | | command. For Visual Studio generators the native tool provides support. For Xcode and Makefile generators a simple trick is used. The first output is considered primary and has the build rule attached. Other outputs simply depend on the first output with no build rule. During cmake_check_build_system CMake detects when a secondary output is missing and removes the primary output to make sure all outputs are regenerated. This approach always builds the custom command at the right time and only once even during parallel builds. | ||||
* | ENH: Add support for preinstall for cmake generated projects when packaging them | Andy Cedilnik | 2006-04-10 | 1 | -8/+8 |
| | |||||
* | ENH: Added global TargetManifest computation between Configure and Generate ↵ | Brad King | 2006-04-04 | 1 | -0/+8 |
| | | | | steps. This allows generators to know what other targets will exist on disk when the build completes. | ||||
* | ENH: Implemented VT100 terminal escape sequences. If CMAKE_COLOR_MAKEFILE ↵ | Brad King | 2006-03-30 | 1 | -0/+2 |
| | | | | is set then messages produced by makefiles will be in color if the native tool supports it. This addresses bug#3060. | ||||
* | ENH: Added named component installation implementation. Installation ↵ | Brad King | 2006-03-30 | 1 | -0/+5 |
| | | | | behavior should be unchanged unless -DCOMPONENT=<name> is specified when cmake_install.cmake is invoked. | ||||
* | STYLE: minor comment cleanups | Ken Martin | 2006-03-16 | 1 | -1/+1 |
| | |||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -27/+29 |
| | |||||
* | STYLE: fix line lengths | Bill Hoffman | 2006-03-10 | 1 | -4/+8 |
| | |||||
* | BUG: Fixed installation of MacOSX Bundle executables and the corresponding ↵ | Brad King | 2006-03-03 | 1 | -2/+7 |
| | | | | install_name remapping support. Extended the BundleTest test to check that this all works. Part of these fixes required changing the signature of AppendDirectoryForConfig in all generators. It now accepts prefix and suffix strings to deal with whether leading or trailing slashes should be included with the configuration subdirectory. | ||||
* | ENH: Cleanup global targets even more and potentially fix Xcode | Andy Cedilnik | 2006-03-01 | 1 | -4/+4 |
| | |||||
* | COMP: Even more global target fixes | Andy Cedilnik | 2006-02-24 | 1 | -0/+3 |
| | |||||
* | COMP: Handle preinstall properly on IDEs | Andy Cedilnik | 2006-02-24 | 1 | -0/+1 |
| | |||||
* | COMP: Fixes for visual studio | Andy Cedilnik | 2006-02-23 | 1 | -6/+6 |
| | |||||
* | ENH: Add a notion of a global target | Andy Cedilnik | 2006-02-23 | 1 | -0/+15 |
| | |||||
* | BUG: Fixed cmTarget::GetFullPath to not append the configuration name when ↵ | Brad King | 2006-02-03 | 1 | -0/+3 |
| | | | | only one configuration is built. It now asks the generator what subdirectory if any to use for a given configuration name. | ||||
* | BUG: Sweeping changes to cleanup computation of target names. This should | Brad King | 2006-01-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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: Add a way for the generated command to include extra flags. This is ↵ | Andy Cedilnik | 2005-12-01 | 1 | -1/+1 |
| | | | | useful for CTest (or try compile) to add -j2 | ||||
* | ENH: added DIRECTORY option to GET_DIRECTORY_PROPERTIES | Ken Martin | 2005-09-13 | 1 | -0/+3 |
| | |||||
* | ENH: modified GET_TARGET_PROPERTIES to work with all targets | Ken Martin | 2005-06-20 | 1 | -2/+3 |
| | |||||
* | BUG: Changing to a new test for whether to do relative path conversion. Now ↵ | Brad King | 2005-05-16 | 1 | -4/+7 |
| | | | | only paths inside the source or binary trees are converted. | ||||
* | ENH: warning fixes and some first steps in cleaning up the convert code | Ken Martin | 2005-05-13 | 1 | -16/+0 |
| | |||||
* | ENH: added new methods to convert to HomeRelative paths | Ken Martin | 2005-05-11 | 1 | -0/+16 |
| | |||||
* | ENH: Make FindMakeProgram public | Andy Cedilnik | 2005-05-02 | 1 | -3/+8 |
| | |||||
* | ENH: Add option to ignore errors. Only works on make | Andy Cedilnik | 2005-04-29 | 1 | -1/+1 |
| | |||||
* | ENH: Start working on command that will abstract generating of build command | Andy Cedilnik | 2005-04-28 | 1 | -0/+2 |
| | |||||
* | ENH: More ctest changes and move SetupTest to superclass | Andy Cedilnik | 2005-04-01 | 1 | -0/+1 |
| | |||||
* | ENH: big change that includes immediate subdir support, removing the notion ↵ | Ken Martin | 2005-03-18 | 1 | -3/+2 |
| | | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings | ||||
* | ENH: cleanup by removing all the olf local generate junk that i not longer ↵ | Ken Martin | 2005-03-10 | 1 | -7/+0 |
| | | | | needed | ||||
* | ENH: fix for finding the correct target in the current project | Bill Hoffman | 2005-03-04 | 1 | -1/+1 |
| | |||||
* | ENH: Merged implementations of ConvertToRelative*Path methods. The main ↵ | Brad King | 2005-02-24 | 1 | -0/+18 |
| | | | | 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: ctest now uses CMake global generator to do the build part of ↵ | Ken Martin | 2005-02-22 | 1 | -0/+13 |
| | | | | build-and-test | ||||
* | ENH: depends work between targets | Bill Hoffman | 2005-02-03 | 1 | -0/+3 |
| | |||||
* | ENH: move project map to global generator base | Bill Hoffman | 2005-01-21 | 1 | -1/+5 |
| | |||||
* | BUG: fix for bug 1396, object files could not be used as sources any more | Bill Hoffman | 2004-12-06 | 1 | -0/+1 |
| | |||||
* | ENH: major changes to support addition of languages from cmake modules ↵ | Bill Hoffman | 2004-09-22 | 1 | -1/+14 |
| | | | | directory. | ||||
* | ENH: define language extensions in cmake files and not hard coded, also fix ↵ | Bill Hoffman | 2004-09-03 | 1 | -1/+4 |
| | | | | trycompile problem | ||||
* | ENH: try to initialize all languages at the same time | Bill Hoffman | 2004-08-27 | 1 | -1/+1 |
| | |||||
* | ENH: more uniform approach to enable language, one step closer to being able ↵ | Bill Hoffman | 2004-08-26 | 1 | -1/+2 |
| | | | | to enable a language without modifing cmake source code | ||||
* | BUG: CMAKE_TRY_COMPILE_CONFIGURATION should be obtained from the cmMakefile ↵ | Brad King | 2004-08-04 | 1 | -1/+1 |
| | | | | instance for the listfile containing the TRY_COMPILE call, not the top level listfile. |