sledgehammer999
2 years ago
4 changed files with 145 additions and 33 deletions
@ -0,0 +1,61 @@
@@ -0,0 +1,61 @@
|
||||
; Code taken from https://nsis.sourceforge.io/VersionCompleteXXXX |
||||
; See http://nsis.sourceforge.net/VersionCompleteXXXX for documentation |
||||
!macro VersionCompleteXXXRevision _INPUT_VALUE _OUTPUT_SYMBOL _REVISION |
||||
!searchparse /noerrors ${_INPUT_VALUE} "" _VERSION_1 "." _VERSION_2 "." _VERSION_3 "." _VERSION_4 |
||||
!ifndef _VERSION_1 |
||||
!define _VERSION_1 0 |
||||
!else if `${_VERSION_1}` == `` |
||||
!define /redef _VERSION_1 0 |
||||
!endif |
||||
!ifndef _VERSION_2 |
||||
!define _VERSION_2 0 |
||||
!else if `${_VERSION_2}` == `` |
||||
!define /redef _VERSION_2 0 |
||||
!endif |
||||
!ifndef _VERSION_3 |
||||
!define _VERSION_3 0 |
||||
!else if `${_VERSION_3}` == `` |
||||
!define /redef _VERSION_3 0 |
||||
!endif |
||||
!ifndef _VERSION_4 |
||||
!define _VERSION_4 0 |
||||
!else if `${_VERSION_4}` == `` |
||||
!define /redef _VERSION_4 0 |
||||
!endif |
||||
!define ${_OUTPUT_SYMBOL} ${_VERSION_1}.${_VERSION_2}.${_VERSION_3}.${_REVISION} |
||||
!undef _VERSION_1 |
||||
!undef _VERSION_2 |
||||
!undef _VERSION_3 |
||||
!undef _VERSION_4 |
||||
!undef _REVISION |
||||
!macroend |
||||
!define VersionCompleteXXXRevision `!insertmacro VersionCompleteXXXRevision` |
||||
!macro VersionCompleteXXXX _INPUT_VALUE _OUTPUT_SYMBOL |
||||
!searchparse /noerrors ${_INPUT_VALUE} "" _VERSION_1 "." _VERSION_2 "." _VERSION_3 "." _VERSION_4 |
||||
!ifndef _VERSION_1 |
||||
!define _VERSION_1 0 |
||||
!else if `${_VERSION_1}` == `` |
||||
!define /redef _VERSION_1 0 |
||||
!endif |
||||
!ifndef _VERSION_2 |
||||
!define _VERSION_2 0 |
||||
!else if `${_VERSION_2}` == `` |
||||
!define /redef _VERSION_2 0 |
||||
!endif |
||||
!ifndef _VERSION_3 |
||||
!define _VERSION_3 0 |
||||
!else if `${_VERSION_3}` == `` |
||||
!define /redef _VERSION_3 0 |
||||
!endif |
||||
!ifndef _VERSION_4 |
||||
!define _VERSION_4 0 |
||||
!else if `${_VERSION_4}` == `` |
||||
!define /redef _VERSION_4 0 |
||||
!endif |
||||
!define ${_OUTPUT_SYMBOL} ${_VERSION_1}.${_VERSION_2}.${_VERSION_3}.${_VERSION_4} |
||||
!undef _VERSION_1 |
||||
!undef _VERSION_2 |
||||
!undef _VERSION_3 |
||||
!undef _VERSION_4 |
||||
!macroend |
||||
!define VersionCompleteXXXX `!insertmacro VersionCompleteXXXX` |
Loading…
Reference in new issue