зеркало из https://github.com/mozilla/pjs.git
NOT PART OF BUILD. First cut at standalone installer for ActiveX control using Nullsoft installer
This commit is contained in:
Родитель
f89fef792f
Коммит
b5ef618016
|
@ -0,0 +1,8 @@
|
|||
Instructions for producing the ActiveX control installer
|
||||
|
||||
1. Build Mozilla
|
||||
2. Build the embedding dist
|
||||
3. Grab the latest Nullsoft Installer.
|
||||
4. Edit control.nsi with your paths & version info
|
||||
5. Run MakeNSISW over control.nsi
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
!define VERSION "v1.5"
|
||||
!define DISTDIR "d:\m\source\mozilla\dist\Embed"
|
||||
|
||||
Name "Mozilla ActiveX Control ${VERSION}"
|
||||
|
||||
InstallDir "$PROGRAMFILES\Mozilla Control ${VERSION}"
|
||||
|
||||
OutFile MozillaControl.exe
|
||||
|
||||
DirText "This will install the Mozilla ActiveX Control ${VERSION} on your computer. Pick an installation directory."
|
||||
|
||||
Section "Mozilla Control (required)"
|
||||
|
||||
SetOutPath $INSTDIR
|
||||
File /r "${DISTDIR}\*.*"
|
||||
|
||||
RegDLL mozctlx.dll
|
||||
|
||||
SectionEnd
|
||||
|
||||
Section "uninstall"
|
||||
|
||||
UnRegDLL mozctlx.dll
|
||||
Delete $INSTDIR\Uninst.exe
|
||||
RMDir /r $INSTDIR
|
||||
|
||||
SectionEnd
|
Загрузка…
Ссылка в новой задаче