From f51d97cdfbb61a3c1b0456b32b5076d03ba5f8ac Mon Sep 17 00:00:00 2001 From: gingold Date: Mon, 2 Oct 2006 04:32:49 +0000 Subject: compile from svn repo --- translate/mcode/windows/ghdl.nsi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'translate/mcode/windows/ghdl.nsi') diff --git a/translate/mcode/windows/ghdl.nsi b/translate/mcode/windows/ghdl.nsi index 4aeab9c..528a7df 100644 --- a/translate/mcode/windows/ghdl.nsi +++ b/translate/mcode/windows/ghdl.nsi @@ -5,9 +5,8 @@ ; Check if administrator ; uninstall support ; TODO: -; * Add version -; * Check if GHDL is already installed (and uninstall before) -; * Doc +; * allow multiple version +; * command line installation ; * Allow user install ;-------------------------------- @@ -29,7 +28,7 @@ InstallDir $PROGRAMFILES\Ghdl ; overwrite the old one automatically) InstallDirRegKey HKLM "Software\Ghdl" "Install_Dir" -LicenseData ..\COPYING +LicenseData ..\..\..\COPYING ; LicenseForceSelection ;-------------------------------- @@ -117,7 +116,7 @@ Section "Ghdl Compiler (required)" File /oname=ghdl.exe ..\build\ghdl.exe SetOutPath $INSTDIR - File /oname=COPYING.txt ..\COPYING + File /oname=COPYING.txt ..\..\..\COPYING ; Write the installation path into the registry WriteRegStr HKLM "Software\Ghdl" "Install_Dir" $INSTDIR @@ -141,18 +140,19 @@ Section "VHDL standard and ieee libraries" File /r ..\lib\v93\std ..\lib\v93\ieee SectionEnd -Section "Synopsys libraries (Recommanded)" +Section "Synopsys libraries (Recommended)" SetOutPath $INSTDIR\lib\v87 File /r ..\lib\v87\synopsys SetOutPath $INSTDIR\lib\v93 File /r ..\lib\v93\synopsys SectionEnd -Section "Documentation (Recommanded)" +Section "Documentation (Recommended)" + SetOutPath $INSTDIR File ghdl.htm SectionEnd -Section "Add in PATH (Recommanded)" +Section "Add in PATH (Recommended)" WriteRegDWORD HKLM "Software\Ghdl" "PathSet" 1 Push $INSTDIR\Bin Call AddToPath -- cgit