Changeset 5153 in osm for applications/editors/josm/plugins/grid
- Timestamp:
- 2007-10-24T20:13:09+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/grid/build.xml
r5147 r5153 1 <project name="grid" default=" build" basedir=".">1 <project name="grid" default="dist" basedir="."> 2 2 3 3 <!-- compilation properties --> 4 <property name="josm.build.dir" value="../../core"/> 5 <property name="josm.home.dir" value="${user.home}/.josm"/> 6 <property name="plugin.build.dir" value="bin"/> 7 <property name="plugin.name" value="${ant.project.name}"/> 8 <property name="plugin.jar" value="${plugin.name}.jar"/> 4 <property name="josm.build.dir" value="../../core"/> 5 <property name="josm.home.dir" value="${user.home}/.josm"/> 6 <property name="josm" location="../../core/dist/josm-custom.jar" /> 7 <property name="plugin.build.dir" value="build"/> 8 <property name="plugin.dist.dir" value="../dist"/> 9 <property name="plugin.name" value="${ant.project.name}"/> 10 <property name="plugin.jar" value="../dist/${plugin.name}.jar"/> 11 9 12 10 13 <!-- point to your JOSM directory --> … … 24 27 </target> 25 28 26 <target name=" build" depends="compile">29 <target name="dist" depends="compile"> 27 30 <copy todir="build/images" > 28 31 <fileset dir="images" /> … … 37 40 38 41 <target name="clean"> 39 <delete dir="build" /> 40 <delete dir="dist" /> 41 <delete dir="${plugin.jar}" /> 42 <delete dir="${plugin.build.dir}" /> 43 <delete file="${plugin.jar}" /> 42 44 </target> 43 45 44 <target name="install" depends=" build">46 <target name="install" depends="dist"> 45 47 <copy file="${plugin.jar}" todir="${user.home}/.josm/plugins"/> 46 48 </target>
Note:
See TracChangeset
for help on using the changeset viewer.