| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | <?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)\$(ProjectName)\</IntDir>    <CharacterSet Condition="'$(ConfigurationType)'=='Application'">Unicode</CharacterSet>  </PropertyGroup>  <PropertyGroup Condition="'$(Configuration)'=='Debug' or '$(Configuration)'=='DebugDLL' or '$(Configuration)'=='DebugDLL_fixed'">    <LinkIncremental>true</LinkIncremental>    <UseDebugLibraries>true</UseDebugLibraries>    <WholeProgramOptimization>false</WholeProgramOptimization>  </PropertyGroup>  <PropertyGroup Condition="'$(Configuration)'=='Release' or '$(Configuration)'=='ReleaseDLL' or '$(Configuration)'=='ReleaseDLL_fixed'">    <LinkIncremental>false</LinkIncremental>    <UseDebugLibraries>false</UseDebugLibraries>    <WholeProgramOptimization>true</WholeProgramOptimization>  </PropertyGroup>  <ItemDefinitionGroup>    <ClCompile>      <WarningLevel>Level3</WarningLevel>      <CompileAsManaged>false</CompileAsManaged>      <CompileAsWinRT>false</CompileAsWinRT>      <AdditionalIncludeDirectories>..\..;..\..\include;..\..\silk;..\..\celt;..\..\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>      <PreprocessorDefinitions>HAVE_CONFIG_H;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>      <RuntimeTypeInfo>false</RuntimeTypeInfo>      <OpenMPSupport>false</OpenMPSupport>    </ClCompile>    <Lib>      <SubSystem>Console</SubSystem>    </Lib>    <Link>      <LargeAddressAware>true</LargeAddressAware>      <SubSystem>Console</SubSystem>    </Link>  </ItemDefinitionGroup>  <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug' or '$(Configuration)'=='DebugDLL' or '$(Configuration)'=='DebugDLL_fixed'">    <ClCompile>      <ControlFlowGuard>Guard</ControlFlowGuard>      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>      <EnableEnhancedInstructionSet Condition="'$(Platform)'=='Win32'">NoExtensions</EnableEnhancedInstructionSet>      <EnableParallelCodeGeneration>false</EnableParallelCodeGeneration>      <FloatingPointExceptions>true</FloatingPointExceptions>      <FunctionLevelLinking>false</FunctionLevelLinking>      <InlineFunctionExpansion>Disabled</InlineFunctionExpansion>      <MultiProcessorCompilation>false</MultiProcessorCompilation>      <OmitFramePointers>false</OmitFramePointers>      <Optimization>Disabled</Optimization>      <RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>      <RuntimeLibrary Condition="'$(Configuration)'!='Debug'">MultiThreadedDebugDLL</RuntimeLibrary>      <SDLCheck>true</SDLCheck>      <StringPooling>false</StringPooling>    </ClCompile>    <Link>      <GenerateDebugInformation>true</GenerateDebugInformation>    </Link>  </ItemDefinitionGroup>  <ItemDefinitionGroup Condition="'$(Configuration)'=='Release' or '$(Configuration)'=='ReleaseDLL' or '$(Configuration)'=='ReleaseDLL_fixed'">    <ClCompile>      <ControlFlowGuard>false</ControlFlowGuard>      <DebugInformationFormat>None</DebugInformationFormat>      <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>      <EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>      <ExceptionHandling>false</ExceptionHandling>      <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>      <FloatingPointModel Condition="'$(Configuration)'=='Release'">Fast</FloatingPointModel>      <FloatingPointModel Condition="'$(Configuration)'!='Release'">Precise</FloatingPointModel>      <FunctionLevelLinking>true</FunctionLevelLinking>      <IntrinsicFunctions>true</IntrinsicFunctions>      <MultiProcessorCompilation>true</MultiProcessorCompilation>      <Optimization>MaxSpeed</Optimization>      <RuntimeLibrary Condition="'$(Configuration)'=='Release'">MultiThreaded</RuntimeLibrary>      <RuntimeLibrary Condition="'$(Configuration)'!='Release'">MultiThreadedDLL</RuntimeLibrary>      <StructMemberAlignment>16Bytes</StructMemberAlignment>    </ClCompile>    <Link>      <GenerateDebugInformation>false</GenerateDebugInformation>    </Link>  </ItemDefinitionGroup>  <ItemGroup /></Project>
 |