| Line 14... |
Line 14... |
| 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 |
|
19 |
|
| 20 |
<!-- Set up the environment's Binary path, Include and Library paths -->
|
20 |
<!-- Set up the environment's Binary path, Include and Library paths -->
|
| 21 |
<property name="msvc_bin" value="${using.microsoft_cpp.basedir}/bin"/>
|
21 |
<property name="msvc_bin" value="${using.microsoft_cpp.basedir}/bin"/>
|
| 22 |
<property name="msvc_compilername" value="msvc"/>
|
22 |
<property name="msvc_compilername" value="msvc"/>
|
| 23 |
|
23 |
|
| 24 |
<property name="msvc_include" value="${using.microsoft_cpp.basedir}/include"/>
|
24 |
<property name="msvc_include" value="${using.microsoft_cpp.basedir}/include"/>
|
| - |
|
25 |
|
| - |
|
26 |
<property name="msvc_include_dimkumware_true" value="${dinkumware_stl_include}"/>
|
| - |
|
27 |
<property name="msvc_include_dimkumware_false" value=""/>
|
| - |
|
28 |
|
| 25 |
<property name="msvc_include_debug" value="${msvc_include}"/>
|
29 |
<property name="msvc_include_debug" value="${msvc_include}"/>
|
| 26 |
<property name="msvc_include_release" value="${msvc_include}"/>
|
30 |
<property name="msvc_include_release" value="${msvc_include}"/>
|
| 27 |
|
31 |
|
| 28 |
<property name="msvc_lib" value="${using.microsoft_cpp.basedir}/lib"/>
|
32 |
<property name="msvc_lib" value="${using.microsoft_cpp.basedir}/lib"/>
|
| 29 |
|
33 |
|
| 30 |
<property name="msvc_lib_debug" value="${msvc_lib}/debug"/>
|
34 |
<property name="msvc_lib_debug" value="${msvc_lib}/debug"/>
|
| 31 |
<property name="msvc_lib_release" value="${msvc_lib}/release"/>
|
35 |
<property name="msvc_lib_release" value="${msvc_lib}/release"/>
|
| 32 |
|
36 |
|
| 33 |
<property name="msvc_libraries_debug" value="kernel32.lib,user32.lib,advapi32.lib,ws2_32.lib,wsock32.lib"/>
|
37 |
<property name="msvc_libraries_debug" value="kernel32.lib,user32.lib,advapi32.lib,ws2_32.lib,wsock32.lib,msvcrtd.lib,msvcprtd.lib,uuid.lib,oldnames.lib"/>
|
| 34 |
<property name="msvc_libraries_release" value="kernel32.lib,user32.lib,advapi32.lib,ws2_32.lib,wsock32.lib"/>
|
38 |
<property name="msvc_libraries_release" value="kernel32.lib,user32.lib,advapi32.lib,ws2_32.lib,wsock32.lib,msvcrtd.lib,msvcprtd.lib,uuid.lib,oldnames.lib"/>
|
| 35 |
|
39 |
|
| 36 |
<compiler id="msvc_compiler_debug_console" name="${msvc_compilername}">
|
40 |
<compiler id="msvc_compiler_debug_console" name="${msvc_compilername}">
|
| 37 |
<compilerarg value="/G6"/>
|
41 |
<compilerarg value="/G6"/>
|
| 38 |
<compilerarg value="/MDd"/>
|
42 |
<compilerarg value="/MDd"/>
|
| 39 |
<compilerarg value="/Ze"/> <!-- Enable langauge extensions -->
|
43 |
<compilerarg value="/Ze"/> <!-- Enable langauge extensions -->
|
| Line 85... |
Line 89... |
| 85 |
<compilerarg value="/O2"/>
|
89 |
<compilerarg value="/O2"/>
|
| 86 |
<compilerarg value="/Ob2"/>
|
90 |
<compilerarg value="/Ob2"/>
|
| 87 |
|
91 |
|
| 88 |
</compiler>
|
92 |
</compiler>
|
| 89 |
|
93 |
|
| - |
|
94 |
<linker id="msvc_linker_debug_consoleusedinkumware" name="${msvc_compilername}" path="${msvc_bin}">
|
| - |
|
95 |
<libset dir="${dinkumware_stl_lib}" libs="sxlrtd"/>
|
| - |
|
96 |
<libset dir="${msvc_lib}" libs="wsock32,ADVAPI32,msvcrtd,msvcprtd,uuid,oldnames,kernel32"/>
|
| - |
|
97 |
</linker>
|
| - |
|
98 |
|
| - |
|
99 |
<linker id="msvc_linker_release_consoleusedinkumware" name="${msvc_compilername}" path="${msvc_bin}">
|
| - |
|
100 |
<libset dir="${dinkumware_stl_lib}" libs="sxlrt"/>
|
| - |
|
101 |
<libset dir="${msvc_lib}" libs="wsock32,ADVAPI32,msvcrtd,msvcprtd,uuid,oldnames,kernel32"/>
|
| - |
|
102 |
</linker>
|
| 90 |
|
103 |
|
| 91 |
<linker id="msvc_linker_debug_console" name="${msvc_compilername}" path="${msvc_bin}">
|
104 |
<linker id="msvc_linker_debug_console" name="${msvc_compilername}" path="${msvc_bin}">
|
| 92 |
<linkerarg value="-L"${msvc_lib_debug}""/>
|
105 |
<linkerarg value="-L"${msvc_lib_debug}""/>
|
| 93 |
|
106 |
|
| 94 |
<syslibset dir="${msvc_lib}" libs="MSVCPRTD,MSVCRTD,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
|
107 |
<syslibset dir="${msvc_lib}" libs="MSVCPRTD,MSVCRTD,OLDNAMES,uuid,kernel32,user32,advapi32,ws2_32" casesensitive="no"/>
|