|
Packit |
875988 |
|
|
Packit |
875988 |
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
Packit |
875988 |
<PropertyGroup Label="UserMacros">
|
|
Packit |
875988 |
|
|
Packit |
875988 |
Only 0 and 1 are used currently -->
|
|
Packit |
875988 |
<TargetOSLevel Condition="$(PlatformToolset.EndsWith('_xp'))">0</TargetOSLevel>
|
|
Packit |
875988 |
<TargetOSLevel Condition="! $(PlatformToolset.EndsWith('_xp'))">1</TargetOSLevel>
|
|
Packit |
875988 |
</PropertyGroup>
|
|
Packit |
875988 |
<PropertyGroup>
|
|
Packit |
875988 |
<IncludePath>$(SolutionDir);$(MhdW32Common);$(MhdSrc)include;$(IncludePath)</IncludePath>
|
|
Packit |
875988 |
</PropertyGroup>
|
|
Packit |
875988 |
<PropertyGroup Condition="'$(Platform)'=='Win32'">
|
|
Packit |
875988 |
<IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir>
|
|
Packit |
875988 |
<OutDir>$(SolutionDir)Output\</OutDir>
|
|
Packit |
875988 |
</PropertyGroup>
|
|
Packit |
875988 |
<PropertyGroup Condition="'$(Platform)'=='x64'">
|
|
Packit |
875988 |
<IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)\</IntDir>
|
|
Packit |
875988 |
<OutDir>$(SolutionDir)Output\$(Platform)\</OutDir>
|
|
Packit |
875988 |
</PropertyGroup>
|
|
Packit |
875988 |
<PropertyGroup Condition="'$(UseDebugLibraries)'=='true'">
|
|
Packit |
875988 |
<LinkIncremental>true</LinkIncremental>
|
|
Packit |
875988 |
</PropertyGroup>
|
|
Packit |
875988 |
<PropertyGroup Condition="'$(UseDebugLibraries)'!='true'">
|
|
Packit |
875988 |
<LinkIncremental>false</LinkIncremental>
|
|
Packit |
875988 |
</PropertyGroup>
|
|
Packit |
875988 |
<ItemDefinitionGroup>
|
|
Packit |
875988 |
<ClCompile>
|
|
Packit |
875988 |
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
Packit |
875988 |
<WarningLevel>Level3</WarningLevel>
|
|
Packit |
875988 |
<PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
Packit |
875988 |
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
|
Packit |
875988 |
<TreatSpecificWarningsAsErrors>4013</TreatSpecificWarningsAsErrors>
|
|
Packit |
875988 |
<ProgramDataBaseFileName>$(IntDir)$(TargetName).pdb</ProgramDataBaseFileName>
|
|
Packit |
875988 |
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
Packit |
875988 |
</ClCompile>
|
|
Packit |
875988 |
<Link>
|
|
Packit |
875988 |
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
Packit |
875988 |
</Link>
|
|
Packit |
875988 |
</ItemDefinitionGroup>
|
|
Packit |
875988 |
<ItemDefinitionGroup Condition="'$(TargetOSLevel)'>'0'">
|
|
Packit |
875988 |
<ClCompile>
|
|
Packit |
875988 |
<PreprocessorDefinitions>_WIN32_WINNT=0x0600;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
Packit |
875988 |
</ClCompile>
|
|
Packit |
875988 |
<Link>
|
|
Packit |
875988 |
<MinimumRequiredVersion>6.00</MinimumRequiredVersion>
|
|
Packit |
875988 |
</Link>
|
|
Packit |
875988 |
<Lib>
|
|
Packit |
875988 |
<MinimumRequiredVersion>6.00</MinimumRequiredVersion>
|
|
Packit |
875988 |
</Lib>
|
|
Packit |
875988 |
</ItemDefinitionGroup>
|
|
Packit |
875988 |
<ItemDefinitionGroup Condition="'$(TargetOSLevel)'=='0' And '$(Platform)'=='Win32'">
|
|
Packit |
875988 |
<ClCompile>
|
|
Packit |
875988 |
<PreprocessorDefinitions>_WIN32_WINNT=0x0501;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
Packit |
875988 |
</ClCompile>
|
|
Packit |
875988 |
<Link>
|
|
Packit |
875988 |
<MinimumRequiredVersion>5.01</MinimumRequiredVersion>
|
|
Packit |
875988 |
</Link>
|
|
Packit |
875988 |
<Lib>
|
|
Packit |
875988 |
<MinimumRequiredVersion>5.01</MinimumRequiredVersion>
|
|
Packit |
875988 |
</Lib>
|
|
Packit |
875988 |
</ItemDefinitionGroup>
|
|
Packit |
875988 |
<ItemDefinitionGroup Condition="'$(TargetOSLevel)'=='0' And '$(Platform)'=='x64'">
|
|
Packit |
875988 |
<ClCompile>
|
|
Packit |
875988 |
<PreprocessorDefinitions>_WIN32_WINNT=0x0502;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
Packit |
875988 |
</ClCompile>
|
|
Packit |
875988 |
<Link>
|
|
Packit |
875988 |
<MinimumRequiredVersion>5.02</MinimumRequiredVersion>
|
|
Packit |
875988 |
</Link>
|
|
Packit |
875988 |
<Lib>
|
|
Packit |
875988 |
<MinimumRequiredVersion>5.02</MinimumRequiredVersion>
|
|
Packit |
875988 |
</Lib>
|
|
Packit |
875988 |
</ItemDefinitionGroup>
|
|
Packit |
875988 |
<ItemDefinitionGroup Condition="'$(UseDebugLibraries)'=='true'">
|
|
Packit |
875988 |
<ClCompile>
|
|
Packit |
875988 |
<Optimization>Disabled</Optimization>
|
|
Packit |
875988 |
<SmallerTypeCheck>true</SmallerTypeCheck>
|
|
Packit |
875988 |
</ClCompile>
|
|
Packit |
875988 |
<ResourceCompile>
|
|
Packit |
875988 |
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
Packit |
875988 |
</ResourceCompile>
|
|
Packit |
875988 |
</ItemDefinitionGroup>
|
|
Packit |
875988 |
<ItemDefinitionGroup Condition="'$(UseDebugLibraries)'!='true'">
|
|
Packit |
875988 |
<ClCompile>
|
|
Packit |
875988 |
<Optimization>Full</Optimization>
|
|
Packit |
875988 |
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
Packit |
875988 |
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
Packit |
875988 |
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
|
Packit |
875988 |
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
Packit |
875988 |
<OmitFramePointers>true</OmitFramePointers>
|
|
Packit |
875988 |
</ClCompile>
|
|
Packit |
875988 |
<Link>
|
|
Packit |
875988 |
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
Packit |
875988 |
<OptimizeReferences>true</OptimizeReferences>
|
|
Packit |
875988 |
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
|
Packit |
875988 |
</Link>
|
|
Packit |
875988 |
<ResourceCompile>
|
|
Packit |
875988 |
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
Packit |
875988 |
</ResourceCompile>
|
|
Packit |
875988 |
</ItemDefinitionGroup>
|
|
Packit |
875988 |
</Project>
|