Changeset 3588 in osm for applications/editors/josm/plugins/mappaint/build.xml
- Timestamp:
- 2007-07-14T21:08:03+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mappaint/build.xml
r2768 r3588 1 1 <project name="mappaint" default="build" basedir="."> 2 2 3 <!-- point to your JOSM directory -->3 <!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary --> 4 4 <!-- <property name="josm" location="../../../../editors/josm/dist/josm-custom.jar" /> --> 5 5 <property name="josm" location="../josm/josm-latest.jar" ></property> 6 7 <!-- target directory to place the plugin in --> 8 <!-- Windows has a different home directory scheme then unix/linux --> 9 <!-- I don't know an automatic way to find it with ant :-(, if you know, please fix --> 10 <property name="plugins" location="${user.home}/.josm/plugins" ></property> 11 <!--<property name="plugins" location="${user.home}/Anwendungsdaten/JOSM/plugins" ></property>--> 6 12 13 <!-- you should not need to modify anything below this! --> 7 14 8 15 … … 36 43 37 44 <target name="install" depends="build"> 38 <copy file="dist/mappaint.jar" todir="${ user.home}/.josm/plugins"/>45 <copy file="dist/mappaint.jar" todir="${plugins}"/> 39 46 </target> 40 47
Note:
See TracChangeset
for help on using the changeset viewer.