Subversion Repositories DevTools

Rev

Rev 1882 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1880 mtynas 1
<project name="msvc-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
	<!-- This is a Windows based compiler package, so include its standard environment -->
14
	<using name="ant-cpptasks" version="1.2.0"/>
15
	<using name="ant-windows" version="1.0.0"/>
16
 
17
	<!-- Include the Microsoft C++ Compiler/Linker environment from its COTS package -->
18
	<using name="microsoft_cpp" version="6.0.0.cots">
19
		<exclude name="**/*.PDB"		if="windows-release"/>
20
		<exclude name="**/LIBCD.LIB"	if="windows-release"/>
21
		<exclude name="**/LIBCID.LIB"	if="windows-release"/>
22
		<exclude name="**/LIBCIMTD.LIB"	if="windows-release"/>
23
		<exclude name="**/LIBCMTD.LIB"	if="windows-release"/>
24
		<exclude name="**/LIBCPD.LIB"	if="windows-release"/>
25
		<exclude name="**/LIBCPMTD.LIB"	if="windows-release"/>
26
		<exclude name="**/MSVCIRTD.LIB"	if="windows-release"/>
27
		<exclude name="**/MSVCPRTD.LIB"	if="windows-release"/>
28
		<exclude name="**/MSVCRTD.LIB"	if="windows-release"/>
29
 
30
		<exclude name="**/LIBC.LIB"		if="windows-debug"/>
31
		<exclude name="**/LIBCI.LIB"	if="windows-debug"/>
32
		<exclude name="**/LIBCIMT.LIB"	if="windows-debug"/>
33
		<exclude name="**/LIBCMT.LIB"	if="windows-debug"/>
34
		<exclude name="**/LIBCP.LIB"	if="windows-debug"/>
35
		<exclude name="**/LIBCPMT.LIB"	if="windows-debug"/>
36
		<exclude name="**/MSVCIRT.LIB"	if="windows-debug"/>
37
		<exclude name="**/MSVCPRT.LIB"	if="windows-debug"/>
38
		<exclude name="**/MSVCRT.LIB"	if="windows-debug"/>
39
	</using>
40
 
41
	<!-- Set up the environment's Binary path, Include and Library paths -->
42
	<property name="msvc_bin" value="${using.microsoft_cpp.basedir}/bin"/>
43
	<property name="msvc_include" value="${using.microsoft_cpp.basedir}/include"/>
44
	<property name="msvc_lib" value="${using.microsoft_cpp.basedir}/lib"/>
45
 
46
</project>