Subversion Repositories DevTools

Rev

Rev 1886 | Rev 1892 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1886 Rev 1890
Line 1... Line 1...
1
<project name="msvc-task">
1
<project name="msvc-task">
2
 
2
 
3
	<!--	C O P Y R I G H T   N O T I C E	
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 
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
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.
6
			than for the purposes expressly consented to by ERG in writing.
7
 
7
 
8
			This material is also copyright and may not be reproduced, stored in a
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
9
			retrieval system or transmitted in any form or by any means in whole or
Line 13... Line 13...
13
	<!-- This is a Windows based compiler package, so include its standard environment -->
13
	<!-- This is a Windows based compiler package, so include its standard environment -->
14
	<using name="ant-cpptasks" version="REPLACE_ANT_CPPTASK"/>
14
	<using name="ant-cpptasks" version="REPLACE_ANT_CPPTASK"/>
15
	<using name="ant-windows" version="REPLACE_WINDOWS"/>
15
	<using name="ant-windows" version="REPLACE_WINDOWS"/>
16
 
16
 
17
	<!-- Include the Microsoft C++ Compiler/Linker environment from its COTS package -->
17
	<!-- Include the Microsoft C++ Compiler/Linker environment from its COTS package -->
18
	<using name="microsoft_cpp" version="REPLACE_MICROSOFT_CPP">
18
	<using name="microsoft_cpp" version="REPLACE_MICROSOFT_CPP"/>
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
 
19
 
41
	<!-- Set up the environment's Binary path, Include and Library paths -->
20
	<!-- Set up the environment's Binary path, Include and Library paths -->
42
	<property name="msvc_bin" value="${using.microsoft_cpp.basedir}/bin"/>
21
	<property name="msvc_bin" value="${using.microsoft_cpp.basedir}/bin"/>
43
	<property name="msvc_compilername" value="msvc"/>
22
	<property name="msvc_compilername" value="msvc"/>
44
 
23