Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: Added APPEND option to ADD_CUSTOM_COMMAND to allow extra dependencies ↵ | Brad King | 2006-10-04 | 1 | -0/+35 |
| | | | | to be connected later. This is useful to create one rule and then have a macro add things to it later. This addresses bug#2151. | ||||
* | BUG: Fix/cleanup custom commands and custom targets. Make empty comment ↵ | Brad King | 2006-09-28 | 1 | -6/+8 |
| | | | | strings work. Fix ZERO_CHECK target always out of date for debugging. Fix Makefile driving of custom commands in a custom target. Fix dependencies on custom targets not in ALL in VS generators. | ||||
* | ENH: Added VERBATIM option to ADD_CUSTOM_COMMAND and ADD_CUSTOM_TARGET ↵ | Brad King | 2006-09-28 | 1 | -7/+15 |
| | | | | commands. This option enables full escaping of custom command arguments on all platforms. See bug#3786. | ||||
* | ENH: Added support for multiple outputs generated by a single custom ↵ | Brad King | 2006-04-11 | 1 | -31/+39 |
| | | | | 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: Allow blocking of writing into the source tree | Andy Cedilnik | 2006-03-22 | 1 | -0/+22 |
| | |||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -4/+4 |
| | |||||
* | STYLE: Fix some style issues | Andy Cedilnik | 2006-03-10 | 1 | -5/+7 |
| | |||||
* | ENH: fix broken tests | Bill Hoffman | 2006-02-08 | 1 | -1/+0 |
| | |||||
* | ENH: add working directory support | Bill Hoffman | 2006-02-08 | 1 | -3/+13 |
| | |||||
* | ENH: fix for earlier fix on source with relative path | Ken Martin | 2005-08-08 | 1 | -1/+1 |
| | |||||
* | BUG: Do not convert SOURCE argument from relative to full path. It breaks ↵ | Brad King | 2005-08-08 | 1 | -1/+6 |
| | | | | the old-style SOURCE==TARGET trick and the SOURCE argument is only present for old-style commands anyway. This addresses bug#2120. | ||||
* | ENH: slightly modified version of Alex's relative path arguments for custom ↵ | Ken Martin | 2005-07-08 | 1 | -22/+39 |
| | | | | commands | ||||
* | ENH: Added check for invalid characters in output name. | Brad King | 2005-03-22 | 1 | -0/+10 |
| | |||||
* | ENH: Updated implementation of custom commands. Multiple command lines are ↵ | Brad King | 2005-02-22 | 1 | -44/+45 |
| | | | | 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: Fix typo: Bug #100 - Spelling correction to an error message | Andy Cedilnik | 2003-07-29 | 1 | -1/+1 |
| | |||||
* | ENH: better error checking | Bill Hoffman | 2003-07-15 | 1 | -0/+8 |
| | |||||
* | yikes added new custom command support | Ken Martin | 2003-06-03 | 1 | -12/+57 |
| | |||||
* | ENH: Moved ExpandListVariables out of individual commands. Argument ↵ | Brad King | 2002-12-11 | 1 | -4/+2 |
| | | | | evaluation rules are now very consistent. Double quotes can always be used to create exactly one argument, regardless of contents inside. | ||||
* | Add comment support, so that you can see in build process what the custom ↵ | Andy Cedilnik | 2002-12-10 | 1 | -8/+12 |
| | | | | command does | ||||
* | ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵ | Brad King | 2002-10-23 | 1 | -4/+4 |
| | | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. | ||||
* | remove unused variables | Ken Martin | 2002-09-15 | 1 | -1/+0 |
| | |||||
* | ENH: add list expansion back | Bill Hoffman | 2002-05-22 | 1 | -2/+4 |
| | |||||
* | ENH: backwards compatible for VTK 4.0, add cmake version requires | Bill Hoffman | 2002-04-17 | 1 | -4/+2 |
| | |||||
* | ENH: use target as source if source is empty | Sebastien Barre | 2002-04-11 | 1 | -8/+12 |
| | |||||
* | make sure ; expansion is done in all commands | Bill Hoffman | 2002-03-29 | 1 | -2/+4 |
| | |||||
* | ENH: expand variables in arguments before the commands get them | Bill Hoffman | 2002-03-05 | 1 | -3/+1 |
| | |||||
* | ENH:Updated copyright | Will Schroeder | 2002-01-21 | 1 | -4/+5 |
| | |||||
* | Remove hack. | Sebastien Barre | 2002-01-16 | 1 | -28/+0 |
| | |||||
* | Hack to make it work almost like before | Andy Cedilnik | 2002-01-16 | 1 | -1/+7 |
| | |||||
* | Fix add custom command so that it actually executes the code | Andy Cedilnik | 2002-01-03 | 1 | -0/+25 |
| | |||||
* | SOURCE, COMMAND, TARGET are required now | Sebastien Barre | 2001-11-09 | 1 | -6/+2 |
| | |||||
* | Reimplement code. Since a custom command is very flexible and might be ↵ | Sebastien Barre | 2001-11-09 | 1 | -44/+95 |
| | | | | extended in the future, make all arguments prefixed with arg type, make ordering irrelevant and potentially all args optional. | ||||
* | Fix number of params and expand vars in all args | Sebastien Barre | 2001-11-08 | 1 | -10/+25 |
| | |||||
* | Added accessor for add custom command | Andy Cedilnik | 2001-11-07 | 1 | -0/+73 |