From 3b41dde751466df4bbedafd08cc9a27f802c21ec Mon Sep 17 00:00:00 2001 From: Michael Martin Date: Sat, 24 May 2014 07:20:48 -0700 Subject: [PATCH] Update Windows installer for 2.1 --- src/scripts/ophis.nsi | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/scripts/ophis.nsi b/src/scripts/ophis.nsi index ff491d5..d1e68ae 100644 --- a/src/scripts/ophis.nsi +++ b/src/scripts/ophis.nsi @@ -85,6 +85,7 @@ Section "Ophis" SEC01 File "..\..\examples\hello7.oph" File "..\..\examples\structuredemo.oph" File "..\..\examples\fibonacci.oph" + File "..\..\examples\kinematics.oph" SetOutPath "$INSTDIR\examples\hi_stella" File "..\..\examples\hi_stella\hi_stella.oph" File "..\..\examples\hi_stella\README.txt" @@ -97,6 +98,10 @@ Section "Ophis" SEC01 SetOutPath "$INSTDIR\platform" File "..\..\platform\c64_0.oph" File "..\..\platform\c64kernal.oph" + File "..\..\platform\c64header.oph" + File "..\..\platform\libbasic64.oph" + File "..\..\platform\vic20.oph" + File "..\..\platform\vic20x.oph" File "..\..\platform\nes.oph" File "..\..\platform\stella.oph" File "..\..\platform\README.txt" @@ -136,6 +141,7 @@ FunctionEnd Section Uninstall !insertmacro MUI_STARTMENU_GETFOLDER "Application" $ICONS_GROUP Delete "$INSTDIR\uninst.exe" + Delete "$INSTDIR\examples\kinematics.oph" Delete "$INSTDIR\examples\structuredemo.oph" Delete "$INSTDIR\examples\fibonacci.oph" Delete "$INSTDIR\examples\hello7.oph" @@ -162,6 +168,10 @@ Section Uninstall Delete "$INSTDIR\examples\hello_nes\README.txt" Delete "$INSTDIR\platform\c64_0.oph" Delete "$INSTDIR\platform\c64kernal.oph" + Delete "$INSTDIR\platform\c64header.oph" + Delete "$INSTDIR\platform\libbasic64.oph" + Delete "$INSTDIR\platform\vic20.oph" + Delete "$INSTDIR\platform\vic20x.oph" Delete "$INSTDIR\platform\nes.oph" Delete "$INSTDIR\platform\stella.oph" Delete "$INSTDIR\platform\README.txt"