malloc_extension_test.vcxproj 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="Current" 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="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <VCProjectVersion>17.0</VCProjectVersion>
  15. <ProjectGuid>{3765198D-5305-4AB0-9A21-A0CD8201EB2A}</ProjectGuid>
  16. <Keyword>Win32Proj</Keyword>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  20. <ConfigurationType>Application</ConfigurationType>
  21. <PlatformToolset>v143</PlatformToolset>
  22. <CharacterSet>MultiByte</CharacterSet>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  25. <ConfigurationType>Application</ConfigurationType>
  26. <PlatformToolset>v143</PlatformToolset>
  27. <CharacterSet>MultiByte</CharacterSet>
  28. </PropertyGroup>
  29. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  30. <ImportGroup Label="ExtensionSettings">
  31. </ImportGroup>
  32. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  33. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  34. </ImportGroup>
  35. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  36. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  37. </ImportGroup>
  38. <PropertyGroup Label="UserMacros" />
  39. <PropertyGroup>
  40. <_ProjectFileVersion>17.0.34714.143</_ProjectFileVersion>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  43. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  44. <IntDir>$(Configuration)\</IntDir>
  45. <LinkIncremental>true</LinkIncremental>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  48. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  49. <IntDir>$(Configuration)\</IntDir>
  50. <LinkIncremental>false</LinkIncremental>
  51. </PropertyGroup>
  52. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  53. <ClCompile>
  54. <Optimization>Disabled</Optimization>
  55. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  56. <MinimalRebuild>true</MinimalRebuild>
  57. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  58. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  59. <PrecompiledHeader />
  60. <WarningLevel>Level3</WarningLevel>
  61. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  62. </ClCompile>
  63. <Link>
  64. <OutputFile>$(OutDir)malloc_extension_test.exe</OutputFile>
  65. <GenerateDebugInformation>true</GenerateDebugInformation>
  66. <ProgramDatabaseFile>$(OutDir)malloc_extension_test.pdb</ProgramDatabaseFile>
  67. <SubSystem>Console</SubSystem>
  68. <TargetMachine>MachineX86</TargetMachine>
  69. </Link>
  70. </ItemDefinitionGroup>
  71. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  72. <ClCompile>
  73. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  74. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  75. <PrecompiledHeader />
  76. <WarningLevel>Level3</WarningLevel>
  77. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  78. </ClCompile>
  79. <Link>
  80. <OutputFile>$(OutDir)malloc_extension_test.exe</OutputFile>
  81. <GenerateDebugInformation>true</GenerateDebugInformation>
  82. <SubSystem>Console</SubSystem>
  83. <OptimizeReferences>true</OptimizeReferences>
  84. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  85. <TargetMachine>MachineX86</TargetMachine>
  86. </Link>
  87. </ItemDefinitionGroup>
  88. <ItemGroup>
  89. <ClCompile Include="..\..\src\tests\malloc_extension_test.cc">
  90. <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\src\windows; ..\..\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  91. <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">MultiThreadedDebugDLL</RuntimeLibrary>
  92. <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\src\windows; ..\..\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  93. <RuntimeLibrary Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">MultiThreadedDLL</RuntimeLibrary>
  94. </ClCompile>
  95. </ItemGroup>
  96. <ItemGroup>
  97. <ClInclude Include="..\..\src\base\logging.h" />
  98. <ClInclude Include="..\..\src\config_for_unittests.h" />
  99. <ClInclude Include="..\..\src\gperftools\malloc_extension.h" />
  100. <ClInclude Include="..\..\src\gperftools\malloc_extension_c.h" />
  101. <ClInclude Include="..\..\src\windows\config.h" />
  102. <ClInclude Include="..\..\src\windows\port.h" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <ProjectReference Include="..\libtcmalloc_minimal\libtcmalloc_minimal.vcxproj">
  106. <Project>{55e2b3ae-3ca1-4db6-97f7-0a044d6f446f}</Project>
  107. <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
  108. </ProjectReference>
  109. </ItemGroup>
  110. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  111. <ImportGroup Label="ExtensionTargets">
  112. </ImportGroup>
  113. </Project>