mpir/build.vc/mpir_debug_lib.props
SeVlaT 7d51e20eb2 <GenerateDebugInformation>: Debug and DebugFastLink are valid only for Msvc14
"true" is valid for all Msvc versions:

see: Microsoft.Link.Common.props, lines 51, 52
 <GenerateDebugInformation Condition="'$(UseDebugLibraries)' == 'true' and '%(Link.GenerateDebugInformation)'==''">DebugFastLink</GenerateDebugInformation>
 <GenerateDebugInformation Condition="'$(UseDebugLibraries)' != 'true' and '%(Link.GenerateDebugInformation)'==''">Debug</GenerateDebugInformation>
2015-11-23 19:59:30 +03:00

22 lines
811 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<OutDir>$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<ObjectFileName>$(IntDir)dum\my\%(RelativeDir)</ObjectFileName>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<ProgramDataBaseFileName>$(TargetDir)$(TargetName).pdb</ProgramDataBaseFileName>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<LargeAddressAware>true</LargeAddressAware>
</Link>
</ItemDefinitionGroup>
<ItemGroup />
</Project>