Merged the 2.3.0 branch back into the main line
authormichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 20 Sep 2001 00:13:46 +0000 (00:13 +0000)
committermichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 20 Sep 2001 00:13:46 +0000 (00:13 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1292 4a8a32a2-be11-0410-ad9d-d568d2c75423

doc/README.txt
support/scripts/sdcc.nsi [new file with mode: 0644]

index 0a7b8416dfb27d66c72595cffec24e28ccab50e0..b7ccded9a812bc4436c4279becfe3fc90491789a 100644 (file)
@@ -2,6 +2,7 @@ SDCC - a Freeware, retargettable, optimizing ANSI-C compiler
 ------------------------------------------------------------
 $Id$
 
+
 Welcome to SDCC, a freeware, retargettable, optimizing ANSI C compiler
 that supports a growing list of processors including the Intel mcs51
 family, the Zilog Z80, and the ds390.
diff --git a/support/scripts/sdcc.nsi b/support/scripts/sdcc.nsi
new file mode 100644 (file)
index 0000000..47aad12
--- /dev/null
@@ -0,0 +1,43 @@
+; Generated NSIS script file (generated by makensitemplate.phtml 0.20)
+; by 63.48.69.245 on Sep 19 01 @ 15:09
+
+; NOTE: this .NSI script is designed for NSIS v1.3+
+
+Name "Small Device C Compiler"
+OutFile "c:\temp\sdcc-2.3.0-installer.exe"
+
+; Some default compiler settings (uncomment and change at will):
+; SetCompress auto ; (can be off or force)
+; SetDatablockOptimize on ; (can be off)
+; CRCCheck on ; (can be off)
+AutoCloseWindow true ; (can be true for the window go away automatically at end)
+; ShowInstDetails hide ; (can be show to have them shown, or nevershow to disable)
+; SetDateSave off ; (can be on to have files restored to their orginal date)
+
+LicenseText "SDCC is licensed under the GNU Public License"
+LicenseData "LICENSE.txt"
+
+InstallDir "c:\sdcc"
+InstallDirRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Small Device C Compiler Group\Small Device C Compiler" ""
+DirShow show
+DirText "Choose the directory to install SDCC into.  Currently only c:\sdcc is supported."
+
+Section "" ; (default section)
+SetOutPath "$INSTDIR"
+; add files / whatever that need to be installed here.
+File /r bin
+File /r share
+File /r doc
+File README.txt
+File INSTALL.txt
+File LICENSE.txt
+WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Small Device C Compiler Group\Small Device C Compiler" "" "$INSTDIR"
+CreateDirectory "$SMPROGRAMS\Small Device C Compiler"
+CreateShortCut "$SMPROGRAMS\Small Device C Compiler\README.lnk" $INSTDIR\README.txt
+CreateShortCut "$SMPROGRAMS\Small Device C Compiler\INSTALL.lnk" $INSTDIR\INSTALL.txt
+CreateShortCut "$SMPROGRAMS\Small Device C Compiler\LICENSE.lnk" $INSTDIR\LICENSE.txt
+CreateShortCut "$SMPROGRAMS\Small Device C Compiler\Users Guide.lnk" $INSTDIR\share\doc\sdcc\sdccman.html\index.html
+ExecShell open $INSTDIR\README.txt
+SectionEnd ; end of default section
+
+; eof