mirror of
https://github.com/libretro/pcsx2.git
synced 2025-02-12 21:28:26 +00:00
15 lines
604 B
NSIS
15 lines
604 B
NSIS
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 |