[PATCH] D27438: clang-format-vsix: add a date stamp to the VSIX version number to ensure upgradability
Antonio Maiorano via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 6 18:29:36 PST 2016
amaiorano updated this revision to Diff 80527.
amaiorano added a comment.
Added hour and minute.
https://reviews.llvm.org/D27438
Files:
tools/clang-format-vs/CMakeLists.txt
Index: tools/clang-format-vs/CMakeLists.txt
===================================================================
--- tools/clang-format-vs/CMakeLists.txt
+++ tools/clang-format-vs/CMakeLists.txt
@@ -11,8 +11,11 @@
"${CLANG_SOURCE_DIR}/LICENSE.TXT"
"${CMAKE_CURRENT_SOURCE_DIR}/ClangFormat/license.txt")
+ # Build number added to Clang version to ensure that new VSIX can be upgraded
+ string(TIMESTAMP CLANG_FORMAT_VSIX_BUILD %y%m%d%H%M UTC)
+
if (NOT CLANG_FORMAT_VS_VERSION)
- set(CLANG_FORMAT_VS_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}")
+ set(CLANG_FORMAT_VS_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}.${CLANG_FORMAT_VSIX_BUILD}")
endif()
configure_file("source.extension.vsixmanifest.in"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27438.80527.patch
Type: text/x-patch
Size: 794 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20161207/d24d9166/attachment.bin>
More information about the cfe-commits
mailing list