mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 18:26:11 +03:00
61 lines
1.8 KiB
Text
61 lines
1.8 KiB
Text
; 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`
|