Changeset 3588 in osm for applications/editors/josm


Ignore:
Timestamp:
2007-07-14T21:08:03+02:00 (17 years ago)
Author:
ulf
Message:

add a more verbose comment why and how to change settings for local development.

The install target doesn't work on Windows, as the plugins dir is different, add a setting and a commented example for (german ;-) Windows developers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mappaint/build.xml

    r2768 r3588  
    11<project name="mappaint" default="build" basedir=".">
    22
    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 -->
    44        <!-- <property name="josm" location="../../../../editors/josm/dist/josm-custom.jar" /> -->
    55        <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>-->
    612
     13        <!-- you should not need to modify anything below this! -->
    714
    815
     
    3643
    3744        <target name="install" depends="build">
    38                 <copy file="dist/mappaint.jar" todir="${user.home}/.josm/plugins"/>
     45                <copy file="dist/mappaint.jar" todir="${plugins}"/>
    3946        </target>
    4047
Note: See TracChangeset for help on using the changeset viewer.