-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.xml
More file actions
18 lines (17 loc) · 823 Bytes
/
build.xml
File metadata and controls
18 lines (17 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="build" name="Create Runnable Jar for Project Mojo IDE with libraries in sub-folder">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<target name="build">
<jar destfile="build/shared/mojo-ide.jar">
<manifest>
<attribute name="Main-Class" value="com.embeddedmicro.mojo.MainWindow"/>
<attribute name="Class-Path" value=". ./RXTXcomm.jar ./swt.jar ./jdom-2.0.5.jar ./commons-io-2.4.jar ./antlr-runtime-4.2.jar"/>
</manifest>
<fileset dir="bin"/>
</jar>
</target>
<target name="clean">
<delete file="build/shared/mojo-ide.jar" />
</target>
</project>