Annotation of win32/bin/buildall.cmd, revision 1.1
1.1 ! misha 1: @ECHO off
! 2: REM buildall 4_1 _xml
! 3: REM for ON/OFF XML support edit file ../parser3/src/includes/pa_config_fixed.h
! 4:
! 5: call %VS71COMNTOOLS%\vsvars32.bat
! 6:
! 7: SET devenv="%VSINSTALLDIR%\devenv"
! 8: SET root=../parser3
! 9: SET workspace=%root%/parser3.sln
! 10: SET targets=%root%/src/targets
! 11:
! 12: REM packer must be in system PATH
! 13: REM SET zip=zip -j
! 14: SET zip=7z a -tzip -mx9
! 15:
! 16: SET basename=parser3
! 17: SET build=%1
! 18: SET os=win32
! 19: SET modifiers=%2
! 20: SET additional=%root%/README "copy parser3 configuration files here.txt" msvcr71.dll msvcp71.dll ..\win32\gc\Release\gc.dll
! 21:
! 22: %devenv% %workspace% /build release /project parser3
! 23: %devenv% %workspace% /build release /project ApacheModuleParser3Core
! 24: %devenv% %workspace% /build release /project ApacheModuleParser3
! 25: %devenv% %workspace% /build release /project parser3isapi
! 26:
! 27: %zip% %basename%_%build%_%os%_cgi%modifiers%.zip %targets%/cgi/release/parser3.exe %additional%
! 28: %zip% %basename%_%build%_%os%_apache%modifiers%.zip %targets%/apache13/release/ApacheModuleParser3.dll %additional%
! 29: %zip% %basename%_%build%_%os%_isapi%modifiers%.zip %targets%/isapi/release/parser3isapi.dll %additional%
! 30:
! 31: pause
E-mail: