Changeset 10410 in osm for applications/editors
- Timestamp:
- 2008-09-02T19:11:32+02:00 (16 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build.xml
r10336 r10410 17 17 <ant dir="colorscheme" antfile="build.xml" target="dist"/> 18 18 <ant dir="duplicateway" antfile="build.xml" target="dist"/> 19 <ant dir="globalsat" antfile="build.xml" target="dist"/> 19 20 <ant dir="lakewalker" antfile="build.xml" target="dist"/> 20 21 <ant dir="lang" antfile="build.xml" target="dist"/> 21 22 <ant dir="livegps" antfile="build.xml" target="dist"/> 23 <ant dir="measurement" antfile="build.xml" target="dist"/> 22 24 <ant dir="namefinder" antfile="build.xml" target="dist"/> 23 25 <ant dir="nearclick" antfile="build.xml" target="dist"/> … … 46 48 <ant dir="colorscheme" antfile="build.xml" target="clean"/> 47 49 <ant dir="duplicateway" antfile="build.xml" target="clean"/> 50 <ant dir="globalsat" antfile="build.xml" target="clean"/> 48 51 <ant dir="grid" antfile="build.xml" target="clean"/> 49 52 <ant dir="lakewalker" antfile="build.xml" target="clean"/> 50 53 <ant dir="lang" antfile="build.xml" target="clean"/> 51 54 <ant dir="livegps" antfile="build.xml" target="clean"/> 55 <ant dir="measurement" antfile="build.xml" target="clean"/> 52 56 <ant dir="namefinder" antfile="build.xml" target="clean"/> 53 57 <ant dir="navigator" antfile="build.xml" target="clean"/> -
applications/editors/josm/plugins/globalsat
-
Property svn:ignore
set to
build
dist
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/globalsat/build.xml
r10378 r10410 1 <project name="globalsat" default=" build" basedir=".">1 <project name="globalsat" default="dist" basedir="."> 2 2 3 3 <!-- point to your JOSM directory --> … … 24 24 </target> 25 25 26 <target name=" build" depends="compile">26 <target name="dist" depends="compile"> 27 27 <unjar dest="build"> 28 28 <fileset refid="RXTX" /> … … 47 47 </target> 48 48 49 <target name="install" depends=" build">49 <target name="install" depends="dist"> 50 50 <copy file="dist/globalsat.jar" todir="${user.home}/.josm/plugins"/> 51 51 </target> -
applications/editors/josm/plugins/measurement
-
Property svn:ignore
set to
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/measurement/build.xml
r10379 r10410 1 <project name="measurement" default=" build" basedir=".">1 <project name="measurement" default="dist" basedir="."> 2 2 3 3 <!-- point to your JOSM directory --> 4 <property name="josm" location="../../ ../core/dist/josm-custom.jar" />4 <property name="josm" location="../../core/dist/josm-custom.jar" /> 5 5 6 6 … … 16 16 </target> 17 17 18 <target name=" build" depends="compile">18 <target name="dist" depends="compile"> 19 19 <copy todir="build/images" > 20 20 <fileset dir="images" /> … … 36 36 </target> 37 37 38 <target name="install" depends=" build">38 <target name="install" depends="dist"> 39 39 <copy file="dist/measurement.jar" todir="${user.home}/.josm/plugins"/> 40 40 </target>
Note:
See TracChangeset
for help on using the changeset viewer.