Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add NEWLINE_STYLE option to configure_file (#3957) | Peter Kuemmel | 2011-11-28 | 1 | -1/+14 |
| | |||||
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 1 | -14/+9 |
| | | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range. | ||||
* | Teach configure_file to handle directory names | Brad King | 2009-09-16 | 1 | -0/+18 |
| | | | | | | | This commit teaches configure_file how to handle directories for input and output. It is an error if the input is a directory. If the output is a directory we put the configured copy of the input file in it with the same name. See issue #9537. | ||||
* | Teach configure_file to handle relative paths | Brad King | 2009-09-16 | 1 | -10/+19 |
| | | | | | | | The configure_file() command now converts relative output paths to full paths using the current binary directory. Input relative paths were already converted using the current source directory, but this behavior was not previously documented. | ||||
* | Fix typo in cmConfigureFileCommand ivar name | Brad King | 2009-09-16 | 1 | -4/+4 |
| | | | | Rename 'OuputFile' to 'OutputFile'. | ||||
* | ENH: Improve handling of old-style compatibility. | Brad King | 2008-03-07 | 1 | -20/+1 |
| | | | | | | | | | | | | | | | | | | | - Remove CMP_0001 (no slash in target name) and restore old CMAKE_BACKWARDS_COMPATIBILITY check for it - Replace all checks of CMAKE_BACKWARDS_COMPATIBILITY with cmLocalGenerator::NeedBackwardsCompatibility calls - Create new CMP_0001 to determine whether or not CMAKE_BACKWARDS_COMPATIBILITY is used. (old = use, new = ignore) - Show CMAKE_BACKWARDS_COMPATIBILITY in cache only when CMP_0001 is set to OLD or WARN - Update documentation of cmake_policy and cmake_minimum_required to indicate their relationship and the 2.4 version boundary - When no cmake policy version is set in top level makefile implicitly call cmake_policy(VERSION 2.4) which restores CMAKE_BACKWARDS_COMPATIBILITY and other 2.4 compatibility - Fix tests MakeClean and Preprocess to call cmake_policy(VERSION 2.6) because they depend on new policies | ||||
* | BUG: change in handling of cmake_minimum_required | Ken Martin | 2008-03-06 | 1 | -2/+13 |
| | |||||
* | BUG: change the handling of CMAKE_MINIMUM_REQUIRED and ↵ | Ken Martin | 2008-03-06 | 1 | -13/+9 |
| | | | | BACKWARDS_COMPATIBILITY and extend the documentaiton quite a bit | ||||
* | BUG: some fixes, still a few to go | Ken Martin | 2008-03-05 | 1 | -9/+13 |
| | |||||
* | ENH: add return and break support to cmake, also change basic command ↵ | Ken Martin | 2008-01-23 | 1 | -1/+2 |
| | | | | invocation signature to be able to return extra informaiton via the cmExecutionStatus class | ||||
* | BUG: No need for the backward compatibility variable warning | Andy Cedilnik | 2007-04-04 | 1 | -2/+2 |
| | |||||
* | STYLE: fix line length | Ken Martin | 2006-05-10 | 1 | -1/+2 |
| | |||||
* | ENH: Allow blocking of writing into the source tree | Andy Cedilnik | 2006-03-22 | 1 | -0/+7 |
| | |||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -22/+22 |
| | |||||
* | ENH: configure file will assume start source dir if a full path is not provided | Ken Martin | 2005-07-07 | 1 | -1/+8 |
| | |||||
* | ENH: made configure file immediate by default for 2.2 or later | Ken Martin | 2005-06-13 | 1 | -0/+12 |
| | |||||
* | ENH: If configure file fails do not create directory | Andy Cedilnik | 2004-03-28 | 1 | -3/+7 |
| | |||||
* | ENH: Move implementation of configure_file to cmMakefile, so that other ↵ | Andy Cedilnik | 2004-03-09 | 1 | -53/+5 |
| | | | | classes can use it | ||||
* | ENH: Moved variable and #cmakedefine replacement from ↵ | Brad King | 2004-03-03 | 1 | -25/+4 |
| | | | | cmConfigureFileCommand.cxx to a ConfigureString method on cmMakefile. This will give other commands access to the configuration code. | ||||
* | ENH: Preserve permissions when copying files | Andy Cedilnik | 2004-01-26 | 1 | -0/+3 |
| | |||||
* | ENH: Merged use of the kwsys RegularExpression class instead of ↵ | Brad King | 2003-06-23 | 1 | -1/+3 |
| | | | | cmRegularExpression. | ||||
* | Implement GetLineFromStream that actually works and use it instead of getline | Andy Cedilnik | 2003-03-27 | 1 | -27/+20 |
| | |||||
* | spelling errors | Bill Hoffman | 2003-02-14 | 1 | -1/+1 |
| | |||||
* | 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. | ||||
* | ENH: expand variables in arguments before the commands get them | Bill Hoffman | 2002-03-05 | 1 | -2/+0 |
| | |||||
* | ENH:Updated copyright | Will Schroeder | 2002-01-21 | 1 | -29/+5 |
| | |||||
* | BUG: make sure non cmakedef lines are not skipped | Bill Hoffman | 2002-01-16 | 1 | -0/+4 |
| | |||||
* | ENH: do not undef cmakedefine stuff, just comment out the line | Bill Hoffman | 2002-01-16 | 1 | -1/+2 |
| | |||||
* | Add space to output | Andy Cedilnik | 2002-01-10 | 1 | -2/+2 |
| | |||||
* | ENH: add an option to configure file command that allows for only expansion ↵ | Bill Hoffman | 2001-10-30 | 1 | -2/+7 |
| | | | | of at variables and not dollar variables | ||||
* | add dependency for configure files and use short path in WIN32 cmake test | Bill Hoffman | 2001-10-26 | 1 | -0/+1 |
| | |||||
* | ENH: change InitialPass to take a const reference to the argument string, to ↵ | Bill Hoffman | 2001-09-20 | 1 | -1/+1 |
| | | | | avoid changes to the file cache | ||||
* | ENH: Added 'IMMEDIATE' option to CONFIGURE_FILE command to force file copy ↵ | Brad King | 2001-08-03 | 1 | -14/+24 |
| | | | | and configuration on the initial pass so that current variable values are used. | ||||
* | Wrong place for fout | Berk Geveci | 2001-07-02 | 1 | -1/+1 |
| | |||||
* | better configure file command | Ken Martin | 2001-06-29 | 1 | -31/+38 |
| | |||||
* | added escape quotes option | Ken Martin | 2001-06-22 | 1 | -1/+17 |
| | |||||
* | ENH: rename Invoke to InitialPass | Bill Hoffman | 2001-06-06 | 1 | -1/+1 |
| | |||||
* | BUG: fix use beyond end of array | Bill Hoffman | 2001-05-09 | 1 | -3/+5 |
| | |||||
* | ENH: call configure from cmake | Bill Hoffman | 2001-05-07 | 1 | -0/+133 |