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

seachart - make the build portable

Location:
applications/editors/josm/plugins/seachart/js57toosm
Files:
1 deleted
2 edited

Legend:

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

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

    r31768 r32368  
    11<project name="js57toosm" 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="./js57toosm.jar"/>
    5   <property name="lang.dir" value="/usr/local/bin/commons-lang3-3.4/"/>
     6  <property name="lang.dir" value="../libs/"/>
    67  <path id="classpath">
    78    <fileset dir="${lang.dir}" includes="**/commons-lang3-3.4.jar"/>
    89  </path>
    9  
     10
    1011  <target name="init">
    1112    <mkdir dir="${build}"/>
    1213  </target>
    13  
     14
    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 
     
    2526    </jar>
    2627  </target>
    27  
     28
    2829  <target name="clean" description="clean up">
    2930    <delete dir="${build}"/>
Note: See TracChangeset for help on using the changeset viewer.