mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
Move version check to own file Split main installer into own script. Integrated changes for portable/standard installation. Forgot to remove a message box
13 lines
No EOL
512 B
NSIS
13 lines
No EOL
512 B
NSIS
Section "Start Menu Shortcuts" SEC_STARTMENU
|
|
|
|
; CreateShortCut gets the working directory from OutPath
|
|
SetOutPath "$INSTDIR"
|
|
CreateShortCut "$SMPROGRAMS\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0
|
|
SectionEnd
|
|
|
|
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 |