Subversion Repositories DevTools

Rev

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

Rev 1890 Rev 1892
Line 28... Line 28...
28
	<property name="msvc_lib" value="${using.microsoft_cpp.basedir}/lib"/>
28
	<property name="msvc_lib" value="${using.microsoft_cpp.basedir}/lib"/>
29
 
29
 
30
	<property name="msvc_lib_debug" value="${msvc_lib}/debug"/>
30
	<property name="msvc_lib_debug" value="${msvc_lib}/debug"/>
31
	<property name="msvc_lib_release" value="${msvc_lib}/release"/>
31
	<property name="msvc_lib_release" value="${msvc_lib}/release"/>
32
 
32
 
33
	<property name="msvc_libraries_debug"	value="kernel32.lib,user32.lib,advapi32.lib,ws2_32.lib"/>
33
	<property name="msvc_libraries_debug"	value="kernel32.lib,user32.lib,advapi32.lib,ws2_32.lib,wsock32.lib"/>
34
	<property name="msvc_libraries_release"	value="kernel32.lib,user32.lib,advapi32.lib,ws2_32.lib"/>
34
	<property name="msvc_libraries_release"	value="kernel32.lib,user32.lib,advapi32.lib,ws2_32.lib,wsock32.lib"/>
35
 
35
 
36
	<compiler id="msvc_compiler_debug_console" name="${msvc_compilername}">
36
	<compiler id="msvc_compiler_debug_console" name="${msvc_compilername}">
37
		<compilerarg value="/G6"/>
37
		<compilerarg value="/G6"/>
38
		<compilerarg value="/MDd"/>
38
		<compilerarg value="/MDd"/>
39
		<compilerarg value="/Ze"/>	<!-- Enable langauge extensions -->
39
		<compilerarg value="/Ze"/>	<!-- Enable langauge extensions -->
Line 86... Line 86...
86
		<compilerarg value="/Ob2"/>
86
		<compilerarg value="/Ob2"/>
87
 
87
 
88
	</compiler>
88
	</compiler>
89
 
89
 
90
 
90
 
91
	<linker id="msvc_linker_debug_console" name="${msvc_compilername}">
91
	<linker id="msvc_linker_debug_console" name="${msvc_compilername}" path="${msvc_bin}">
92
		<linkerarg value="-L&quot;${msvc_lib_debug}&quot;"/>
92
		<linkerarg value="-L&quot;${msvc_lib_debug}&quot;"/>
93
 
93
 
94
		<syslibset dir="${msvc_lib}" libs="MSVCPRTD,MSVCRTD,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
94
		<syslibset dir="${msvc_lib}" libs="MSVCPRTD,MSVCRTD,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
95
	</linker>
95
	</linker>
96
 
96
 
97
	<linker id="msvc_linker_debug_gui" name="${msvc_compilername}">
97
	<linker id="msvc_linker_debug_gui" name="${msvc_compilername}" path="${msvc_bin}">
98
		<linkerarg value="-L&quot;${msvc_lib_debug}&quot;"/>
98
		<linkerarg value="-L&quot;${msvc_lib_debug}&quot;"/>
99
 
99
 
100
		<syslibset dir="${msvc_lib}" libs="MSVCPRTD,MSVCRTD,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
100
		<syslibset dir="${msvc_lib}" libs="MSVCPRTD,MSVCRTD,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
101
	</linker>
101
	</linker>
102
 
102
 
103
	<linker id="msvc_linker_release_console" name="${msvc_compilername}">
103
	<linker id="msvc_linker_release_console" name="${msvc_compilername}" path="${msvc_bin}">
104
		<linkerarg value="/L&quot;${msvc_lib_release}&quot;"/>
104
		<linkerarg value="/L&quot;${msvc_lib_release}&quot;"/>
105
 
105
 
106
		<syslibset dir="${msvc_lib}" libs="MSVCPRT,MSVCRT,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
106
		<syslibset dir="${msvc_lib}" libs="MSVCPRT,MSVCRT,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
107
	</linker>
107
	</linker>
108
 
108
 
109
	<linker id="msvc_linker_release_gui" name="${msvc_compilername}">
109
	<linker id="msvc_linker_release_gui" name="${msvc_compilername}" path="${msvc_bin}">
110
		<linkerarg value="/L&quot;${msvc_lib_release}&quot;"/>
110
		<linkerarg value="/L&quot;${msvc_lib_release}&quot;"/>
111
 
111
 
112
		<syslibset dir="${msvc_lib}" libs="MSVCPRT,MSVCRT,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
112
		<syslibset dir="${msvc_lib}" libs="MSVCPRT,MSVCRT,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
113
	</linker>
113
	</linker>
114
 
114