2 **********************************************************************
4 Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
6 This copy of Ice is licensed to you under the terms described in the
7 ICE_LICENSE file included in this distribution.
9 **********************************************************************
12 <project name="test_Ice_operations" default="all" basedir=".">
14 <!-- set global properties for this build -->
15 <property name="top.dir" value="../../.."/>
17 <!-- import common definitions -->
18 <import file="${top.dir}/config/common.xml"/>
20 <target name="compile" depends="init">
21 <mkdir dir="${class.dir}"/>
22 <javac srcdir="${generated.dir}" destdir="${class.dir}"
23 classpathref="ice.classpath" debug="${debug}">
24 <compilerarg value="${javac.lint}"/>
26 <javac srcdir="." destdir="${class.dir}"
27 classpathref="ice.classpath" excludes="generated/**" debug="${debug}">
28 <compilerarg value="${javac.lint}"/>
32 <target name="all" depends="compile"/>
35 <delete dir="${class.dir}"/>
36 <delete file="file.lock"/>