summaryrefslogtreecommitdiffstats
path: root/contrib/mingw/options.nsi
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/mingw/options.nsi')
-rw-r--r--contrib/mingw/options.nsi51
1 files changed, 0 insertions, 51 deletions
diff --git a/contrib/mingw/options.nsi b/contrib/mingw/options.nsi
deleted file mode 100644
index ced9bdd410..0000000000
--- a/contrib/mingw/options.nsi
+++ /dev/null
@@ -1,51 +0,0 @@
-; RTEMS Tools Installer.
-;
-; Copyright Chris Johns (chrisj@rtems.org)
-;
-
-!ifndef OPTIONS_DEFINED
-!define OPTIONS_DEFINED
-
-!include "${RTEMS_SOURCE}/strstr.nsi"
-!include "${RTEMS_SOURCE}/getparameters.nsi"
-
-Var "SilentOption"
-Var "DebugOption"
-Var "DebugScriptOption"
-
-Function CheckCmdLineOption
- Exch $R0
- Call GetParameters
- Push $R0
- Call StrStr
- Exch $R1
- StrCmp $R1 "" 0 +2
- StrCpy $R0 "not-found"
- Pop $R1
- Exch $R0
-FunctionEnd
-
-Function CheckSilent
- StrCpy $SilentOption ""
- Push $R0
- Push "/SILENT"
- Call CheckCmdLineOption
- Pop $R0
- StrCmp $R0 "not-found" +2 0
- StrCpy $SilentOption "/S"
- Pop $R0
-FunctionEnd
-
-Function CheckDebug
- StrCpy $DebugOption ""
- Push $R0
- Push "/DEBUG"
- Call CheckCmdLineOption
- Pop $R0
- StrCmp $R0 "not-found" +3 0
- StrCpy $DebugScriptOption "-d"
- StrCpy $DebugOption "/DEBUG"
- Pop $R0
-FunctionEnd
-
-!endif