summaryrefslogtreecommitdiffstats
path: root/Utilities/Release/CMake.nsi.in
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-06-22 15:31:35 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-06-22 15:31:35 (GMT)
commit2acd7c07ba9bf2c3ed6e31fe113bda04332cef6a (patch)
tree0a07edf5bcba84fff6278e0a7cdf4ebb9cfcf4aa /Utilities/Release/CMake.nsi.in
parent10e3efa6b5f9c681a3c8ce402057e4cf9937e0e9 (diff)
downloadCMake-2acd7c07ba9bf2c3ed6e31fe113bda04332cef6a.zip
CMake-2acd7c07ba9bf2c3ed6e31fe113bda04332cef6a.tar.gz
CMake-2acd7c07ba9bf2c3ed6e31fe113bda04332cef6a.tar.bz2
ENH: remove old style release stuff
Diffstat (limited to 'Utilities/Release/CMake.nsi.in')
-rw-r--r--Utilities/Release/CMake.nsi.in188
1 files changed, 0 insertions, 188 deletions
diff --git a/Utilities/Release/CMake.nsi.in b/Utilities/Release/CMake.nsi.in
deleted file mode 100644
index 794edf3..0000000
--- a/Utilities/Release/CMake.nsi.in
+++ /dev/null
@@ -1,188 +0,0 @@
-; CMake install script designed for a nmake build
-
-;--------------------------------
-; You must define these values
-
- !define VERSION "@CMake_VERSION@"
- !define PATCH "@CMake_VERSION_PATCH@"
- !define INST_DIR "@CMake_INSTALL_TOP@"
-
-;--------------------------------
-;Variables
-
- Var MUI_TEMP
- Var STARTMENU_FOLDER
-
-;--------------------------------
-;Include Modern UI
-
- !include "MUI.nsh"
-
- ;Default installation folder
- InstallDir "$PROGRAMFILES\CMake ${VERSION}"
-
-;--------------------------------
-; determine admin versus local install
-Function .onInit
-
- ClearErrors
- UserInfo::GetName
- IfErrors noLM
- Pop $0
- UserInfo::GetAccountType
- Pop $1
- StrCmp $1 "Admin" 0 +3
- SetShellVarContext all
- ;MessageBox MB_OK 'User "$0" is in the Admin group'
- Goto done
- StrCmp $1 "Power" 0 +3
- SetShellVarContext all
- ;MessageBox MB_OK 'User "$0" is in the Power Users group'
- Goto done
-
- noLM:
- ;Get installation folder from registry if available
-
- done:
-FunctionEnd
-
-
-;--------------------------------
-;General
-
- ;Name and file
- Name "CMake ${VERSION}"
- OutFile "@PROJECT_BINARY_DIR@\cmake-${VERSION}.${PATCH}-win32.exe"
-
-;--------------------------------
-;Interface Settings
-
- !define MUI_HEADERIMAGE
- !define MUI_ABORTWARNING
-
-;--------------------------------
-; Define some macro setting for the gui
-
- !define MUI_HEADERIMAGE_BITMAP "@PROJECT_SOURCE_DIR@\Utilities\Release\@PROJECT_NAME@Install.bmp"
-
-;--------------------------------
-;Pages
-
- !insertmacro MUI_PAGE_DIRECTORY
-
- ;Start Menu Folder Page Configuration
- !define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX"
- !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\Kitware\CMake ${VERSION}"
- !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
- !insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
-
- !insertmacro MUI_PAGE_INSTFILES
-
- !insertmacro MUI_UNPAGE_CONFIRM
- !insertmacro MUI_UNPAGE_INSTFILES
-
-;--------------------------------
-;Languages
-
- !insertmacro MUI_LANGUAGE "English"
-
-;--------------------------------
-;Installer Sections
-
-Section "Dummy Section" SecDummy
-
- ;Use the entire tree produced by the INSTALL target. Keep the
- ;list of directories here in sync with the RMDir commands below.
- SetOutPath "$INSTDIR"
- File /r "${INST_DIR}\bin"
- File /r "${INST_DIR}\doc"
- File /r "${INST_DIR}\share"
-
- @NSIS_EXTRA_COMMANDS@
-
- ;Store installation folder
- WriteRegStr SHCTX "Software\Kitware\CMake ${VERSION}" "" $INSTDIR
-
- ;Create uninstaller
- WriteUninstaller "$INSTDIR\Uninstall.exe"
-
- !insertmacro MUI_STARTMENU_WRITE_BEGIN Application
-
- ;Create shortcuts
- CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
- CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\cmake.lnk" "$INSTDIR\bin\CMakeSetup.exe"
- CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
-
- !insertmacro MUI_STARTMENU_WRITE_END
-
-SectionEnd
-
-
-;--------------------------------
-; determine admin versus local install
-Function un.onInit
-
- ClearErrors
- UserInfo::GetName
- IfErrors noLM
- Pop $0
- UserInfo::GetAccountType
- Pop $1
- StrCmp $1 "Admin" 0 +3
- SetShellVarContext all
- ;MessageBox MB_OK 'User "$0" is in the Admin group'
- Goto done
- StrCmp $1 "Power" 0 +3
- SetShellVarContext all
- ;MessageBox MB_OK 'User "$0" is in the Power Users group'
- Goto done
-
- noLM:
- ;Get installation folder from registry if available
-
- done:
-FunctionEnd
-
-;--------------------------------
-;Uninstaller Section
-
-Section "Uninstall"
-
- ;Remove directories we installed.
- ;Keep the list of directories here in sync with the File commands above.
- RMDir /r "$INSTDIR\bin"
- RMDir /r "$INSTDIR\doc"
- RMDir /r "$INSTDIR\share"
-
- ;Remove the uninstaller itself.
- Delete "$INSTDIR\Uninstall.exe"
-
- ;Remove the installation directory if it is empty.
- RMDir "$INSTDIR"
-
- ; Remove the registry entries.
- DeleteRegKey SHCTX "Software\Kitware\CMake ${VERSION}"
-
- !insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
-
- Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
- Delete "$SMPROGRAMS\$MUI_TEMP\cmake.lnk"
-
- ;Delete empty start menu parent diretories
- StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
-
- startMenuDeleteLoop:
- ClearErrors
- RMDir $MUI_TEMP
- GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
-
- IfErrors startMenuDeleteLoopDone
-
- StrCmp $MUI_TEMP $SMPROGRAMS startMenuDeleteLoopDone startMenuDeleteLoop
- startMenuDeleteLoopDone:
-
- DeleteRegKey /ifempty SHCTX "Software\Kitware\CMake ${VERSION}"
-
-SectionEnd
-
-