Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6d1758762be03c3bd2fa0f1766c56cedb1275337 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<!--
	Prerequiste: Install org.eclipse.license
		http://download.eclipse.org/cbi/updates/license
-->
<project default="export" basedir="." name="org.eclipse.etrice.feature">
	<target name="export">
		<delete dir="./export" quiet="true" />
		<mkdir dir="./export" />
		<!-- is asynchronous and requires eclipse UI, thus cannot be integrated in other ant jobs (https://bugs.eclipse.org/bugs/show_bug.cgi?id=58413) -->
		<pde.exportFeatures destination="./export" useworkspacecompiledclasses="true" exportSource="false" exportType="directory" features="org.eclipse.etrice.feature" useJARFormat="true" />
	</target>
</project>

Back to the top