diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-03-01 16:08:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-03-01 16:34:05 +0300 |
commit | f802f802a4cdedb753848a1ac5a550c8e27d3d4a (patch) | |
tree | 2f82c608e836f965120d8d7b6f4e60462ea5f98b /packaging/windows/evol.nsi | |
parent | d97fabc2a9408a35ecfab733573b6b7592922f0d (diff) | |
download | plus-f802f802a4cdedb753848a1ac5a550c8e27d3d4a.tar.gz plus-f802f802a4cdedb753848a1ac5a550c8e27d3d4a.tar.bz2 plus-f802f802a4cdedb753848a1ac5a550c8e27d3d4a.tar.xz plus-f802f802a4cdedb753848a1ac5a550c8e27d3d4a.zip |
Add gdb to windows build.
Diffstat (limited to 'packaging/windows/evol.nsi')
-rw-r--r-- | packaging/windows/evol.nsi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packaging/windows/evol.nsi b/packaging/windows/evol.nsi index 73554e0cf..5b84a2ff7 100644 --- a/packaging/windows/evol.nsi +++ b/packaging/windows/evol.nsi @@ -355,6 +355,13 @@ Section /o "Portable" SecPortable File "portable.xml" SectionEnd +Section /o "Debugger" SecDebug + SetOutPath "$INSTDIR" + File "${DLLDIR}\gdb.exe" + CreateShortCut "$SMPROGRAMS\EvolOnline\EvolOnline (debug).lnk" '"$INSTDIR\gdb.exe"' '"$INSTDIR\manaplus.exe"' "$INSTDIR\manaplus.exe" 1 + CreateShortCut "$DESKTOP\EvolOnline (debug).lnk" '"$INSTDIR\gdb.exe"' '"$INSTDIR\manaplus.exe"' "$INSTDIR\manaplus.exe" 1 +SectionEnd + Section /o "Evol Online music" SecEvolMusic AddSize 9787 CreateDirectory "$INSTDIR\data\music" @@ -376,6 +383,7 @@ SectionEnd !insertmacro MUI_DESCRIPTION_TEXT ${SecPortable} "Portable client. (If selected client will work as portable client.)" !insertmacro MUI_DESCRIPTION_TEXT ${SecEvolMusic} "Background evol music. (If selected the evol music will be downloaded from the internet.)" !insertmacro MUI_DESCRIPTION_TEXT ${SecTrans} "Translations for the user interface. Uncheck this component to leave it in English." + !insertmacro MUI_DESCRIPTION_TEXT ${SecDebug} "Install debugger for try to find stability problems." !insertmacro MUI_FUNCTION_DESCRIPTION_END @@ -412,8 +420,10 @@ Section Uninstall Delete "$SMPROGRAMS\EvolOnline\Uninstall.lnk" Delete "$DESKTOP\EvolOnline.lnk" + Delete "$DESKTOP\EvolOnline (debug).lnk" Delete "$DESKTOP\EvolOnline (tests).lnk" Delete "$SMPROGRAMS\EvolOnline\EvolOnline.lnk" + Delete "$SMPROGRAMS\EvolOnline\EvolOnline (debug).lnk" Delete "$SMPROGRAMS\EvolOnline\EvolOnline (no opengl).lnk" Delete "$SMPROGRAMS\EvolOnline\EvolOnline (safemode).lnk" Delete "$SMPROGRAMS\EvolOnline\EvolOnline (tests).lnk" |