Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge in changes to CMake-2-8 RC 2 | Bill Hoffman | 2009-10-01 | 1 | -14/+9 |
| | |||||
* | ENH: Better policies for functions and macros | Brad King | 2009-01-22 | 1 | -0/+8 |
| | | | | | | | This teaches functions and macros to use policies recorded at creation time when they are invoked. It restores the policies as a weak policy stack entry so that any policies set by a function escape to its caller as before. | ||||
* | ENH: Enforce logical blocks in functions/macros | Brad King | 2009-01-21 | 1 | -0/+4 |
| | | | | | This teaches function() and macro() to enforce matching logical blocks inside the recorded bodies. This makes the error message more specific. | ||||
* | ENH: Better handling of mismatched blocks | Brad King | 2009-01-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | If a logical block terminates with mismatching arguments we previously failed to remove the function blocker but replayed the commands anyway, which led to cases in which we failed to report the mismatch (return shortly after the ending command). The recent refactoring of function blocker deletion changed this behavior to produce an error on the ending line by not blocking the command. Furthermore, the function blocker would stay in place and complain at the end of every equal-level block of the same type. This teaches CMake to treat the begin/end commands (if/endif, etc.) as correct and just warns when the arguments mismatch. The change allows cases in which CMake 2.6.2 silently ignored a mismatch to run as before but with a warning. | ||||
* | ENH: Better error message for unclosed blocks | Brad King | 2009-01-21 | 1 | -11/+0 |
| | | | | | | This centralizes construction of the error message for an unclosed logical block (if, foreach, etc.). We record the line at which each block is opened so it can be reported in the error message. | ||||
* | ENH: Improve context for errors in macros | Brad King | 2008-09-24 | 1 | -29/+2 |
| | | | | | | We now properly report the source location of command arguments inside macros instead of using the macro invocation site. No information is lost because full call-stack information is already reported. | ||||
* | ENH: New format for warning and error messages | Brad King | 2008-03-07 | 1 | -17/+5 |
| | | | | | | | | | | | | | - Add cmMakefile methods IssueError and IssueWarning - Maintain an explicit call stack in cmMakefile - Include context/call-stack info in messages - Nested errors now unwind the call stack - Use new mechanism for policy warnings and errors - Improve policy error message - Include cmExecutionStatus pointer in call stack so that errors deeper in the C++ stack under a command invocation will become errors for the command | ||||
* | ENH: make CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS the default and remove the ↵ | Bill Hoffman | 2008-02-29 | 1 | -4/+4 |
| | | | | property. If any value is specified in an endif, endforeach, endwhile, etc then make sure it matches the start string. If no values are given then it is no longer an error. | ||||
* | ENH: add return and break support to cmake, also change basic command ↵ | Ken Martin | 2008-01-23 | 1 | -6/+22 |
| | | | | invocation signature to be able to return extra informaiton via the cmExecutionStatus class | ||||
* | ENH: make properties a bit more formal with documentation and chaining | Ken Martin | 2006-12-07 | 1 | -1/+2 |
| | |||||
* | ENH: fix warning | Bill Hoffman | 2006-12-01 | 1 | -1/+0 |
| | |||||
* | BUG: fix for 3815 seg fault | Bill Hoffman | 2006-12-01 | 1 | -4/+10 |
| | |||||
* | ENH: fix compile error | Bill Hoffman | 2006-10-03 | 1 | -3/+4 |
| | |||||
* | BUG: fix for seg fault bug #3815 | Bill Hoffman | 2006-10-03 | 1 | -0/+4 |
| | |||||
* | ENH: reduce string construct delete ops | Ken Martin | 2006-05-31 | 1 | -3/+3 |
| | |||||
* | ENH: always compile progress | Ken Martin | 2006-05-23 | 1 | -5/+16 |
| | |||||
* | STYLE: fix line length | Ken Martin | 2006-05-12 | 1 | -2/+2 |
| | |||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -48/+46 |
| | |||||
* | STYLE: Fix some style issues | Andy Cedilnik | 2006-03-10 | 1 | -40/+43 |
| | |||||
* | ENH: revert back to string replacement version | Ken Martin | 2005-07-05 | 1 | -84/+119 |
| | |||||
* | COMP: fix compiler warnings | Ken Martin | 2005-06-23 | 1 | -2/+1 |
| | |||||
* | ENH: converted macro to use variables and fixed some case issues with some ↵ | Ken Martin | 2005-06-23 | 1 | -120/+86 |
| | | | | function blockers | ||||
* | ENH: Save command that macro overwrites | Andy Cedilnik | 2005-06-14 | 1 | -0/+9 |
| | |||||
* | ENH: performance improvements | Bill Hoffman | 2005-04-12 | 1 | -3/+9 |
| | |||||
* | COMP: fix warning | Ken Martin | 2005-03-18 | 1 | -2/+1 |
| | |||||
* | ENH: big change that includes immediate subdir support, removing the notion ↵ | Ken Martin | 2005-03-18 | 1 | -165/+238 |
| | | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings | ||||
* | ENH: Added support for special variables CMAKE_CURRENT_LIST_FILE and ↵ | Brad King | 2004-08-04 | 1 | -0/+16 |
| | | | | CMAKE_CURRENT_LIST_LINE that evaluate to the file name and line number in which they appear. This implements the feature request from bug 1012. | ||||
* | ENH: make it run much faster | Bill Hoffman | 2004-05-19 | 1 | -44/+55 |
| | |||||
* | ENH: Add ARGV and ARGN support to MACRO command. ARGV is the list of all ↵ | Andy Cedilnik | 2004-04-29 | 1 | -0/+39 |
| | | | | arguments and ARGN is the list of all nonexpected arguments | ||||
* | WRN: remove warnings | Bill Hoffman | 2004-04-27 | 1 | -5/+4 |
| | |||||
* | macros now support varargs | Ken Martin | 2004-04-26 | 1 | -2/+31 |
| | |||||
* | ENH: Add option to retrieve list of macros. Close Bug #25 - Get_CMAKE_PROPERTIES | Andy Cedilnik | 2003-08-06 | 1 | -0/+9 |
| | |||||
* | performance improvements | Ken Martin | 2003-06-24 | 1 | -12/+13 |
| | |||||
* | perf improvement | Ken Martin | 2003-06-23 | 1 | -3/+7 |
| | |||||
* | better error reporting | Ken Martin | 2003-04-28 | 1 | -2/+8 |
| | |||||
* | ENH: Improved error message for macro invoked with incorrect number of ↵ | Brad King | 2002-12-17 | 1 | -1/+7 |
| | | | | arguments. | ||||
* | ENH: Improved filename/line number reporting in error message. Macro ↵ | Brad King | 2002-12-12 | 1 | -3/+11 |
| | | | | invocations now chain up the error message. | ||||
* | ENH: Moved ExpandListVariables out of individual commands. Argument ↵ | Brad King | 2002-12-11 | 1 | -36/+33 |
| | | | | evaluation rules are now very consistent. Double quotes can always be used to create exactly one argument, regardless of contents inside. | ||||
* | 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. | ||||
* | removed some includes | Ken Martin | 2002-09-27 | 1 | -1/+0 |
| | |||||
* | minor fix | Ken Martin | 2002-08-16 | 1 | -5/+1 |
| | |||||
* | added new command | Ken Martin | 2002-08-13 | 1 | -0/+128 |