Mozilla/mozilla/cck/build/PERLBuild.bat
petitta%netscape.com fb7ca1e6dd Support to BuildCCK.pl
git-svn-id: svn://10.0.0.236/trunk@27403 18797224-902f-48f8-a5cc-f745e15eee43
1999-04-13 22:54:37 +00:00

19 lines
674 B
Batchfile
Executable File

@echo off
REM PERL issues 'system' calls to a different session with each 'system'
REM command, the commands below must happen within the same "session".
REM
REM Set the BuildType
if "%MOZ_DEBUG%"=="1" set BuildType=debug
if "%MOZ_DEBUG%"=="0" set BuildType=release
REM Set the environment vars.
@echo Setting System Vars.
call C:\"Program Files"\"Microsoft Visual Studio"\VC98\Bin\vcvars32.bat
REM build the damn thing, then send notification if the exe is there.
@echo Building Wizardmachine.
if "%MOZ_DEBUG%"=="1" NMAKE /f "WizardMachine.mak" CFG="WizardMachine - Win32 Debug"
if "%MOZ_DEBUG%"=="0" NMAKE /f "WizardMachine.mak" CFG="WizardMachine - Win32 Release"