File: build.xml

package info (click to toggle)
eclipse-equinox 4.29-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 28,512 kB
  • sloc: java: 214,123; xml: 6,686; ansic: 5,780; sh: 227; cpp: 63; makefile: 14
file content (21 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<project default="build_eclipse" basedir=".">

<condition property="build-natives">
	<matches pattern="^${ws}.${os}.${arch}$" string="${native}"/>
</condition>

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

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

</project>