gmock.vcxproj revision 13481
1955SN/A<?xml version="1.0" encoding="utf-8"?>
2955SN/A<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
37816Ssteve.reinhardt@amd.com  <ItemGroup Label="ProjectConfigurations">
45871Snate@binkert.org    <ProjectConfiguration Include="Debug|Win32">
51762SN/A      <Configuration>Debug</Configuration>
6955SN/A      <Platform>Win32</Platform>
7955SN/A    </ProjectConfiguration>
8955SN/A    <ProjectConfiguration Include="Release|Win32">
9955SN/A      <Configuration>Release</Configuration>
10955SN/A      <Platform>Win32</Platform>
11955SN/A    </ProjectConfiguration>
12955SN/A  </ItemGroup>
13955SN/A  <PropertyGroup Label="Globals">
14955SN/A    <ProjectGuid>{34681F0D-CE45-415D-B5F2-5C662DFE3BD5}</ProjectGuid>
15955SN/A    <RootNamespace>gmock</RootNamespace>
16955SN/A    <Keyword>Win32Proj</Keyword>
17955SN/A  </PropertyGroup>
18955SN/A  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
19955SN/A  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
20955SN/A    <ConfigurationType>StaticLibrary</ConfigurationType>
21955SN/A    <CharacterSet>Unicode</CharacterSet>
22955SN/A    <WholeProgramOptimization>true</WholeProgramOptimization>
23955SN/A    <PlatformToolset>v140</PlatformToolset>
24955SN/A  </PropertyGroup>
25955SN/A  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
26955SN/A    <ConfigurationType>StaticLibrary</ConfigurationType>
27955SN/A    <CharacterSet>Unicode</CharacterSet>
28955SN/A    <PlatformToolset>v140</PlatformToolset>
29955SN/A  </PropertyGroup>
302665Ssaidi@eecs.umich.edu  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
312665Ssaidi@eecs.umich.edu  <ImportGroup Label="ExtensionSettings">
325863Snate@binkert.org  </ImportGroup>
33955SN/A  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
34955SN/A    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
35955SN/A    <Import Project="gmock_config.props" />
36955SN/A  </ImportGroup>
37955SN/A  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
382632Sstever@eecs.umich.edu    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
392632Sstever@eecs.umich.edu    <Import Project="gmock_config.props" />
402632Sstever@eecs.umich.edu  </ImportGroup>
412632Sstever@eecs.umich.edu  <PropertyGroup Label="UserMacros" />
42955SN/A  <PropertyGroup>
432632Sstever@eecs.umich.edu    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
442632Sstever@eecs.umich.edu    <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
452761Sstever@eecs.umich.edu    <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(OutDir)$(ProjectName)\</IntDir>
462632Sstever@eecs.umich.edu    <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
472632Sstever@eecs.umich.edu    <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(OutDir)$(ProjectName)\</IntDir>
482632Sstever@eecs.umich.edu  </PropertyGroup>
492761Sstever@eecs.umich.edu  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
502761Sstever@eecs.umich.edu    <ClCompile>
512761Sstever@eecs.umich.edu      <Optimization>Disabled</Optimization>
522632Sstever@eecs.umich.edu      <AdditionalIncludeDirectories>..\..\include;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
532632Sstever@eecs.umich.edu      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
542761Sstever@eecs.umich.edu      <MinimalRebuild>true</MinimalRebuild>
552761Sstever@eecs.umich.edu      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
562761Sstever@eecs.umich.edu      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
572761Sstever@eecs.umich.edu      <PrecompiledHeader>
582761Sstever@eecs.umich.edu      </PrecompiledHeader>
592632Sstever@eecs.umich.edu      <WarningLevel>Level3</WarningLevel>
602632Sstever@eecs.umich.edu      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
612632Sstever@eecs.umich.edu    </ClCompile>
622632Sstever@eecs.umich.edu  </ItemDefinitionGroup>
632632Sstever@eecs.umich.edu  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
642632Sstever@eecs.umich.edu    <ClCompile>
652632Sstever@eecs.umich.edu      <AdditionalIncludeDirectories>..\..\include;..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
66955SN/A      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
67955SN/A      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
68955SN/A      <PrecompiledHeader>
695863Snate@binkert.org      </PrecompiledHeader>
705863Snate@binkert.org      <WarningLevel>Level3</WarningLevel>
715863Snate@binkert.org      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
725863Snate@binkert.org    </ClCompile>
735863Snate@binkert.org  </ItemDefinitionGroup>
745863Snate@binkert.org  <ItemGroup>
755863Snate@binkert.org    <ClCompile Include="..\..\src\gmock-all.cc" />
765863Snate@binkert.org    <ClCompile Include="$(GTestDir)\src\gtest-all.cc">
775863Snate@binkert.org      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(GTestDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
785863Snate@binkert.org      <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(GTestDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
795863Snate@binkert.org    </ClCompile>
805863Snate@binkert.org  </ItemGroup>
815863Snate@binkert.org  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
825863Snate@binkert.org  <ImportGroup Label="ExtensionTargets">
835863Snate@binkert.org  </ImportGroup>
845863Snate@binkert.org</Project>