mirror of https://github.com/PCSX2/pcsx2.git
15 lines
604 B
Plaintext
15 lines
604 B
Plaintext
Section "Start Menu Shortcuts" SEC_STARTMENU
|
|
${If} $option_startMenu == 1
|
|
; CreateShortCut gets the working directory from OutPath
|
|
SetOutPath "$INSTDIR"
|
|
CreateShortCut "$SMPROGRAMS\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0
|
|
${EndIf}
|
|
SectionEnd
|
|
|
|
Section "Desktop Shortcut" SEC_DESKTOP
|
|
${If} $option_desktop == 1
|
|
; CreateShortCut gets the working directory from OutPath
|
|
SetOutPath "$INSTDIR"
|
|
CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0 "" "" "A Playstation 2 Emulator"
|
|
${EndIf}
|
|
SectionEnd |