diff options
author | Brad King <brad.king@kitware.com> | 2016-09-13 15:40:47 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-09-13 15:40:47 (GMT) |
commit | 994e98bf415183a6b360f05a43cedf53778e5a7a (patch) | |
tree | 5248ea7bc129bc721f24fc4230f1defcf97c42cf /Source | |
parent | f51f4ee9a34faeeb6ed22ea4e894dbac7572abc7 (diff) | |
parent | 410add400803340581eccf5ac1c83c8d4e40ad5a (diff) | |
download | CMake-994e98bf415183a6b360f05a43cedf53778e5a7a.zip CMake-994e98bf415183a6b360f05a43cedf53778e5a7a.tar.gz CMake-994e98bf415183a6b360f05a43cedf53778e5a7a.tar.bz2 |
Merge topic 'timestamp-names'
410add40 Help: Add notes for topic 'timestamp-names'
751f7b52 string(TIMESTAMP ...): add '%a' and '%b' format specifiers
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTimestamp.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmTimestamp.cxx b/Source/cmTimestamp.cxx index 61b74db..a94212c 100644 --- a/Source/cmTimestamp.cxx +++ b/Source/cmTimestamp.cxx @@ -123,6 +123,8 @@ std::string cmTimestamp::AddTimestampComponent(char flag, formatString += flag; switch (flag) { + case 'a': + case 'b': case 'd': case 'H': case 'I': |