blob: a1685624eda333ae2b624982f6c97d0100064e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@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
|