Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add PREPEND sub-command to string command | Sylvain Joubert | 2017-08-11 | 1 | -0/+3 |
| | |||||
* | cmStringCommand: clear intermediate matches | Ben Boeckel | 2017-07-21 | 1 | -0/+1 |
| | | | | | | | | | | | When `string(REGEX REPLACE)` or `string(REGEX MATCHALL)` loop internally, they store their matches, but they do not clear the previous match from an earlier iteration. This can leave the contents of `CMAKE_MATCH_<N>` with bogus values for later matches in the string if they have groups which earlier matched a non-empty string, but now match an empty string. Fixes #17079. | ||||
* | cmTimestamp: Support SOURCE_DATE_EPOCH to override current time | Bernhard M. Wiedemann | 2017-01-26 | 1 | -0/+5 |
| | | | | | | See https://reproducible-builds.org/ for why this is good and https://reproducible-builds.org/specs/source-date-epoch/ for the definition of this variable. | ||||
* | string: add APPEND subcommand | Daniel Pfeifer | 2015-07-07 | 1 | -0/+3 |
| | |||||
* | file: Teach STRINGS to support UTF-16 and UTF-32 encodings | Justin Borodinsky | 2015-01-27 | 1 | -0/+5 |
| | |||||
* | test: add a test for clearing regex results | Ben Boeckel | 2014-12-03 | 1 | -0/+2 |
| | |||||
* | StringUuid: Implement new string(UUID) sub-command. | Nils Gladitz | 2014-08-28 | 1 | -0/+8 |
| | |||||
* | string: Add CONCAT sub-command | Brad King | 2013-10-21 | 1 | -0/+4 |
Add a string(CONCAT) command to simply concatenate input arguments together. This will be useful for combining strings from different quoting syntaxes. Add a RunCMake.string test covering these cases. |