-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathomx.xml
42 lines (29 loc) · 1.63 KB
/
omx.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<project name="omx" default="all">
<!-- File location -->
<dirname property="module.omx.basedir" file="${ant.file}"/>
<!-- classpath -->
<path id="compile.classpath">
<pathelement location="${module.omx.basedir}/../../hdf5/lib/fits.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/jhdf.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/jhdf4obj.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/jhdf5.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/jhdf5obj.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/jhdfobj.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/jhdfview.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/junit.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/netcdf.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/ext/fitsobj.jar"/>
<pathelement location="${module.omx.basedir}/../../hdf5/lib/ext/nc2obj.jar"/>
</path>
<!-- build jar only, need to build in Eclipse first -->
<target name="release">
<delete file="${module.omx.basedir}/release/omx.jar"/>
<jar destfile="${module.omx.basedir}/release/omx.jar">
<zipgroupfileset dir="${module.omx.basedir}/../../hdf5/lib" includes="*.jar"/>
<zipgroupfileset dir="${module.omx.basedir}/../../hdf5/lib/ext" includes="*.jar"/>
<fileset dir="${module.omx.basedir}/bin">
<include name="**/*.class"/>
</fileset>
</jar>
</target>
</project>