Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: Re-implemented command line argument shell quoting to support several ↵ | Brad King | 2006-09-27 | 1 | -0/+8 |
| | | | | platforms with one code base. | ||||
* | BUG: Centralized generation of command line arguments in escaped form. This ↵ | Brad King | 2006-09-21 | 1 | -2/+2 |
| | | | | addresses bug#3786 for several platforms. | ||||
* | ENH: Made cmLocalVisualStudioGenerator a superclass of ↵ | Brad King | 2006-07-11 | 1 | -2/+27 |
| | | | | cmLocalVisualStudio6Generator. Implemented object file unique naming when multiple sources share the same name. | ||||
* | STYLE: fix line length | Ken Martin | 2006-05-12 | 1 | -59/+101 |
| | |||||
* | BUG: VS6 generator now uses ComputeLinkInformation just like all other ↵ | Brad King | 2006-04-19 | 1 | -67/+145 |
| | | | | generators. | ||||
* | BUG: Do not require language flags variables. Other generators do not, and ↵ | Brad King | 2006-04-18 | 1 | -5/+5 |
| | | | | it breaks programmable language support (like the Java test). | ||||
* | ENH: Updated VS6 generator to use target.GetFullName() to compute target ↵ | Brad King | 2006-04-18 | 1 | -22/+25 |
| | | | | file names. | ||||
* | ENH: Split CMAKE_STANDARD_LIBRARIES into per-language variables ↵ | Brad King | 2006-04-11 | 1 | -10/+31 |
| | | | | CMAKE_<lang>_STANDARD_LIBRARIES. This is needed to get programmable language support working with Visual Studio generators. It makes sense anyway. | ||||
* | ENH: Added support for multiple outputs generated by a single custom ↵ | Brad King | 2006-04-11 | 1 | -25/+46 |
| | | | | 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 per config target LINK_FLAGS | Bill Hoffman | 2006-04-03 | 1 | -3/+22 |
| | |||||
* | ENH: removed unused rules from targets for VS | Ken Martin | 2006-03-23 | 1 | -41/+1 |
| | |||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -92/+93 |
| | |||||
* | COMP: Even more global target fixes | Andy Cedilnik | 2006-02-24 | 1 | -4/+3 |
| | |||||
* | BUG: More fixing of support for global target son visual studio | Andy Cedilnik | 2006-02-24 | 1 | -3/+7 |
| | |||||
* | BUG: Add target-level COMPILE_FLAGS to the target not the individual source ↵ | Brad King | 2006-02-20 | 1 | -9/+12 |
| | | | | files. This simplifies the generated files and puts flags in a more logical order (VS6 works, VS7 needs more translation to work). | ||||
* | ENH: If CMAKE_NO_AUTOMATIC_INCLUDE_DIRECTORIES is not set try to approximate ↵ | Brad King | 2006-02-18 | 1 | -12/+33 |
| | | | | in-source build include file behavior in an out-of-source build by adding the build tree directory corresponding to a source tree directory at the beginning of the include path. Also fixed VS6 and VS7 generators to use cmLocalGenerator's computation of include paths. The VS6 generator will now short-path the include directories if the total length is too long in order to try to avoid its truncation limit. | ||||
* | BUG: Avoid adding unused rules to special targets like ALL_BUILD. Make sure ↵ | Brad King | 2006-02-14 | 1 | -1/+12 |
| | | | | project regeneration rules go only in desired targets. | ||||
* | COMP: Removed unused variables. | Brad King | 2006-02-10 | 1 | -2/+0 |
| | |||||
* | BUG: Fixed generation of cmake re-run rules. | Brad King | 2006-02-09 | 1 | -10/+11 |
| | |||||
* | ENH: Enabled new WORKING_DIRECTORY option to ADD_CUSTOM_COMMAND and ↵ | Brad King | 2006-02-08 | 1 | -8/+6 |
| | | | | ADD_CUSTOM_TARGET on VS 6 generator. | ||||
* | ENH: add working directory support | Bill Hoffman | 2006-02-08 | 1 | -3/+11 |
| | |||||
* | ENH: add COMPILE_FLAGS to targets | Bill Hoffman | 2006-01-25 | 1 | -0/+6 |
| | |||||
* | BUG: Sweeping changes to cleanup computation of target names. This should | Brad King | 2006-01-13 | 1 | -48/+29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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: for all custom commands that can not be given to a target, add them to ↵ | Bill Hoffman | 2006-01-09 | 1 | -3/+53 |
| | | | | all targets in the current makefile | ||||
* | BUG: Fixed OUTPUT_NAME feature for VS6 generator. It was not working for ↵ | Brad King | 2005-08-19 | 1 | -6/+15 |
| | | | | Debug builds and was not paying attention to the executable output path. | ||||
* | BUG: revert part of patch that set executable debug prefix as it breaks too ↵ | Bill Hoffman | 2005-07-13 | 1 | -51/+5 |
| | | | | much stuff | ||||
* | BUG: try to fix failed test | Bill Hoffman | 2005-07-13 | 1 | -7/+11 |
| | |||||
* | FIX: apply patch from bug# 1965 | Bill Hoffman | 2005-07-13 | 1 | -106/+168 |
| | |||||
* | ENH: make LOCATION an computed property of the target and get rid of a bunch ↵ | Ken Martin | 2005-06-22 | 1 | -4/+3 |
| | | | | of const junk | ||||
* | ENH: add first cut at support for exe with same name as lib | Ken Martin | 2005-06-16 | 1 | -4/+15 |
| | |||||
* | ENH: removed old convert calls | Ken Martin | 2005-06-10 | 1 | -2/+3 |
| | |||||
* | BUG: Fixed ordering of multiple commands in a custom target when implemented ↵ | Brad King | 2005-04-26 | 1 | -25/+72 |
| | | | | as custom commands. Also added support to execute pre-build rules first to be consistent with makefile generator. | ||||
* | ENH: big change that includes immediate subdir support, removing the notion ↵ | Ken Martin | 2005-03-18 | 1 | -1/+1 |
| | | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings | ||||
* | BUG: Replaced previous fix with an implementation of properly formatting the ↵ | Brad King | 2005-03-01 | 1 | -32/+47 |
| | | | | custom build code in the generated file. | ||||
* | FIXTHIS THING: fix the bug | Ken Martin | 2005-02-28 | 1 | -13/+7 |
| | |||||
* | ENH: Converted some ConvertToRelativeOutputPath calls to ↵ | Brad King | 2005-02-24 | 1 | -22/+17 |
| | | | | ConvertToOptionallyRelativeOutputPath in preparation for making ConvertToRelativeOutputPath always convert. Some of these might be able to be switched back but we will first have to test what paths can be relative in the generate VS project files. | ||||
* | BUG: Need proper newline argument to ConstructScript call. | Brad King | 2005-02-24 | 1 | -1/+2 |
| | |||||
* | ENH: Updated implementation of custom commands. Multiple command lines are ↵ | Brad King | 2005-02-22 | 1 | -47/+26 |
| | | | | 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. | ||||
* | FIX: fixes bugs 1152 and 1154 | Bill Hoffman | 2005-02-11 | 1 | -15/+15 |
| | |||||
* | ENH: put error checking for missing linker languages | Bill Hoffman | 2004-10-27 | 1 | -0/+6 |
| | |||||
* | ENH: add the ability to generate custom commands for a language that is not ↵ | Bill Hoffman | 2004-10-21 | 1 | -1/+5 |
| | | | | supported by an IDE | ||||
* | BUG: make sure release flags are replaced | Bill Hoffman | 2004-09-27 | 1 | -1/+2 |
| | |||||
* | BUG: fix crash with vs6 | Ken Martin | 2004-09-24 | 1 | -24/+27 |
| | |||||
* | fix compilation | Bill Hoffman | 2004-09-22 | 1 | -1/+0 |
| | |||||
* | ENH: major changes to support addition of languages from cmake modules ↵ | Bill Hoffman | 2004-09-22 | 1 | -30/+26 |
| | | | | directory. | ||||
* | BUG: fix for bug 1041, _MBCS sometimes added for UNIICODE which is bad | Bill Hoffman | 2004-09-17 | 1 | -1/+3 |
| | |||||
* | ENH: add better error reporting for file open failures | Bill Hoffman | 2004-09-07 | 1 | -0/+1 |
| | |||||
* | ENH: use GetRequiredDefinition instead of GetDefinition and crash | Bill Hoffman | 2004-08-11 | 1 | -15/+15 |
| | |||||
* | ENH: fix rerun of cmake command | Bill Hoffman | 2004-05-21 | 1 | -3/+0 |
| | |||||
* | BUG: make sure global generate is done when cmakelist file chagnes, also ↵ | Bill Hoffman | 2004-05-20 | 1 | -5/+0 |
| | | | | make sure guids are stored in the cache so the .sln file does not change every time |