comparison build.xml @ 325:f05c8b1f08c4

Explicit dependency for cmdline build
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Mon, 03 Oct 2011 06:54:43 +0200
parents b9592e21176a
children f2c11fe7f3e9
comparison
equal deleted inserted replaced
324:283b294d1079 325:f05c8b1f08c4
147 </jar> 147 </jar>
148 </target> 148 </target>
149 149
150 <target name="build-cmdline" depends="build-lib"> 150 <target name="build-cmdline" depends="build-lib">
151 <mkdir dir="bin" /> 151 <mkdir dir="bin" />
152 <javac srcdir="cmdline" destdir="bin" debug="${compile-with-debug}" /> 152 <javac srcdir="cmdline" destdir="bin" debug="${compile-with-debug}">
153 <classpath>
154 <pathelement location="${hg4j.jar}"/>
155 <pathelement location="${junit.jar}"/>
156 </classpath>
157 </javac>
153 <jar destfile="${hg4j-console.jar}"> 158 <jar destfile="${hg4j-console.jar}">
154 <fileset dir="bin/" includes="org/tmatesoft/hg/console/**"/> 159 <fileset dir="bin/" includes="org/tmatesoft/hg/console/**"/>
155 <fileset file="COPYING"/> 160 <fileset file="COPYING"/>
156 </jar> 161 </jar>
157 </target> 162 </target>