source: osm/applications/editors/josm/plugins/build.xml@ 3785

Last change on this file since 3785 was 3785, checked in by ulf, 17 years ago

add colorscheme, lang and grid, lang and grid doesn't compile :-(

File size: 2.0 KB
Line 
1<project name="josm-plugins" default="build" basedir=".">
2
3 <!-- There's no josm.jar in the svn, so point "josm" to a local copy of your JOSM binary -->
4 <!--<property name="josm" location="../../../../editors/josm/dist/josm-custom.jar" />-->
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>-->
12
13 <!-- you should not need to modify anything below this! -->
14
15
16 <target name="init">
17 </target>
18
19 <target name="compile" depends="init">
20 </target>
21
22 <target name="build" depends="compile">
23 <ant dir="../core" antfile="build.xml" target="dist"/>
24 <ant dir="colorscheme" antfile="build.xml" target="dist"/>
25 <!--<ant dir="grid" antfile="build.xml" target="build"/>-->
26 <!--<ant dir="lang" antfile="build.xml" target="dist"/>-->
27 <ant dir="livegps" antfile="build.xml" target="dist"/>
28 <ant dir="mappaint" antfile="build.xml" target="build"/>
29 <ant dir="namefinder" antfile="build.xml" target="dist"/>
30 <ant dir="navigator" antfile="build.xml" target="dist"/>
31 </target>
32
33 <target name="clean">
34 <ant dir="../core" antfile="build.xml" target="clean"/>
35 <ant dir="colorscheme" antfile="build.xml" target="clean"/>
36 <!--<ant dir="grid" antfile="build.xml" target="clean"/>-->
37 <!--<ant dir="lang" antfile="build.xml" target="clean"/>-->
38 <ant dir="livegps" antfile="build.xml" target="clean"/>
39 <ant dir="mappaint" antfile="build.xml" target="clean"/>
40 <ant dir="namefinder" antfile="build.xml" target="clean"/>
41 <ant dir="navigator" antfile="build.xml" target="clean"/>
42 </target>
43
44 <target name="clean_install">
45 </target>
46
47 <target name="install" depends="build">
48 </target>
49
50</project>
Note: See TracBrowser for help on using the repository browser.