removed unused files
This commit is contained in:
parent
474edac0f5
commit
77b61f278b
|
@ -1,5 +0,0 @@
|
|||
This folder contains a number of COOJA project directory examples.
|
||||
These can be imported in COOJA using from the "Settings" > "Manage Project Directories" menu option.
|
||||
|
||||
The examples need to be compiled; the Ant build.xml can be used:
|
||||
> ant compile
|
|
@ -1,51 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<project name="COOJA Examples" default="compile" basedir=".">
|
||||
<property name="cooja_jar" value="../dist/cooja.jar"/>
|
||||
|
||||
<target name="init">
|
||||
<tstamp/>
|
||||
</target>
|
||||
|
||||
<target name="compile" depends="init">
|
||||
<ant antfile="build.xml" dir=".." target="jar"/>
|
||||
|
||||
<javac srcdir="project_debug/java" destdir="project_debug/java">
|
||||
<classpath>
|
||||
<pathelement location="${cooja_jar}"/>
|
||||
</classpath>
|
||||
</javac>
|
||||
|
||||
<javac srcdir="project_new_interface/java" destdir="project_new_interface/java">
|
||||
<classpath>
|
||||
<pathelement location="${cooja_jar}"/>
|
||||
</classpath>
|
||||
</javac>
|
||||
|
||||
<javac srcdir="project_new_plugin/java" destdir="project_new_plugin/java">
|
||||
<classpath>
|
||||
<pathelement location="${cooja_jar}"/>
|
||||
</classpath>
|
||||
</javac>
|
||||
|
||||
<javac srcdir="project_new_radiomedium/java" destdir="project_new_radiomedium/java">
|
||||
<classpath>
|
||||
<pathelement location="${cooja_jar}"/>
|
||||
</classpath>
|
||||
</javac>
|
||||
|
||||
<javac srcdir="project_uaodv/java" destdir="project_uaodv/java">
|
||||
<classpath>
|
||||
<pathelement location="${cooja_jar}"/>
|
||||
</classpath>
|
||||
</javac>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="clean" depends="init">
|
||||
<delete>
|
||||
<fileset dir="." includes="**/*.class"/>
|
||||
</delete>
|
||||
</target>
|
||||
|
||||
</project>
|
Loading…
Reference in a new issue