NSIS - Taskbar Progress for Windows 7+.

--HG--
branch : develop
This commit is contained in:
dismine 2014-10-20 14:12:04 +03:00
parent 51e3ce93db
commit f9e6b7f07d
2 changed files with 9 additions and 1 deletions

View file

@ -1,7 +1,7 @@
; NSIS installer script for Valentina
; --------------- Headers --------------
!include "MUI2.nsh"
!include "FileAssociation.nsh"
!include "headers\FileAssociation.nsh"
; --------------- General --------------
CRCCheck force
@ -171,6 +171,8 @@ Function un.onInit
!insertmacro MUI_UNGETLANGUAGE
FunctionEnd
Page instfiles "" createInstFiles
;-------------- Installer -------------------------
Section "Valentina (required)"
SectionIn RO ; define mandatory sections
@ -243,4 +245,10 @@ DeleteRegKey "${REGISTRY_ROOT}" "${REG_UNINSTALL}"
SectionEnd
;-------------- Taskbar Progress for Windows 7+ -------------
;Need install additional plug-in (http://nsis.sourceforge.net/TaskbarProgress_plug-in)
Function createInstFiles
w7tbp::Start
FunctionEnd
;eof