2010-05-29 16:24:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
; -----------------------------------------------------------------------
|
|
|
|
; Start Menu - Optional section (can be disabled by the user)
|
|
|
|
Section "Start Menu Shortcuts" SEC_STARTMENU
|
|
|
|
|
|
|
|
; CreateShortCut gets the working directory from OutPath
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
|
|
|
|
CreateDirectory "$SMPROGRAMS\PCSX2"
|
|
|
|
CreateShortCut "$SMPROGRAMS\PCSX2\Uninstall ${APP_NAME}.lnk" "${UNINST_EXE}" "" "${UNINST_EXE}" 0
|
|
|
|
CreateShortCut "$SMPROGRAMS\PCSX2\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0
|
|
|
|
|
2012-08-04 15:37:50 +00:00
|
|
|
CreateShortCut "$SMPROGRAMS\PCSX2\Readme.lnk" "$INSTDIR\docs\${PCSX2_README}" \
|
2010-05-30 02:00:19 +00:00
|
|
|
"" "" 0 "" "" "Typical usage overview and background information for PCSX2."
|
2012-08-04 15:37:50 +00:00
|
|
|
CreateShortCut "$SMPROGRAMS\PCSX2\Frequently Asked Questions.lnk" "$INSTDIR\docs\${PCSX2_FAQ}" \
|
2010-05-30 02:00:19 +00:00
|
|
|
"" "" 0 "" "" "Common answers to common problems and inquiries."
|
2010-05-29 16:24:26 +00:00
|
|
|
|
|
|
|
;IfFileExists ..\bin\pcsx2-dev.exe 0 +2
|
|
|
|
; CreateShortCut "PCSX2\pcsx2-dev-r${SVNREV}.lnk" "$INSTDIR\pcsx2-dev-r${SVNREV}.exe" "" "$INSTDIR\pcsx2-dev-r${SVNREV}.exe" 0 "" "" \
|
|
|
|
; "PCSX2 Devel (has additional logging support)"
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
; -----------------------------------------------------------------------
|
|
|
|
; Desktop Icon - Optional section (can be disabled by the user)
|
|
|
|
Section "Desktop Shortcut" SEC_DESKTOP
|
|
|
|
|
|
|
|
; CreateShortCut gets the working directory from OutPath
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0 "" "" "A Playstation 2 Emulator"
|
|
|
|
|
|
|
|
SectionEnd
|