Ignore:
Timestamp:
2016-06-23T00:40:31+02:00 (9 years ago)
Author:
donvip
Message:

seachart - make the build portable

Location:
applications/editors/josm/plugins/seachart/jrender
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/jrender

    • Property svn:ignore set to
      build
      jrender.jar
  • applications/editors/josm/plugins/seachart/jrender/build.xml

    r31955 r32368  
    11<project name="jrender" default="dist" basedir=".">
    22  <property name="src" location="src"/>
     3  <property name="srcmain" location="../src"/>
    34  <property name="build" location="build"/>
    45  <property name="jarfile" location="./jrender.jar"/>
    5   <property name="batik.dir" value="/usr/local/bin/batik-1.7/"/>
     6  <property name="batik.dir" value="../libs/"/>
    67  <path id="classpath">
    78    <fileset dir="${batik.dir}" includes="**/batik*.jar"/>
    89  </path>
    9            
     10
    1011  <target name="init">
    1112    <mkdir dir="${build}"/>
     
    1314
    1415  <target name="compile" depends="init" description="compile the source " >
    15     <javac includeantruntime="false" srcdir="${src}" destdir="${build}" classpathref="classpath" encoding="UTF-8" />
     16    <javac includeantruntime="false" sourcepath="${srcmain}" srcdir="${src}" destdir="${build}" classpathref="classpath" encoding="UTF-8" />
    1617  </target>
    1718
Note: See TracChangeset for help on using the changeset viewer.