source: trunk/DirectShowSpy/Sample/RegistrationFreeFilterGraphHelper/RegistrationFreeFilterGraphHelper.vcxproj

Last change on this file was 657, checked in by roman, 8 years ago
File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="14.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="Release|Win32">
9      <Configuration>Release</Configuration>
10      <Platform>Win32</Platform>
11    </ProjectConfiguration>
12  </ItemGroup>
13  <PropertyGroup Label="Globals">
14    <ProjectGuid>{43C0B4EC-7B07-473C-90FE-357F664650C4}</ProjectGuid>
15    <Keyword>Win32Proj</Keyword>
16    <RootNamespace>RegistrationFreeFilterGraphHelper</RootNamespace>
17  </PropertyGroup>
18  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
19  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
20    <ConfigurationType>Application</ConfigurationType>
21    <UseDebugLibraries>true</UseDebugLibraries>
22    <PlatformToolset>v140</PlatformToolset>
23    <CharacterSet>Unicode</CharacterSet>
24    <UseOfAtl>Static</UseOfAtl>
25  </PropertyGroup>
26  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
27    <ConfigurationType>Application</ConfigurationType>
28    <UseDebugLibraries>false</UseDebugLibraries>
29    <PlatformToolset>v140</PlatformToolset>
30    <WholeProgramOptimization>true</WholeProgramOptimization>
31    <CharacterSet>Unicode</CharacterSet>
32    <UseOfAtl>Static</UseOfAtl>
33  </PropertyGroup>
34  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
35  <ImportGroup Label="ExtensionSettings">
36  </ImportGroup>
37  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
38    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39  </ImportGroup>
40  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
41    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
42  </ImportGroup>
43  <PropertyGroup Label="UserMacros" />
44  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
45    <LinkIncremental>true</LinkIncremental>
46    <OutDir>$(SolutionDir)_Bin\$(PlatformName)\$(ConfigurationName)</OutDir>
47    <IntDir>$(SolutionDir)_Bin\$(PlatformName)\$(ConfigurationName)\$(ProjectName)</IntDir>
48  </PropertyGroup>
49  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
50    <LinkIncremental>false</LinkIncremental>
51    <OutDir>$(SolutionDir)_Bin\$(PlatformName)\$(ConfigurationName)</OutDir>
52    <IntDir>$(SolutionDir)_Bin\$(PlatformName)\$(ConfigurationName)\$(ProjectName)</IntDir>
53  </PropertyGroup>
54  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
55    <ClCompile>
56      <PrecompiledHeader>Use</PrecompiledHeader>
57      <WarningLevel>Level3</WarningLevel>
58      <Optimization>Disabled</Optimization>
59      <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
60      <SDLCheck>true</SDLCheck>
61    </ClCompile>
62    <Link>
63      <SubSystem>Console</SubSystem>
64      <GenerateDebugInformation>true</GenerateDebugInformation>
65    </Link>
66  </ItemDefinitionGroup>
67  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
68    <ClCompile>
69      <WarningLevel>Level3</WarningLevel>
70      <PrecompiledHeader>Use</PrecompiledHeader>
71      <Optimization>MaxSpeed</Optimization>
72      <FunctionLevelLinking>true</FunctionLevelLinking>
73      <IntrinsicFunctions>true</IntrinsicFunctions>
74      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
75      <SDLCheck>true</SDLCheck>
76    </ClCompile>
77    <Link>
78      <SubSystem>Console</SubSystem>
79      <GenerateDebugInformation>true</GenerateDebugInformation>
80      <EnableCOMDATFolding>true</EnableCOMDATFolding>
81      <OptimizeReferences>true</OptimizeReferences>
82    </Link>
83  </ItemDefinitionGroup>
84  <ItemGroup>
85    <ClInclude Include="stdafx.h" />
86    <ClInclude Include="targetver.h" />
87  </ItemGroup>
88  <ItemGroup>
89    <ClCompile Include="RegistrationFreeFilterGraphHelper.cpp" />
90    <ClCompile Include="stdafx.cpp">
91      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
92      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
93    </ClCompile>
94  </ItemGroup>
95  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
96  <ImportGroup Label="ExtensionTargets">
97  </ImportGroup>
98</Project>
Note: See TracBrowser for help on using the repository browser.