2017-03-13 22:46:15 +00:00
|
|
|
Section "Start Menu Shortcuts" SEC_STARTMENU
|
2020-09-22 19:24:04 +00:00
|
|
|
${If} $option_startMenu == 1
|
|
|
|
; CreateShortCut gets the working directory from OutPath
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
CreateShortCut "$SMPROGRAMS\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0
|
|
|
|
${EndIf}
|
2017-03-13 22:46:15 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "Desktop Shortcut" SEC_DESKTOP
|
2020-09-22 19:24:04 +00:00
|
|
|
${If} $option_desktop == 1
|
|
|
|
; CreateShortCut gets the working directory from OutPath
|
|
|
|
SetOutPath "$INSTDIR"
|
2020-12-06 09:27:51 +00:00
|
|
|
CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0 "" "" "A PlayStation 2 Emulator"
|
2020-09-22 19:24:04 +00:00
|
|
|
${EndIf}
|
2017-03-13 22:46:15 +00:00
|
|
|
SectionEnd
|