blob: 52a6e01391e0feaa7271be1b4bc0680d4cf87d82 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project default="build_all" basedir=".">
<import file="../com.instantiations.eclipse.shared_build/build-macros.xml" />
<!-- =================================================
Build this project as part of a bundle
-->
<target name="build_all">
<basename file="." property="Local-Name" />
<property name="Local-Temp"
location="${Project-Out}/../../${Local-Name}" />
<compile_lib eclipsetarget="3.1"
oldconfig="eclipse_3.1"
source="src"
tempSrcDir="${Local-Temp}/src"
destDir="${Local-Temp}/bin" />
<!-- Installer Classes... others projects add to the *.jar, so set update=true. -->
<mkdir dir="${Project-Out}/lib/swt-installer/" />
<zip destfile="${Project-Out}/lib/swt-installer/swt-installer.jar"
update="true">
<fileset dir="${Local-Temp}/bin" />
</zip>
<!-- Installer Source ... Others projects add to the *.jar, so set update=true. -->
<mkdir dir="${Project-Out}/lib/swt-installer/src/swt-installer" />
<zip destfile="${Project-Out}/lib/swt-installer/src/swt-installer/src.zip"
update="true">
<fileset dir="src" />
</zip>
</target>
</project>