osd-contiki/tools/cooja/examples/project_new_plugin/build.xml

25 lines
617 B
XML
Raw Normal View History

2008-10-28 17:22:35 +01:00
<?xml version="1.0"?>
<project name="COOJA Plugin example" default="compile" basedir=".">
2008-10-28 17:22:35 +01:00
<property name="src" location="java"/>
<property name="build" location="java"/>
<property name="cooja" location="../.."/>
<property name="cooja_jar" value="${cooja}/dist/cooja.jar"/>
<target name="init">
<tstamp/>
</target>
<target name="compile" depends="init">
<mkdir dir="${build}"/>
<javac srcdir="${src}" destdir="${build}" debug="on"
includeantruntime="false">
2008-10-28 17:22:35 +01:00
<classpath>
<pathelement location="${cooja_jar}"/>
</classpath>
</javac>
</target>
</project>