- Timestamp:
- Jul 13, 2017, 8:01:48 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/DirectShowReferenceSource/Sample/MfGenerate/MfGenerate.vcxproj
r636 r769 6 6 <Platform>Win32</Platform> 7 7 </ProjectConfiguration> 8 <ProjectConfiguration Include="Debug|x64"> 9 <Configuration>Debug</Configuration> 10 <Platform>x64</Platform> 11 </ProjectConfiguration> 8 12 <ProjectConfiguration Include="Release|Win32"> 9 13 <Configuration>Release</Configuration> 10 14 <Platform>Win32</Platform> 15 </ProjectConfiguration> 16 <ProjectConfiguration Include="Release|x64"> 17 <Configuration>Release</Configuration> 18 <Platform>x64</Platform> 11 19 </ProjectConfiguration> 12 20 </ItemGroup> … … 15 23 <Keyword>Win32Proj</Keyword> 16 24 <RootNamespace>MfGenerate</RootNamespace> 17 <WindowsTargetPlatformVersion>10.0.1 0586.0</WindowsTargetPlatformVersion>25 <WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion> 18 26 </PropertyGroup> 19 27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 20 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 29 <ConfigurationType>Application</ConfigurationType> 30 <UseDebugLibraries>true</UseDebugLibraries> 31 <PlatformToolset>v140</PlatformToolset> 32 <CharacterSet>Unicode</CharacterSet> 33 </PropertyGroup> 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 21 35 <ConfigurationType>Application</ConfigurationType> 22 36 <UseDebugLibraries>true</UseDebugLibraries> … … 31 45 <CharacterSet>Unicode</CharacterSet> 32 46 </PropertyGroup> 47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 48 <ConfigurationType>Application</ConfigurationType> 49 <UseDebugLibraries>false</UseDebugLibraries> 50 <PlatformToolset>v140</PlatformToolset> 51 <WholeProgramOptimization>true</WholeProgramOptimization> 52 <CharacterSet>Unicode</CharacterSet> 53 </PropertyGroup> 33 54 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 34 55 <ImportGroup Label="ExtensionSettings"> … … 37 58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 38 59 </ImportGroup> 60 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 61 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 62 </ImportGroup> 39 63 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 64 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 65 </ImportGroup> 66 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 40 67 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 41 68 </ImportGroup> 42 69 <PropertyGroup Label="UserMacros" /> 43 70 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 71 <LinkIncremental>true</LinkIncremental> 72 <OutDir>$(SolutionDir)_Bin\$(Platform)\$(Configuration)\</OutDir> 73 <IntDir>$(SolutionDir)_Bin\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir> 74 </PropertyGroup> 75 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 44 76 <LinkIncremental>true</LinkIncremental> 45 77 <OutDir>$(SolutionDir)_Bin\$(Platform)\$(Configuration)\</OutDir> … … 51 83 <IntDir>$(SolutionDir)_Bin\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir> 52 84 </PropertyGroup> 85 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 86 <LinkIncremental>false</LinkIncremental> 87 <OutDir>$(SolutionDir)_Bin\$(Platform)\$(Configuration)\</OutDir> 88 <IntDir>$(SolutionDir)_Bin\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir> 89 </PropertyGroup> 53 90 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 91 <ClCompile> 92 <PrecompiledHeader>Use</PrecompiledHeader> 93 <WarningLevel>Level3</WarningLevel> 94 <Optimization>Disabled</Optimization> 95 <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 96 <SDLCheck>true</SDLCheck> 97 </ClCompile> 98 <Link> 99 <SubSystem>Console</SubSystem> 100 <MfGenerateDebugInformation>true</MfGenerateDebugInformation> 101 <GenerateDebugInformation>true</GenerateDebugInformation> 102 <LargeAddressAware>true</LargeAddressAware> 103 </Link> 104 </ItemDefinitionGroup> 105 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 54 106 <ClCompile> 55 107 <PrecompiledHeader>Use</PrecompiledHeader> … … 84 136 </Link> 85 137 </ItemDefinitionGroup> 138 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 139 <ClCompile> 140 <WarningLevel>Level3</WarningLevel> 141 <PrecompiledHeader>Use</PrecompiledHeader> 142 <Optimization>MaxSpeed</Optimization> 143 <FunctionLevelLinking>true</FunctionLevelLinking> 144 <IntrinsicFunctions>true</IntrinsicFunctions> 145 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 146 <SDLCheck>true</SDLCheck> 147 </ClCompile> 148 <Link> 149 <SubSystem>Console</SubSystem> 150 <MfGenerateDebugInformation>true</MfGenerateDebugInformation> 151 <EnableCOMDATFolding>true</EnableCOMDATFolding> 152 <OptimizeReferences>true</OptimizeReferences> 153 <LargeAddressAware>true</LargeAddressAware> 154 </Link> 155 </ItemDefinitionGroup> 86 156 <ItemGroup> 87 157 <ClInclude Include="stdafx.h" /> … … 92 162 <ClCompile Include="stdafx.cpp"> 93 163 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> 164 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader> 94 165 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> 166 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> 95 167 </ClCompile> 96 168 </ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.