mirror of https://github.com/PCSX2/pcsx2.git
33 lines
1.5 KiB
Plaintext
33 lines
1.5 KiB
Plaintext
|
|
||
|
|
||
|
; -----------------------------------------------------------------------
|
||
|
; 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
|
||
|
|
||
|
CreateShortCut "$SMPROGRAMS\PCSX2\Readme ${APP_VERSION}.lnk" "$INSTDIR\docs\${PCSX2_README}"
|
||
|
;CreateShortCut "$SMPROGRAMS\PCSX2\Timeline of PCSX2 Releases.lnk" "$INSTDIR\${PCSX2_README}.doc"
|
||
|
CreateShortCut "$SMPROGRAMS\PCSX2\Frequently Asked Questions ${APP_VERSION}.lnk" "$INSTDIR\docs\${PCSX2_FAQ}"
|
||
|
|
||
|
;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
|