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

Last change on this file since 35304 was 35301, checked in by stoecker, 5 years ago

fix icon

File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="comfort0" default="dist" basedir=".">
3
4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
5 <property name="plugin.main.version" value="9229"/>
6 <property name="plugin.canloadatruntime" value="true"/>
7
8 <property name="plugin.author" value="simon04"/>
9 <property name="plugin.class" value="net.simon04.comfort0.Comfort0Plugin"/>
10 <property name="plugin.description" value="Allows editing data in Level0L format"/>
11 <property name="plugin.icon" value="images/theta.svg"/>
12 <property name="plugin.link" value="http://josm.openstreetmap.de/wiki/Help/Plugin/Comfort0"/>
13
14 <!-- ** include targets that all plugins have in common ** -->
15 <import file="../build-common.xml"/>
16
17 <property name="javacc.home" location="../../core/tools"/>
18 <property name="parser.dir" location="src/net/simon04/comfort0/level0l"/>
19 <target name="pre-compile" depends="javacc"/>
20 <target name="javacc" depends="init" unless="javacc.notRequired">
21 <mkdir dir="${parser.dir}/parsergen"/>
22 <exec append="false" executable="java" failifexecutionfails="true">
23 <arg value="-cp"/>
24 <arg value="${javacc.home}/javacc.jar"/>
25 <arg value="javacc"/>
26 <arg value="-DEBUG_PARSER=false"/>
27 <arg value="-DEBUG_TOKEN_MANAGER=false"/>
28 <arg value="-JDK_VERSION=1.7"/>
29 <arg value="-GRAMMAR_ENCODING=UTF-8"/>
30 <arg value="-OUTPUT_DIRECTORY=${parser.dir}/parsergen"/>
31 <arg value="${parser.dir}/Level0LParser.jj"/>
32 </exec>
33 </target>
34
35</project>
Note: See TracBrowser for help on using the repository browser.