1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <ItemGroup Label="ProjectConfigurations"> 4 <ProjectConfiguration Include="Debug|Win32"> 5 <Configuration>Debug</Configuration> 6 <Platform>Win32</Platform> 7 </ProjectConfiguration> 8 <ProjectConfiguration Include="Debug|x64"> 9 <Configuration>Debug</Configuration> 10 <Platform>x64</Platform> 11 </ProjectConfiguration> 12 <ProjectConfiguration Include="Release|Win32"> 13 <Configuration>Release</Configuration> 14 <Platform>Win32</Platform> 15 </ProjectConfiguration> 16 <ProjectConfiguration Include="Release|x64"> 17 <Configuration>Release</Configuration> 18 <Platform>x64</Platform> 19 </ProjectConfiguration> 20 </ItemGroup> 21 <PropertyGroup Label="Globals"> 22 <ProjectGuid>{C9FEAE75-4DD9-44F5-B302-9910559A91BE}</ProjectGuid> 23 <Keyword>Win32Proj</Keyword> 24 <RootNamespace>benchmark</RootNamespace> 25 <WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion> 26 </PropertyGroup> 27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 29 <ConfigurationType>Application</ConfigurationType> 30 <UseDebugLibraries>true</UseDebugLibraries> 31 <CharacterSet>Unicode</CharacterSet> 32 <PlatformToolset>v141</PlatformToolset> 33 </PropertyGroup> 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 35 <ConfigurationType>Application</ConfigurationType> 36 <UseDebugLibraries>true</UseDebugLibraries> 37 <CharacterSet>Unicode</CharacterSet> 38 <PlatformToolset>v141</PlatformToolset> 39 </PropertyGroup> 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 41 <ConfigurationType>Application</ConfigurationType> 42 <UseDebugLibraries>false</UseDebugLibraries> 43 <WholeProgramOptimization>true</WholeProgramOptimization> 44 <CharacterSet>Unicode</CharacterSet> 45 <PlatformToolset>v141</PlatformToolset> 46 </PropertyGroup> 47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 48 <ConfigurationType>Application</ConfigurationType> 49 <UseDebugLibraries>false</UseDebugLibraries> 50 <WholeProgramOptimization>true</WholeProgramOptimization> 51 <CharacterSet>Unicode</CharacterSet> 52 <PlatformToolset>v141</PlatformToolset> 53 </PropertyGroup> 54 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 55 <ImportGroup Label="ExtensionSettings"> 56 </ImportGroup> 57 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 59 <Import Project="..\common.props" /> 60 </ImportGroup> 61 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 62 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 63 <Import Project="..\common.props" /> 64 </ImportGroup> 65 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 66 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 67 <Import Project="..\common.props" /> 68 </ImportGroup> 69 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 70 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 71 <Import Project="..\common.props" /> 72 </ImportGroup> 73 <PropertyGroup Label="UserMacros" /> 74 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 75 <LinkIncremental>true</LinkIncremental> 76 <OutDir>$(SolutionDir)$(Configuration)\</OutDir> 77 <IntDir>$(Configuration)\</IntDir> 78 </PropertyGroup> 79 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 80 <LinkIncremental>true</LinkIncremental> 81 <ExecutablePath>..\..\..\..\..\stage\lib;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);</ExecutablePath> 82 </PropertyGroup> 83 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 84 <LinkIncremental>false</LinkIncremental> 85 <OutDir>$(SolutionDir)$(Configuration)\</OutDir> 86 <IntDir>$(Configuration)\</IntDir> 87 </PropertyGroup> 88 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 89 <LinkIncremental>false</LinkIncremental> 90 <ExecutablePath>..\..\..\..\..\stage\lib;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);</ExecutablePath> 91 </PropertyGroup> 92 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 93 <ClCompile> 94 <PrecompiledHeader> 95 </PrecompiledHeader> 96 <WarningLevel>Level3</WarningLevel> 97 <Optimization>Disabled</Optimization> 98 <PreprocessorDefinitions>BOOST_ALL_DYN_LINK;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 99 </ClCompile> 100 <Link> 101 <SubSystem>Console</SubSystem> 102 <GenerateDebugInformation>true</GenerateDebugInformation> 103 </Link> 104 <PostBuildEvent> 105 <Command>"$(TargetDir)\$(TargetName).exe" 10 -v</Command> 106 <Message>Executing test...</Message> 107 </PostBuildEvent> 108 </ItemDefinitionGroup> 109 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 110 <ClCompile> 111 <PrecompiledHeader> 112 </PrecompiledHeader> 113 <WarningLevel>Level3</WarningLevel> 114 <Optimization>Disabled</Optimization> 115 <PreprocessorDefinitions>BOOST_ALL_DYN_LINK;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 116 </ClCompile> 117 <Link> 118 <SubSystem>Console</SubSystem> 119 <GenerateDebugInformation>true</GenerateDebugInformation> 120 </Link> 121 <PostBuildEvent> 122 <Command>"$(TargetDir)\$(TargetName).exe" 10 -v</Command> 123 <Message>Executing test...</Message> 124 </PostBuildEvent> 125 </ItemDefinitionGroup> 126 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 127 <ClCompile> 128 <WarningLevel>Level3</WarningLevel> 129 <PrecompiledHeader> 130 </PrecompiledHeader> 131 <Optimization>MaxSpeed</Optimization> 132 <FunctionLevelLinking>true</FunctionLevelLinking> 133 <IntrinsicFunctions>true</IntrinsicFunctions> 134 <PreprocessorDefinitions>BOOST_ALL_DYN_LINK;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 135 <AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput> 136 <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> 137 </ClCompile> 138 <Link> 139 <SubSystem>Console</SubSystem> 140 <GenerateDebugInformation>true</GenerateDebugInformation> 141 <EnableCOMDATFolding>true</EnableCOMDATFolding> 142 <OptimizeReferences>true</OptimizeReferences> 143 </Link> 144 <PostBuildEvent> 145 <Command>"$(TargetDir)\$(TargetName).exe" 10000 -v</Command> 146 <Message>Executing test...</Message> 147 </PostBuildEvent> 148 </ItemDefinitionGroup> 149 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 150 <ClCompile> 151 <WarningLevel>Level3</WarningLevel> 152 <PrecompiledHeader> 153 </PrecompiledHeader> 154 <Optimization>MaxSpeed</Optimization> 155 <FunctionLevelLinking>true</FunctionLevelLinking> 156 <IntrinsicFunctions>true</IntrinsicFunctions> 157 <PreprocessorDefinitions>BOOST_ALL_DYN_LINK;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 158 <AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput> 159 <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> 160 </ClCompile> 161 <Link> 162 <SubSystem>Console</SubSystem> 163 <GenerateDebugInformation>true</GenerateDebugInformation> 164 <EnableCOMDATFolding>true</EnableCOMDATFolding> 165 <OptimizeReferences>true</OptimizeReferences> 166 </Link> 167 <PostBuildEvent> 168 <Command>"$(TargetDir)\$(TargetName).exe" 10000 -v</Command> 169 <Message>Executing test...</Message> 170 </PostBuildEvent> 171 </ItemDefinitionGroup> 172 <ItemGroup> 173 <ClCompile Include="..\..\benchmark.cpp" /> 174 </ItemGroup> 175 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 176 <ImportGroup Label="ExtensionTargets"> 177 </ImportGroup> 178</Project>