Last active
December 20, 2015 01:09
-
-
Save Miliox/6047286 to your computer and use it in GitHub Desktop.
Patch for Google Test to add Visual Studio 2012 Support; Download: http://www.4shared.com/zip/OHGUFeaq/gtest-msvc11.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From bc6377f6792a60fbc0f28f0f194879e094b92a66 Mon Sep 17 00:00:00 2001 | |
| From: Emiliano Firmino <[email protected]> | |
| Date: Sat, 20 Jul 2013 22:43:41 -0400 | |
| Subject: [PATCH] add msvc11 solution | |
| --- | |
| msvc11/gtest-md.sln | 55 +++++++++ | |
| msvc11/gtest-md.vcxproj | 151 +++++++++++++++++++++++ | |
| msvc11/gtest-md.vcxproj.filters | 18 +++ | |
| msvc11/gtest.sln | 55 +++++++++ | |
| msvc11/gtest.vcxproj | 151 +++++++++++++++++++++++ | |
| msvc11/gtest.vcxproj.filters | 18 +++ | |
| msvc11/gtest_main-md.vcxproj | 156 +++++++++++++++++++++++ | |
| msvc11/gtest_main-md.vcxproj.filters | 18 +++ | |
| msvc11/gtest_main.vcxproj | 156 +++++++++++++++++++++++ | |
| msvc11/gtest_main.vcxproj.filters | 18 +++ | |
| msvc11/gtest_prod_test-md.vcxproj | 199 ++++++++++++++++++++++++++++++ | |
| msvc11/gtest_prod_test-md.vcxproj.filters | 26 ++++ | |
| msvc11/gtest_prod_test.vcxproj | 199 ++++++++++++++++++++++++++++++ | |
| msvc11/gtest_prod_test.vcxproj.filters | 26 ++++ | |
| msvc11/gtest_unittest-md.vcxproj | 188 ++++++++++++++++++++++++++++ | |
| msvc11/gtest_unittest-md.vcxproj.filters | 18 +++ | |
| msvc11/gtest_unittest.vcxproj | 188 ++++++++++++++++++++++++++++ | |
| msvc11/gtest_unittest.vcxproj.filters | 18 +++ | |
| 18 files changed, 1658 insertions(+) | |
| create mode 100644 msvc11/gtest-md.sln | |
| create mode 100644 msvc11/gtest-md.vcxproj | |
| create mode 100644 msvc11/gtest-md.vcxproj.filters | |
| create mode 100644 msvc11/gtest.sln | |
| create mode 100644 msvc11/gtest.vcxproj | |
| create mode 100644 msvc11/gtest.vcxproj.filters | |
| create mode 100644 msvc11/gtest_main-md.vcxproj | |
| create mode 100644 msvc11/gtest_main-md.vcxproj.filters | |
| create mode 100644 msvc11/gtest_main.vcxproj | |
| create mode 100644 msvc11/gtest_main.vcxproj.filters | |
| create mode 100644 msvc11/gtest_prod_test-md.vcxproj | |
| create mode 100644 msvc11/gtest_prod_test-md.vcxproj.filters | |
| create mode 100644 msvc11/gtest_prod_test.vcxproj | |
| create mode 100644 msvc11/gtest_prod_test.vcxproj.filters | |
| create mode 100644 msvc11/gtest_unittest-md.vcxproj | |
| create mode 100644 msvc11/gtest_unittest-md.vcxproj.filters | |
| create mode 100644 msvc11/gtest_unittest.vcxproj | |
| create mode 100644 msvc11/gtest_unittest.vcxproj.filters | |
| diff --git a/msvc11/gtest-md.sln b/msvc11/gtest-md.sln | |
| new file mode 100644 | |
| index 0000000..3eba10c | |
| --- /dev/null | |
| +++ b/msvc11/gtest-md.sln | |
| @@ -0,0 +1,55 @@ | |
| +Microsoft Visual Studio Solution File, Format Version 12.00 | |
| +# Visual Studio Express 2012 for Windows Desktop | |
| +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest-md", "gtest-md.vcxproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}" | |
| +EndProject | |
| +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_main-md", "gtest_main-md.vcxproj", "{3AF54C8A-10BF-4332-9147-F68ED9862033}" | |
| +EndProject | |
| +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_prod_test-md", "gtest_prod_test-md.vcxproj", "{24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}" | |
| +EndProject | |
| +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_unittest-md", "gtest_unittest-md.vcxproj", "{4D9FDFB5-986A-4139-823C-F4EE0ED481A2}" | |
| +EndProject | |
| +Global | |
| + GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
| + Debug|Win32 = Debug|Win32 | |
| + Debug|x64 = Debug|x64 | |
| + Release|Win32 = Release|Win32 | |
| + Release|x64 = Release|x64 | |
| + EndGlobalSection | |
| + GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug|Win32.ActiveCfg = Debug|Win32 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug|Win32.Build.0 = Debug|Win32 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug|x64.ActiveCfg = Debug|x64 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug|x64.Build.0 = Debug|x64 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release|Win32.ActiveCfg = Release|Win32 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release|Win32.Build.0 = Release|Win32 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release|x64.ActiveCfg = Release|x64 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release|x64.Build.0 = Release|x64 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug|Win32.ActiveCfg = Debug|Win32 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug|Win32.Build.0 = Debug|Win32 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug|x64.ActiveCfg = Debug|x64 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug|x64.Build.0 = Debug|x64 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release|Win32.ActiveCfg = Release|Win32 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release|Win32.Build.0 = Release|Win32 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release|x64.ActiveCfg = Release|x64 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release|x64.Build.0 = Release|x64 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug|Win32.ActiveCfg = Debug|Win32 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug|Win32.Build.0 = Debug|Win32 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug|x64.ActiveCfg = Debug|x64 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug|x64.Build.0 = Debug|x64 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release|Win32.ActiveCfg = Release|Win32 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release|Win32.Build.0 = Release|Win32 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release|x64.ActiveCfg = Release|x64 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release|x64.Build.0 = Release|x64 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug|Win32.ActiveCfg = Debug|Win32 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug|Win32.Build.0 = Debug|Win32 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug|x64.ActiveCfg = Debug|x64 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug|x64.Build.0 = Debug|x64 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release|Win32.ActiveCfg = Release|Win32 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release|Win32.Build.0 = Release|Win32 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release|x64.ActiveCfg = Release|x64 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release|x64.Build.0 = Release|x64 | |
| + EndGlobalSection | |
| + GlobalSection(SolutionProperties) = preSolution | |
| + HideSolutionNode = FALSE | |
| + EndGlobalSection | |
| +EndGlobal | |
| diff --git a/msvc11/gtest-md.vcxproj b/msvc11/gtest-md.vcxproj | |
| new file mode 100644 | |
| index 0000000..5a2e1b6 | |
| --- /dev/null | |
| +++ b/msvc11/gtest-md.vcxproj | |
| @@ -0,0 +1,151 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup Label="ProjectConfigurations"> | |
| + <ProjectConfiguration Include="Debug|Win32"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Debug|x64"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|Win32"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|x64"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + </ItemGroup> | |
| + <PropertyGroup Label="Globals"> | |
| + <ProjectGuid>{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}</ProjectGuid> | |
| + <Keyword>Win32Proj</Keyword> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
| + <ImportGroup Label="ExtensionSettings"> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <PropertyGroup Label="UserMacros" /> | |
| + <PropertyGroup> | |
| + <_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <MinimalRebuild>false</MinimalRebuild> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | |
| + <PrecompiledHeader /> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)gtestd.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | |
| + <PrecompiledHeader> | |
| + </PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)gtestd.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | |
| + <PrecompiledHeader /> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)gtest.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | |
| + <PrecompiledHeader> | |
| + </PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)gtest.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\src\gtest-all.cc"> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
| + <ImportGroup Label="ExtensionTargets"> | |
| + </ImportGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest-md.vcxproj.filters b/msvc11/gtest-md.vcxproj.filters | |
| new file mode 100644 | |
| index 0000000..b566f89 | |
| --- /dev/null | |
| +++ b/msvc11/gtest-md.vcxproj.filters | |
| @@ -0,0 +1,18 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup> | |
| + <Filter Include="Source Files"> | |
| + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | |
| + <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | |
| + </Filter> | |
| + <Filter Include="Header Files"> | |
| + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | |
| + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | |
| + </Filter> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\src\gtest-all.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest.sln b/msvc11/gtest.sln | |
| new file mode 100644 | |
| index 0000000..06b4772 | |
| --- /dev/null | |
| +++ b/msvc11/gtest.sln | |
| @@ -0,0 +1,55 @@ | |
| +Microsoft Visual Studio Solution File, Format Version 12.00 | |
| +# Visual Studio Express 2012 for Windows Desktop | |
| +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest", "gtest.vcxproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}" | |
| +EndProject | |
| +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_main", "gtest_main.vcxproj", "{3AF54C8A-10BF-4332-9147-F68ED9862032}" | |
| +EndProject | |
| +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_unittest", "gtest_unittest.vcxproj", "{4D9FDFB5-986A-4139-823C-F4EE0ED481A1}" | |
| +EndProject | |
| +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_prod_test", "gtest_prod_test.vcxproj", "{24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}" | |
| +EndProject | |
| +Global | |
| + GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
| + Debug|Win32 = Debug|Win32 | |
| + Debug|x64 = Debug|x64 | |
| + Release|Win32 = Release|Win32 | |
| + Release|x64 = Release|x64 | |
| + EndGlobalSection | |
| + GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug|Win32.ActiveCfg = Debug|Win32 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug|Win32.Build.0 = Debug|Win32 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug|x64.ActiveCfg = Debug|x64 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug|x64.Build.0 = Debug|x64 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release|Win32.ActiveCfg = Release|Win32 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release|Win32.Build.0 = Release|Win32 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release|x64.ActiveCfg = Release|x64 | |
| + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release|x64.Build.0 = Release|x64 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug|Win32.ActiveCfg = Debug|Win32 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug|Win32.Build.0 = Debug|Win32 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug|x64.ActiveCfg = Debug|x64 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug|x64.Build.0 = Debug|x64 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release|Win32.ActiveCfg = Release|Win32 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release|Win32.Build.0 = Release|Win32 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release|x64.ActiveCfg = Release|x64 | |
| + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release|x64.Build.0 = Release|x64 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug|Win32.ActiveCfg = Debug|Win32 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug|Win32.Build.0 = Debug|Win32 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug|x64.ActiveCfg = Debug|x64 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug|x64.Build.0 = Debug|x64 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release|Win32.ActiveCfg = Release|Win32 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release|Win32.Build.0 = Release|Win32 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release|x64.ActiveCfg = Release|x64 | |
| + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release|x64.Build.0 = Release|x64 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug|Win32.ActiveCfg = Debug|Win32 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug|Win32.Build.0 = Debug|Win32 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug|x64.ActiveCfg = Debug|x64 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug|x64.Build.0 = Debug|x64 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release|Win32.ActiveCfg = Release|Win32 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release|Win32.Build.0 = Release|Win32 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release|x64.ActiveCfg = Release|x64 | |
| + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release|x64.Build.0 = Release|x64 | |
| + EndGlobalSection | |
| + GlobalSection(SolutionProperties) = preSolution | |
| + HideSolutionNode = FALSE | |
| + EndGlobalSection | |
| +EndGlobal | |
| diff --git a/msvc11/gtest.vcxproj b/msvc11/gtest.vcxproj | |
| new file mode 100644 | |
| index 0000000..86a42ec | |
| --- /dev/null | |
| +++ b/msvc11/gtest.vcxproj | |
| @@ -0,0 +1,151 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup Label="ProjectConfigurations"> | |
| + <ProjectConfiguration Include="Debug|Win32"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Debug|x64"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|Win32"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|x64"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + </ItemGroup> | |
| + <PropertyGroup Label="Globals"> | |
| + <ProjectGuid>{C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}</ProjectGuid> | |
| + <Keyword>Win32Proj</Keyword> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
| + <ImportGroup Label="ExtensionSettings"> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <PropertyGroup Label="UserMacros" /> | |
| + <PropertyGroup> | |
| + <_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <MinimalRebuild>false</MinimalRebuild> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | |
| + <PrecompiledHeader /> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)gtestd.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | |
| + <PrecompiledHeader> | |
| + </PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)gtestd.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | |
| + <PrecompiledHeader /> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)gtest.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | |
| + <PrecompiledHeader> | |
| + </PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)gtest.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\src\gtest-all.cc"> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
| + <ImportGroup Label="ExtensionTargets"> | |
| + </ImportGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest.vcxproj.filters b/msvc11/gtest.vcxproj.filters | |
| new file mode 100644 | |
| index 0000000..b566f89 | |
| --- /dev/null | |
| +++ b/msvc11/gtest.vcxproj.filters | |
| @@ -0,0 +1,18 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup> | |
| + <Filter Include="Source Files"> | |
| + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | |
| + <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | |
| + </Filter> | |
| + <Filter Include="Header Files"> | |
| + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | |
| + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | |
| + </Filter> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\src\gtest-all.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_main-md.vcxproj b/msvc11/gtest_main-md.vcxproj | |
| new file mode 100644 | |
| index 0000000..ec15a6d | |
| --- /dev/null | |
| +++ b/msvc11/gtest_main-md.vcxproj | |
| @@ -0,0 +1,156 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup Label="ProjectConfigurations"> | |
| + <ProjectConfiguration Include="Debug|Win32"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Debug|x64"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|Win32"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|x64"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + </ItemGroup> | |
| + <PropertyGroup Label="Globals"> | |
| + <ProjectGuid>{3AF54C8A-10BF-4332-9147-F68ED9862033}</ProjectGuid> | |
| + <Keyword>Win32Proj</Keyword> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
| + <ImportGroup Label="ExtensionSettings"> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <PropertyGroup Label="UserMacros" /> | |
| + <PropertyGroup> | |
| + <_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <MinimalRebuild>false</MinimalRebuild> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | |
| + <PrecompiledHeader /> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)$(ProjectName)d.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | |
| + <PrecompiledHeader> | |
| + </PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)$(ProjectName)d.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | |
| + <PrecompiledHeader /> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)$(ProjectName).lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | |
| + <PrecompiledHeader> | |
| + </PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)$(ProjectName).lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\src\gtest_main.cc"> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ProjectReference Include="gtest-md.vcxproj"> | |
| + <Project>{c8f6c172-56f2-4e76-b5fa-c3b423b31be8}</Project> | |
| + </ProjectReference> | |
| + </ItemGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
| + <ImportGroup Label="ExtensionTargets"> | |
| + </ImportGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_main-md.vcxproj.filters b/msvc11/gtest_main-md.vcxproj.filters | |
| new file mode 100644 | |
| index 0000000..b602e80 | |
| --- /dev/null | |
| +++ b/msvc11/gtest_main-md.vcxproj.filters | |
| @@ -0,0 +1,18 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup> | |
| + <Filter Include="Source Files"> | |
| + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | |
| + <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | |
| + </Filter> | |
| + <Filter Include="Header Files"> | |
| + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | |
| + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | |
| + </Filter> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\src\gtest_main.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_main.vcxproj b/msvc11/gtest_main.vcxproj | |
| new file mode 100644 | |
| index 0000000..d1e9bf5 | |
| --- /dev/null | |
| +++ b/msvc11/gtest_main.vcxproj | |
| @@ -0,0 +1,156 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup Label="ProjectConfigurations"> | |
| + <ProjectConfiguration Include="Debug|Win32"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Debug|x64"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|Win32"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|x64"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + </ItemGroup> | |
| + <PropertyGroup Label="Globals"> | |
| + <ProjectGuid>{3AF54C8A-10BF-4332-9147-F68ED9862032}</ProjectGuid> | |
| + <Keyword>Win32Proj</Keyword> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| + <ConfigurationType>StaticLibrary</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
| + <ImportGroup Label="ExtensionSettings"> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <PropertyGroup Label="UserMacros" /> | |
| + <PropertyGroup> | |
| + <_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <MinimalRebuild>false</MinimalRebuild> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | |
| + <PrecompiledHeader /> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)$(ProjectName)d.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | |
| + <PrecompiledHeader> | |
| + </PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)$(ProjectName)d.lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | |
| + <PrecompiledHeader /> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)$(ProjectName).lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | |
| + <PrecompiledHeader> | |
| + </PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Lib> | |
| + <OutputFile>$(OutDir)$(ProjectName).lib</OutputFile> | |
| + </Lib> | |
| + </ItemDefinitionGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\src\gtest_main.cc"> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ProjectReference Include="gtest.vcxproj"> | |
| + <Project>{c8f6c172-56f2-4e76-b5fa-c3b423b31be7}</Project> | |
| + </ProjectReference> | |
| + </ItemGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
| + <ImportGroup Label="ExtensionTargets"> | |
| + </ImportGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_main.vcxproj.filters b/msvc11/gtest_main.vcxproj.filters | |
| new file mode 100644 | |
| index 0000000..b602e80 | |
| --- /dev/null | |
| +++ b/msvc11/gtest_main.vcxproj.filters | |
| @@ -0,0 +1,18 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup> | |
| + <Filter Include="Source Files"> | |
| + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | |
| + <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | |
| + </Filter> | |
| + <Filter Include="Header Files"> | |
| + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | |
| + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | |
| + </Filter> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\src\gtest_main.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_prod_test-md.vcxproj b/msvc11/gtest_prod_test-md.vcxproj | |
| new file mode 100644 | |
| index 0000000..c65c0cf | |
| --- /dev/null | |
| +++ b/msvc11/gtest_prod_test-md.vcxproj | |
| @@ -0,0 +1,199 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup Label="ProjectConfigurations"> | |
| + <ProjectConfiguration Include="Debug|Win32"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Debug|x64"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|Win32"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|x64"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + </ItemGroup> | |
| + <PropertyGroup Label="Globals"> | |
| + <ProjectGuid>{24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}</ProjectGuid> | |
| + <Keyword>Win32Proj</Keyword> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
| + <ImportGroup Label="ExtensionSettings"> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <PropertyGroup Label="UserMacros" /> | |
| + <PropertyGroup> | |
| + <_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + <LinkIncremental>true</LinkIncremental> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <LinkIncremental>true</LinkIncremental> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + <LinkIncremental>false</LinkIncremental> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <LinkIncremental>false</LinkIncremental> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <MinimalRebuild>false</MinimalRebuild> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_prod_test.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <ProgramDatabaseFile>$(OutDir)gtest_prod_test.pdb</ProgramDatabaseFile> | |
| + <SubSystem>Console</SubSystem> | |
| + <TargetMachine>MachineX86</TargetMachine> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_prod_test.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <ProgramDatabaseFile>$(OutDir)gtest_prod_test.pdb</ProgramDatabaseFile> | |
| + <SubSystem>Console</SubSystem> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_prod_test.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <SubSystem>Console</SubSystem> | |
| + <OptimizeReferences>true</OptimizeReferences> | |
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
| + <TargetMachine>MachineX86</TargetMachine> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_prod_test.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <SubSystem>Console</SubSystem> | |
| + <OptimizeReferences>true</OptimizeReferences> | |
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\test\gtest_prod_test.cc"> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + </PrecompiledHeader> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + </PrecompiledHeader> | |
| + </ClCompile> | |
| + <ClCompile Include="..\test\production.cc"> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + </PrecompiledHeader> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + </PrecompiledHeader> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClInclude Include="..\test\production.h" /> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ProjectReference Include="gtest_main-md.vcxproj"> | |
| + <Project>{3af54c8a-10bf-4332-9147-f68ed9862033}</Project> | |
| + </ProjectReference> | |
| + </ItemGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
| + <ImportGroup Label="ExtensionTargets"> | |
| + </ImportGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_prod_test-md.vcxproj.filters b/msvc11/gtest_prod_test-md.vcxproj.filters | |
| new file mode 100644 | |
| index 0000000..e4089cd | |
| --- /dev/null | |
| +++ b/msvc11/gtest_prod_test-md.vcxproj.filters | |
| @@ -0,0 +1,26 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup> | |
| + <Filter Include="Source Files"> | |
| + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | |
| + <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | |
| + </Filter> | |
| + <Filter Include="Header Files"> | |
| + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | |
| + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | |
| + </Filter> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\test\gtest_prod_test.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + <ClCompile Include="..\test\production.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClInclude Include="..\test\production.h"> | |
| + <Filter>Header Files</Filter> | |
| + </ClInclude> | |
| + </ItemGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_prod_test.vcxproj b/msvc11/gtest_prod_test.vcxproj | |
| new file mode 100644 | |
| index 0000000..4df1a95 | |
| --- /dev/null | |
| +++ b/msvc11/gtest_prod_test.vcxproj | |
| @@ -0,0 +1,199 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup Label="ProjectConfigurations"> | |
| + <ProjectConfiguration Include="Debug|Win32"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Debug|x64"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|Win32"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|x64"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + </ItemGroup> | |
| + <PropertyGroup Label="Globals"> | |
| + <ProjectGuid>{24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}</ProjectGuid> | |
| + <Keyword>Win32Proj</Keyword> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
| + <ImportGroup Label="ExtensionSettings"> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <PropertyGroup Label="UserMacros" /> | |
| + <PropertyGroup> | |
| + <_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + <LinkIncremental>true</LinkIncremental> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <LinkIncremental>true</LinkIncremental> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + <LinkIncremental>false</LinkIncremental> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <LinkIncremental>false</LinkIncremental> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <MinimalRebuild>false</MinimalRebuild> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_prod_test.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <ProgramDatabaseFile>$(OutDir)gtest_prod_test.pdb</ProgramDatabaseFile> | |
| + <SubSystem>Console</SubSystem> | |
| + <TargetMachine>MachineX86</TargetMachine> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_prod_test.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <ProgramDatabaseFile>$(OutDir)gtest_prod_test.pdb</ProgramDatabaseFile> | |
| + <SubSystem>Console</SubSystem> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_prod_test.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <SubSystem>Console</SubSystem> | |
| + <OptimizeReferences>true</OptimizeReferences> | |
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
| + <TargetMachine>MachineX86</TargetMachine> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_prod_test.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <SubSystem>Console</SubSystem> | |
| + <OptimizeReferences>true</OptimizeReferences> | |
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\test\gtest_prod_test.cc"> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + </PrecompiledHeader> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + </PrecompiledHeader> | |
| + </ClCompile> | |
| + <ClCompile Include="..\test\production.cc"> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + </PrecompiledHeader> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + </PrecompiledHeader> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClInclude Include="..\test\production.h" /> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ProjectReference Include="gtest_main.vcxproj"> | |
| + <Project>{3af54c8a-10bf-4332-9147-f68ed9862032}</Project> | |
| + </ProjectReference> | |
| + </ItemGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
| + <ImportGroup Label="ExtensionTargets"> | |
| + </ImportGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_prod_test.vcxproj.filters b/msvc11/gtest_prod_test.vcxproj.filters | |
| new file mode 100644 | |
| index 0000000..e4089cd | |
| --- /dev/null | |
| +++ b/msvc11/gtest_prod_test.vcxproj.filters | |
| @@ -0,0 +1,26 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup> | |
| + <Filter Include="Source Files"> | |
| + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | |
| + <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | |
| + </Filter> | |
| + <Filter Include="Header Files"> | |
| + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | |
| + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | |
| + </Filter> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\test\gtest_prod_test.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + <ClCompile Include="..\test\production.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClInclude Include="..\test\production.h"> | |
| + <Filter>Header Files</Filter> | |
| + </ClInclude> | |
| + </ItemGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_unittest-md.vcxproj b/msvc11/gtest_unittest-md.vcxproj | |
| new file mode 100644 | |
| index 0000000..da595d0 | |
| --- /dev/null | |
| +++ b/msvc11/gtest_unittest-md.vcxproj | |
| @@ -0,0 +1,188 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup Label="ProjectConfigurations"> | |
| + <ProjectConfiguration Include="Debug|Win32"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Debug|x64"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|Win32"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|x64"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + </ItemGroup> | |
| + <PropertyGroup Label="Globals"> | |
| + <ProjectGuid>{4D9FDFB5-986A-4139-823C-F4EE0ED481A2}</ProjectGuid> | |
| + <Keyword>Win32Proj</Keyword> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
| + <ImportGroup Label="ExtensionSettings"> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <PropertyGroup Label="UserMacros" /> | |
| + <PropertyGroup> | |
| + <_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + <LinkIncremental>true</LinkIncremental> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <LinkIncremental>true</LinkIncremental> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + <LinkIncremental>false</LinkIncremental> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <LinkIncremental>false</LinkIncremental> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <MinimalRebuild>false</MinimalRebuild> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_unittest.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <ProgramDatabaseFile>$(OutDir)gtest_unittest.pdb</ProgramDatabaseFile> | |
| + <SubSystem>Console</SubSystem> | |
| + <TargetMachine>MachineX86</TargetMachine> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_unittest.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <ProgramDatabaseFile>$(OutDir)gtest_unittest.pdb</ProgramDatabaseFile> | |
| + <SubSystem>Console</SubSystem> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_unittest.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <SubSystem>Console</SubSystem> | |
| + <OptimizeReferences>true</OptimizeReferences> | |
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
| + <TargetMachine>MachineX86</TargetMachine> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_unittest.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <SubSystem>Console</SubSystem> | |
| + <OptimizeReferences>true</OptimizeReferences> | |
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\test\gtest_unittest.cc"> | |
| + <Optimization Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">MinSpace</Optimization> | |
| + <Optimization Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">MinSpace</Optimization> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <BasicRuntimeChecks Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Default</BasicRuntimeChecks> | |
| + <BasicRuntimeChecks Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Default</BasicRuntimeChecks> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + </PrecompiledHeader> | |
| + <DebugInformationFormat Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ProgramDatabase</DebugInformationFormat> | |
| + <DebugInformationFormat Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ProgramDatabase</DebugInformationFormat> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + </PrecompiledHeader> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ProjectReference Include="gtest_main-md.vcxproj"> | |
| + <Project>{3af54c8a-10bf-4332-9147-f68ed9862033}</Project> | |
| + </ProjectReference> | |
| + </ItemGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
| + <ImportGroup Label="ExtensionTargets"> | |
| + </ImportGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_unittest-md.vcxproj.filters b/msvc11/gtest_unittest-md.vcxproj.filters | |
| new file mode 100644 | |
| index 0000000..d3d5606 | |
| --- /dev/null | |
| +++ b/msvc11/gtest_unittest-md.vcxproj.filters | |
| @@ -0,0 +1,18 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup> | |
| + <Filter Include="Source Files"> | |
| + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | |
| + <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | |
| + </Filter> | |
| + <Filter Include="Header Files"> | |
| + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | |
| + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | |
| + </Filter> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\test\gtest_unittest.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_unittest.vcxproj b/msvc11/gtest_unittest.vcxproj | |
| new file mode 100644 | |
| index 0000000..2817000 | |
| --- /dev/null | |
| +++ b/msvc11/gtest_unittest.vcxproj | |
| @@ -0,0 +1,188 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup Label="ProjectConfigurations"> | |
| + <ProjectConfiguration Include="Debug|Win32"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Debug|x64"> | |
| + <Configuration>Debug</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|Win32"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>Win32</Platform> | |
| + </ProjectConfiguration> | |
| + <ProjectConfiguration Include="Release|x64"> | |
| + <Configuration>Release</Configuration> | |
| + <Platform>x64</Platform> | |
| + </ProjectConfiguration> | |
| + </ItemGroup> | |
| + <PropertyGroup Label="Globals"> | |
| + <ProjectGuid>{4D9FDFB5-986A-4139-823C-F4EE0ED481A1}</ProjectGuid> | |
| + <Keyword>Win32Proj</Keyword> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| + <ConfigurationType>Application</ConfigurationType> | |
| + <PlatformToolset>v110</PlatformToolset> | |
| + <CharacterSet>MultiByte</CharacterSet> | |
| + </PropertyGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
| + <ImportGroup Label="ExtensionSettings"> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
| + </ImportGroup> | |
| + <PropertyGroup Label="UserMacros" /> | |
| + <PropertyGroup> | |
| + <_ProjectFileVersion>11.0.51106.1</_ProjectFileVersion> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + <LinkIncremental>true</LinkIncremental> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <LinkIncremental>true</LinkIncremental> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + <LinkIncremental>false</LinkIncremental> | |
| + </PropertyGroup> | |
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <LinkIncremental>false</LinkIncremental> | |
| + <OutDir>$(SolutionName)/$(Platform)/$(Configuration)\</OutDir> | |
| + <IntDir>$(OutDir)$(ProjectName)\</IntDir> | |
| + </PropertyGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <MinimalRebuild>false</MinimalRebuild> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_unittest.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <ProgramDatabaseFile>$(OutDir)gtest_unittest.pdb</ProgramDatabaseFile> | |
| + <SubSystem>Console</SubSystem> | |
| + <TargetMachine>MachineX86</TargetMachine> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + <ClCompile> | |
| + <Optimization>Disabled</Optimization> | |
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> | |
| + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_unittest.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <ProgramDatabaseFile>$(OutDir)gtest_unittest.pdb</ProgramDatabaseFile> | |
| + <SubSystem>Console</SubSystem> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_unittest.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <SubSystem>Console</SubSystem> | |
| + <OptimizeReferences>true</OptimizeReferences> | |
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
| + <TargetMachine>MachineX86</TargetMachine> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + <ClCompile> | |
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
| + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | |
| + <PrecompiledHeader>Use</PrecompiledHeader> | |
| + <WarningLevel>Level3</WarningLevel> | |
| + <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| + <AdditionalOptions>/D _VARIADIC_MAX=10 %(AdditionalOptions)</AdditionalOptions> | |
| + </ClCompile> | |
| + <Link> | |
| + <OutputFile>$(OutDir)gtest_unittest.exe</OutputFile> | |
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |
| + <SubSystem>Console</SubSystem> | |
| + <OptimizeReferences>true</OptimizeReferences> | |
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |
| + </Link> | |
| + </ItemDefinitionGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\test\gtest_unittest.cc"> | |
| + <Optimization Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">MinSpace</Optimization> | |
| + <Optimization Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">MinSpace</Optimization> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <BasicRuntimeChecks Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Default</BasicRuntimeChecks> | |
| + <BasicRuntimeChecks Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Default</BasicRuntimeChecks> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |
| + </PrecompiledHeader> | |
| + <DebugInformationFormat Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ProgramDatabase</DebugInformationFormat> | |
| + <DebugInformationFormat Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ProgramDatabase</DebugInformationFormat> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
| + </PrecompiledHeader> | |
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |
| + </PrecompiledHeader> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ProjectReference Include="gtest_main.vcxproj"> | |
| + <Project>{3af54c8a-10bf-4332-9147-f68ed9862032}</Project> | |
| + </ProjectReference> | |
| + </ItemGroup> | |
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
| + <ImportGroup Label="ExtensionTargets"> | |
| + </ImportGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| diff --git a/msvc11/gtest_unittest.vcxproj.filters b/msvc11/gtest_unittest.vcxproj.filters | |
| new file mode 100644 | |
| index 0000000..d3d5606 | |
| --- /dev/null | |
| +++ b/msvc11/gtest_unittest.vcxproj.filters | |
| @@ -0,0 +1,18 @@ | |
| +<?xml version="1.0" encoding="utf-8"?> | |
| +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| + <ItemGroup> | |
| + <Filter Include="Source Files"> | |
| + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | |
| + <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | |
| + </Filter> | |
| + <Filter Include="Header Files"> | |
| + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | |
| + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> | |
| + </Filter> | |
| + </ItemGroup> | |
| + <ItemGroup> | |
| + <ClCompile Include="..\test\gtest_unittest.cc"> | |
| + <Filter>Source Files</Filter> | |
| + </ClCompile> | |
| + </ItemGroup> | |
| +</Project> | |
| \ No newline at end of file | |
| -- | |
| 1.8.0.msysgit.0 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment