ICE 3.4.2
[php5-ice-freebsdport.git] / java / test / IceUtil / fileLock / build.xml
blob148c78a1faf80d132df848b057c4d9a2fe7172b2
1 <!--
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  **********************************************************************
10 -->
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}"/>
25         </javac>
26         <javac srcdir="." destdir="${class.dir}"
27                classpathref="ice.classpath" excludes="generated/**" debug="${debug}">
28             <compilerarg value="${javac.lint}"/>
29         </javac>
30     </target>
32     <target name="all" depends="compile"/>
34     <target name="clean">
35         <delete dir="${class.dir}"/>
36         <delete file="file.lock"/>
37     </target>
38 </project>