From 63c6ec28597c43573b4368e4badfeb43d789ab76 Mon Sep 17 00:00:00 2001 From: rainwater Date: Thu, 5 Sep 2002 16:41:54 +0000 Subject: [PATCH] add nsExec.dll to installer git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@929 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/makensis.nsi | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Examples/makensis.nsi b/Examples/makensis.nsi index 7395a6a2..8c988bfc 100644 --- a/Examples/makensis.nsi +++ b/Examples/makensis.nsi @@ -165,6 +165,19 @@ Section "Language DLL" SecContribLangDLL File ..\Contrib\LangDLL\LangDLL.dsp SectionEnd +Section "nsExec" SecContribnsExec + SectionIn 1 2 + SetOutPath $INSTDIR\Plugins + SetOverwrite try + File ..\Plugins\nsExec.dll + SetOutPath $INSTDIR\Contrib\nsExec + File ..\Contrib\nsExec\*.c + File ..\Contrib\nsExec\*.h + File ..\Contrib\nsExec\*.txt + File ..\Contrib\nsExec\*.dsw + File ..\Contrib\nsExec\*.dsp +SectionEnd + Section "Splash" SecContribSplash SectionIn 1 2 SetOutPath $INSTDIR\Contrib\Splash @@ -436,6 +449,7 @@ Function .onMouseOverSection !insertmacro MUI_DESCRIPTION_TEXT 1033 ${SecContribUIs} "User interface designs that can be used to change the installer look and feel" !insertmacro MUI_DESCRIPTION_TEXT 1033 ${SecContribLang} "Language files used to support multiple languages in an installer" !insertmacro MUI_DESCRIPTION_TEXT 1033 ${SecContribLangDLL} "Plugin that lets you add a language select dialog to your installer" + !insertmacro MUI_DESCRIPTION_TEXT 1033 ${SecContribnsExec} "Plugin that executes DOS based programs and hides the output." !insertmacro MUI_DESCRIPTION_TEXT 1033 ${SecContribSplash} "Splash screen add-on that lets you add a splash screen to an installer" !insertmacro MUI_DESCRIPTION_TEXT 1033 ${SecContribSplashT} "Splash screen add-on with transparency support that lets you add a splash screen to an installer" !insertmacro MUI_DESCRIPTION_TEXT 1033 ${SecContribZ2E} "Zip2Exe utility that converts zip files into an NSIS installer"