blob: 24274b42997ff0aa7763ac5527eafce7d333831b [file] [log] [blame]
kprobst@google.com84036662008-12-02 04:28:46 +00001<?xml version="1.0"?>
2
fabbott@google.com0c0a29e2008-12-08 22:06:45 +00003<project name="soyc-vis" default="build" basedir=".">
kprobst@google.com84036662008-12-02 04:28:46 +00004
fabbott@google.com0c0a29e2008-12-08 22:06:45 +00005 <property name="gwt.root" location="../.." />
6 <property name="project.tail" value="tools/soyc-vis" />
7 <import file="${gwt.root}/common.ant.xml" />
spoon@google.come73afda2009-04-28 21:07:29 +00008
jat@google.com0b1619e2009-09-20 19:33:31 +00009 <property.ensure name="gwt.dev.jar" location="${gwt.build.lib}/gwt-dev.jar" />
kprobst@google.com84036662008-12-02 04:28:46 +000010
fabbott@google.com0c0a29e2008-12-08 22:06:45 +000011 <target name="clean">
12 <delete dir="build"/>
13 </target>
kprobst@google.com84036662008-12-02 04:28:46 +000014
fabbott@google.com0c0a29e2008-12-08 22:06:45 +000015 <target name="compile">
rjrjr@google.com379e70d2009-10-01 00:53:07 +000016 <copy todir="${javac.out}/com/google/gwt/soyc/resources">
17 <fileset dir="${gwt.root}/dev/core/src/com/google/gwt/soyc/resources"/>
kprobst@google.com46e3cae2008-12-15 16:29:09 +000018 </copy>
fabbott@google.com0c0a29e2008-12-08 22:06:45 +000019 </target>
kprobst@google.com84036662008-12-02 04:28:46 +000020
fabbott@google.com0c0a29e2008-12-08 22:06:45 +000021 <target name="build" depends="compile">
spoon@google.com78d35802009-08-21 17:48:30 +000022 <!-- Build a transitional jar that is good enough for
23 passing as -resources to SoycDashboard. This jar
24 is being phased out in favor of gwt-dev-platform.jar
25 holding all the SOYC bits. -->
26 <jar destfile="${project.lib}">
fabbott@google.com0c0a29e2008-12-08 22:06:45 +000027 <fileset dir="${javac.out}" />
spoon@google.com78d35802009-08-21 17:48:30 +000028 </jar>
fabbott@google.com0c0a29e2008-12-08 22:06:45 +000029 </target>
kprobst@google.comab927e52008-12-03 16:28:14 +000030
fabbott@google.com0c0a29e2008-12-08 22:06:45 +000031 <target name="test"/>
32
33 <target name="checkstyle"/>
kprobst@google.com84036662008-12-02 04:28:46 +000034
fabbott@google.comdd208e62009-06-16 15:28:58 +000035</project>