Subversion Repositories DevTools

Rev

Rev 1769 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1769 skinsman 1
<project name="cpptasks-task">
2
 
3
	<!--	C O P Y R I G H T   N O T I C E		-->
4
	<!--	This material is confidential to ERG and may not be disclosed in whole
5
			or in part to any third party nor used in any manner whatsoever other
6
			than for the purposes expressly consented to by ERG in writing.
7
 
8
			This material is also copyright and may not be reproduced, stored in a
9
			retrieval system or transmitted in any form or by any means in whole or
10
			in part without the express written consent of ERG.
11
	-->
12
 
13
	<!-- CPPTask Source : http://ant-contrib.sourceforge.net/cc.html -->
14
	<!-- Note the following REPLACE - TOKEN is a replacetag that gets set on release of this package -->
15
	<using name="cpptasks" version="REPLACE-TOKEN"/>
16
 
1771 skinsman 17
	<!-- Use a common classpath between taskdef & typedef, linking them via the loaderref attribute to
18
		 force them to be loaded with the same class loader - this ensures they are visible to each other.
19
	 -->
20
	<path id="cpptasks.classpath">
21
		<pathelement location="${using.cpptasks.basedir}/jar/cpptasks.jar"/>
22
	</path>
1769 skinsman 23
 
1771 skinsman 24
	<taskdef resource="cpptasks.tasks" classpathref="cpptasks.classpath" loaderref="cpptasks.classpath.loader" />
1769 skinsman 25
 
1771 skinsman 26
	<typedef resource="cpptasks.types" loaderref="cpptasks.classpath.loader"  />
27
 
1769 skinsman 28
</project>