Add a description to all shortcuts created by the Windows installer.

This commit is contained in:
Philipp Wolfer
2009-10-21 22:48:52 +02:00
parent 024c696fb6
commit c1d136a1f9

View File

@@ -142,17 +142,20 @@ SubSection "Shortcuts" shortcuts
Section "Startmenu" startmenu
SetShellVarContext all
CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}.lnk" "$INSTDIR\picard.exe"
CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}.lnk" "$INSTDIR\picard.exe" \
"" "" "" SW_SHOWNORMAL "" "${PRODUCT_DESCRIPTION}"
SectionEnd
Section "Desktop" desktop
SetShellVarContext all
CreateShortCut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\picard.exe"
CreateShortCut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\picard.exe" \
"" "" "" SW_SHOWNORMAL "" "${PRODUCT_DESCRIPTION}"
SectionEnd
Section "Quick Launch" quicklaunch
SetShellVarContext all
CreateShortCut "$QUICKLAUNCH\${PRODUCT_NAME}.lnk" "$INSTDIR\picard.exe"
CreateShortCut "$QUICKLAUNCH\${PRODUCT_NAME}.lnk" "$INSTDIR\picard.exe" \
"" "" "" SW_SHOWNORMAL "" "${PRODUCT_DESCRIPTION}"
SectionEnd
SubSectionEnd