[ActiveLock-Development] CVS: activelock _build.bat,1.2,1.3
Brought to you by:
ialkan
From: Thanh H. T. <th...@us...> - 2003-10-06 05:17:30
|
Update of /cvsroot/activelock/activelock In directory sc8-pr-cvs1:/tmp/cvs-serv29739 Modified Files: _build.bat Log Message: Added compile step for ALTestApp Index: _build.bat =================================================================== RCS file: /cvsroot/activelock/activelock/_build.bat,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- _build.bat 5 Oct 2003 08:53:43 -0000 1.2 +++ _build.bat 6 Oct 2003 05:17:26 -0000 1.3 @@ -18,7 +18,8 @@ rem -------- ------------- --------------------------------------------------------- rem 08.14.03 - th2tran - Created rem 10.05.03 - th2tran - Added compile steps for ALUGEN and building the setup -rem +rem - Added compile steps for Examples +rem - Sent vb compile output to build.log rem =================================================================================== rem Usage: To run a build of ActiveLock, run the following command: @@ -31,7 +32,8 @@ rem * Running _build specifying any target will run a complete build SETLOCAL -rem Test +rem Delete previous VB compilation log file +del build.log if %1 == installer goto installer if %1 == docs goto docs @@ -56,24 +58,22 @@ rem echo Unregistering activelock2.dll... rem regsvr32 /s /u src\activelock2.dll rem echo Compiling activelock2.dll... -rem vb6.exe /make src\ActiveLock2.vbp +rem vb6.exe /make src\ActiveLock2.vbp /out build.log rem Pause the build now to allow user to update sample app with new ActiveLock2.dll checksum rem TODO: implement echo Unregistering alugen.dll... regsvr32 /s /u ..\alugen\lib\alugen.dll echo Compiling alugen.dll... -vb6.exe /make ..\alugen\lib\ALUGENLib.vbp - -echo Unregistering alugen.dll... -regsvr32 /s /u ..\alugen\lib\alugen.dll -echo Compiling alugen.dll... -vb6.exe /make ..\alugen\lib\ALUGENLib.vbp -move ..\alugen\lib\alugen.dll bin\ +vb6.exe /make ..\alugen\lib\ALUGENLib.vbp /out build.log +rem move ..\alugen\lib\alugen.dll bin\ echo Compiling alugen.exe... -vb6.exe /make ..\alugen\app\ALUGEN.vbp -move ..\alugen\app\alugen.exe bin\ +vb6.exe /make ..\alugen\app\ALUGEN.vbp /out build.log +rem move ..\alugen\app\alugen.exe bin\ + +echo Compiling Examples +vb6.exe /make examples\example1\ALTestApp.vbp /out build.log if %1 == compile goto done |