[ActiveLock-Development] CVS: installer ActiveLock.nsi,1.3,1.4
Brought to you by:
ialkan
From: Thanh H. T. <th...@us...> - 2003-10-13 08:28:02
|
Update of /cvsroot/activelock/installer In directory sc8-pr-cvs1:/tmp/cvs-serv26907 Modified Files: ActiveLock.nsi Log Message: Added alutil source to the distribution. Index: ActiveLock.nsi =================================================================== RCS file: /cvsroot/activelock/installer/ActiveLock.nsi,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ActiveLock.nsi 6 Oct 2003 05:28:14 -0000 1.3 +++ ActiveLock.nsi 13 Oct 2003 08:27:57 -0000 1.4 @@ -20,11 +20,13 @@ ; then we have to put alcrypto.dll in the same directory as alugen.exe, ; ALTestApp.exe, which doesn't sound too bad since they all reside in the ; bin directory, but will cause you pains when you start debugging. +; 10.11.03 - th2tran - Included alutil in the source code section. ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; !define VER_MAJOR 2 -!define VER_MINOR 0.2 +!define VER_MINOR 0.3 +!define ALUTIL_SRC_ROOT "..\alutil" !define AL_SRC_ROOT "..\activelock" !define ALCRYPTO_ROOT "..\alcrypto" !define ALUGEN_ROOT "..\alugen" @@ -117,7 +119,7 @@ SetOverwrite on File ${AL_SRC_ROOT}\bin\alutil.dll File ${AL_SRC_ROOT}\bin\activelock2.dll - File ${AL_SRC_ROOT}\src\activelock2.chm + File ${AL_SRC_ROOT}\bin\activelock2.chm ;File ${AL_SRC_ROOT}\Examples\Example1\ALTestApp.exe ; ALCrypto.dll goes to Windows directory @@ -173,12 +175,22 @@ WriteINIStr "$SMPROGRAMS\ActiveLock\ActiveLock Development Site.url" "InternetShortcut" "URL" "http://activelock.sourceforge.net/" CreateShortCut "$SMPROGRAMS\ActiveLock\Uninstall ActiveLock.lnk" "$INSTDIR\uninst.exe" - CreateShortCut "$SMPROGRAMS\ActiveLock\API Documentation.lnk" "$SYSDIR\ActiveLock2.chm" + CreateShortCut "$SMPROGRAMS\ActiveLock\API Documentation.lnk" "$INSTDIR\bin\activelock2.chm" !endif SectionEnd SubSection "Source Code" SecSrc + Section "ActiveLock Utilities Library" SecSrcALUtil + SectionIn 1 + DetailPrint "Extracting ActiveLockUtil source code...." + SetDetailsPrint textonly + SetOutPath $INSTDIR\Src\alutil + File ${ALUTIL_SRC_ROOT}\ActiveLockUtil.vbp + File ${ALUTIL_SRC_ROOT}\*.cls + File ${ALUTIL_SRC_ROOT}\*.bas + SetDetailsPrint both + SectionEnd Section "ActiveLock Source Code" SecSrcAL SectionIn 1 DetailPrint "Extracting ActiveLock source code...." @@ -194,7 +206,7 @@ SectionIn 1 DetailPrint "Extracting ALCrypto source code...." SetDetailsPrint textonly - SetOutPath $INSTDIR\Src\ALCrypto + SetOutPath $INSTDIR\Src\alcrypto File ${ALCRYPTO_ROOT}\ALCrypto.def File ${ALCRYPTO_ROOT}\ALCrypto.dsp File ${ALCRYPTO_ROOT}\ALCrypto.dsw @@ -206,7 +218,7 @@ SectionIn 1 DetailPrint "Extracting ALUGEN source code...." SetDetailsPrint textonly - SetOutPath $INSTDIR\Src\ALUGEN\lib + SetOutPath $INSTDIR\Src\alugen\lib File ${ALUGEN_ROOT}\lib\*.cls File ${ALUGEN_ROOT}\lib\*.bas File ${ALUGEN_ROOT}\lib\ALUGENLib.vbp @@ -263,6 +275,7 @@ !insertmacro MUI_DESCRIPTION_TEXT ${SecCore} "The core files required to use ActiveLock" !insertmacro MUI_DESCRIPTION_TEXT ${SecExample} "Example applications that show you how to use ActiveLock" !insertmacro MUI_DESCRIPTION_TEXT ${SecSrc} "Source code for ActiveLock and all related files" + !insertmacro MUI_DESCRIPTION_TEXT ${SecSrcALUtil} "Source code for ActiveLockUtil" !insertmacro MUI_DESCRIPTION_TEXT ${SecSrcAL} "Source code for ActiveLock" !insertmacro MUI_DESCRIPTION_TEXT ${SecSrcALCrypto} "Source code for ALCrypto" !insertmacro MUI_DESCRIPTION_TEXT ${SecSrcALUGEN} "Source code for ALUGEN" |