Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 056b859261ae7d9bb55ca024f4f16e947a42f620 (plain) (blame)
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"?>

<project default="build_eclipse" basedir=".">

<target name="build_eclipse">
	<exec dir="." executable="${basedir}\build.bat">
		<arg line="install"/>
	</exec>
</target>

<target name="clean">
	<tstamp/>
	<exec dir="." executable="${basedir}\build.bat">
		<arg line="clean"/>
	</exec>
</target>

</project>

Back to the top