You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
336 B

@echo off
if "%1" == "/?" goto USAGE
if "%1" == "d" set BUILD=debug
if "%1" == "r" set BUILD=release
if "%2" == "1" set APACHE_VER=1.3
if "%2" == "2" set APACHE_VER=2
goto EXIT
:USAGE
@echo on
@echo Usage: setbuild d|r 1|2
@echo set build type as 'debug' or 'release'
@echo set Web Server as Apache 1.3.x or Apache 2.0.x
:EXIT