summaryrefslogtreecommitdiff
path: root/ant-common.bat
blob: 1db6f81572f710d1c07c69cfc578c46fab37cc16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@echo off
rem ####################################################-*-Batch-script-*-####
rem # Common settings
rem ##########################################################################
rem # $Id$

rem ##########################################################################
rem # Apache Ant

set _ANTCMD=ant
set ANT_OPTS=-Xmx256M
rem set ANT_ARGS=-verbose

rem ##########################################################################
rem # Shell commands

set CP=cp
set ECHO=echo
set RM=del /s /q

rem ##########################################################################
rem # environment setup

echo Setting up the build environment..
echo.
call %_ANTCMD% -Dplatform=win -q -f setenv-nsc.xml >NUL
call env.bat

rem ##########################################################################