blob: 03cb6379138178759632e4b514f8931e12e17388 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project org.eclipse.etrice.tutorials.simulators.trafficlight">
<property name="src" location="bin"/>
<property name="dst" location="../org.eclipse.etrice.examples.c/simulator/TrafficlightSimulator.jar"/>
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<target name="create_run_jar">
<jar destfile="${dst}" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="org.eclipse.etrice.tutorials.simulators.trafficlight.Main"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${src}"/>
</jar>
</target>
</project>