X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=contrib%2Fpulseview_cross.nsi;h=a550d50bc066066eabc058a6b2d38392a2ba97c4;hp=ed2f317158ce5a9737616cb8732dc6e94545c252;hb=0518e9c9d1c59080eb167e7b13bd498a90ac1b0f;hpb=c3bf1d31fb43dc26a00fef05d951806e3158c55b diff --git a/contrib/pulseview_cross.nsi b/contrib/pulseview_cross.nsi index ed2f3171..a550d50b 100644 --- a/contrib/pulseview_cross.nsi +++ b/contrib/pulseview_cross.nsi @@ -167,6 +167,16 @@ Section "PulseView (required)" Section1 "$INSTDIR\Uninstall.exe" "" "$INSTDIR\Uninstall.exe" 0 \ SW_SHOWNORMAL "" "Uninstall PulseView" + # Create a shortcut for the Zadig executable. + CreateShortCut "$SMPROGRAMS\sigrok\PulseView\Zadig.lnk" \ + "$INSTDIR\zadig.exe" "" "$INSTDIR\zadig.exe" 0 \ + SW_SHOWNORMAL "" "Zadig" + + # Create a shortcut for the Zadig executable (for Win XP). + CreateShortCut "$SMPROGRAMS\sigrok\PulseView\Zadig (Win XP).lnk" \ + "$INSTDIR\zadig_xp.exe" "" "$INSTDIR\zadig_xp.exe" 0 \ + SW_SHOWNORMAL "" "Zadig (Win XP)" + # Create registry keys for "Add/remove programs" in the control panel. WriteRegStr HKLM "${REGSTR}" "DisplayName" "PulseView" WriteRegStr HKLM "${REGSTR}" "UninstallString" \ @@ -227,6 +237,8 @@ Section "Uninstall" # Delete the links from the start menu. Delete "$SMPROGRAMS\sigrok\PulseView\PulseView.lnk" Delete "$SMPROGRAMS\sigrok\PulseView\Uninstall.lnk" + Delete "$SMPROGRAMS\sigrok\PulseView\Zadig.lnk" + Delete "$SMPROGRAMS\sigrok\PulseView\Zadig (Win XP).lnk" # Delete the sub-directory in the start menu. RMDir "$SMPROGRAMS\sigrok\PulseView"