You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
8.5 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|Win32">
  5. <Configuration>Debug</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Debug|x64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Release|Win32">
  13. <Configuration>Release</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ClCompile Include="..\spp_alloc_test.cc" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ClInclude Include="..\..\sparsepp\spp.h" />
  26. <ClInclude Include="..\..\sparsepp\spp_alloc.h" />
  27. <ClInclude Include="..\..\sparsepp\spp_bitset.h" />
  28. <ClInclude Include="..\..\sparsepp\spp_memory.h" />
  29. <ClInclude Include="..\..\sparsepp\spp_timer.h" />
  30. <ClInclude Include="..\..\sparsepp\spp_utils.h" />
  31. </ItemGroup>
  32. <PropertyGroup Label="Globals">
  33. <ProjectGuid>{19BC4240-15ED-4C76-BC57-34BB70FE163B}</ProjectGuid>
  34. <Keyword>Win32Proj</Keyword>
  35. <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
  36. </PropertyGroup>
  37. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  39. <ConfigurationType>Application</ConfigurationType>
  40. <PlatformToolset>v140</PlatformToolset>
  41. <CharacterSet>MultiByte</CharacterSet>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  44. <ConfigurationType>Application</ConfigurationType>
  45. <CharacterSet>MultiByte</CharacterSet>
  46. <PlatformToolset>v140</PlatformToolset>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  49. <ConfigurationType>Application</ConfigurationType>
  50. <PlatformToolset>v140</PlatformToolset>
  51. <CharacterSet>MultiByte</CharacterSet>
  52. </PropertyGroup>
  53. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  54. <ConfigurationType>Application</ConfigurationType>
  55. <PlatformToolset>v140</PlatformToolset>
  56. <CharacterSet>MultiByte</CharacterSet>
  57. </PropertyGroup>
  58. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  59. <ImportGroup Label="ExtensionSettings">
  60. </ImportGroup>
  61. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  62. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  63. </ImportGroup>
  64. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  65. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  66. </ImportGroup>
  67. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  68. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  69. </ImportGroup>
  70. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  71. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  72. </ImportGroup>
  73. <PropertyGroup Label="UserMacros" />
  74. <PropertyGroup>
  75. <_ProjectFileVersion>14.0.23107.0</_ProjectFileVersion>
  76. </PropertyGroup>
  77. <PropertyGroup>
  78. <IntDirSharingDetected>None</IntDirSharingDetected>
  79. </PropertyGroup>
  80. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  81. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  82. <IntDir>$(Configuration)\</IntDir>
  83. <LinkIncremental>true</LinkIncremental>
  84. </PropertyGroup>
  85. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  86. <LinkIncremental>true</LinkIncremental>
  87. </PropertyGroup>
  88. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  89. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  90. <IntDir>$(Configuration)\</IntDir>
  91. <LinkIncremental>false</LinkIncremental>
  92. </PropertyGroup>
  93. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  94. <LinkIncremental>false</LinkIncremental>
  95. </PropertyGroup>
  96. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  97. <ClCompile>
  98. <Optimization>Disabled</Optimization>
  99. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  100. <MinimalRebuild>true</MinimalRebuild>
  101. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  102. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  103. <PrecompiledHeader />
  104. <WarningLevel>Level3</WarningLevel>
  105. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  106. <AdditionalIncludeDirectories>../..</AdditionalIncludeDirectories>
  107. </ClCompile>
  108. <Link>
  109. <OutputFile>$(OutDir)spp_alloc_test.exe</OutputFile>
  110. <GenerateDebugInformation>true</GenerateDebugInformation>
  111. <ProgramDatabaseFile>$(OutDir)spp_alloc_test.pdb</ProgramDatabaseFile>
  112. <SubSystem>Console</SubSystem>
  113. <TargetMachine>MachineX86</TargetMachine>
  114. </Link>
  115. </ItemDefinitionGroup>
  116. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  117. <ClCompile>
  118. <Optimization>Disabled</Optimization>
  119. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  120. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  121. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  122. <PrecompiledHeader>
  123. </PrecompiledHeader>
  124. <WarningLevel>Level3</WarningLevel>
  125. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  126. <AdditionalIncludeDirectories>../..</AdditionalIncludeDirectories>
  127. </ClCompile>
  128. <Link>
  129. <OutputFile>$(OutDir)spp_alloc_test.exe</OutputFile>
  130. <GenerateDebugInformation>true</GenerateDebugInformation>
  131. <ProgramDatabaseFile>$(OutDir)spp_alloc_test.pdb</ProgramDatabaseFile>
  132. <SubSystem>Console</SubSystem>
  133. </Link>
  134. </ItemDefinitionGroup>
  135. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  136. <ClCompile>
  137. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  138. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  139. <PrecompiledHeader />
  140. <WarningLevel>Level3</WarningLevel>
  141. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  142. <AdditionalIncludeDirectories>../..</AdditionalIncludeDirectories>
  143. </ClCompile>
  144. <Link>
  145. <OutputFile>$(OutDir)spp_alloc_test.exe</OutputFile>
  146. <GenerateDebugInformation>true</GenerateDebugInformation>
  147. <SubSystem>Console</SubSystem>
  148. <OptimizeReferences>true</OptimizeReferences>
  149. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  150. <TargetMachine>MachineX86</TargetMachine>
  151. <Profile>true</Profile>
  152. </Link>
  153. </ItemDefinitionGroup>
  154. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  155. <ClCompile>
  156. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  157. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  158. <PrecompiledHeader>
  159. </PrecompiledHeader>
  160. <WarningLevel>Level3</WarningLevel>
  161. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  162. <AdditionalIncludeDirectories>../..</AdditionalIncludeDirectories>
  163. </ClCompile>
  164. <Link>
  165. <OutputFile>$(OutDir)spp_alloc_test.exe</OutputFile>
  166. <GenerateDebugInformation>true</GenerateDebugInformation>
  167. <SubSystem>Console</SubSystem>
  168. <OptimizeReferences>true</OptimizeReferences>
  169. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  170. <Profile>true</Profile>
  171. </Link>
  172. </ItemDefinitionGroup>
  173. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  174. <ImportGroup Label="ExtensionTargets">
  175. </ImportGroup>
  176. </Project>