source: trunk/DirectShowSpy/DirectShowSpyPS.vcxproj @ 440

Last change on this file since 440 was 233, checked in by roman, 10 years ago

Graph helper takes filters and pins, not only graph; Added email feature

File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="4.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>{E0A3323D-478E-4046-909A-AD12AD399A68}</ProjectGuid>
15    <Keyword>AtlPSProj</Keyword>
16  </PropertyGroup>
17  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
18  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
19    <ConfigurationType>DynamicLibrary</ConfigurationType>
20    <PlatformToolset>v110</PlatformToolset>
21    <CharacterSet>Unicode</CharacterSet>
22  </PropertyGroup>
23  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
24    <ConfigurationType>DynamicLibrary</ConfigurationType>
25    <PlatformToolset>v110</PlatformToolset>
26    <CharacterSet>Unicode</CharacterSet>
27  </PropertyGroup>
28  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
29  <ImportGroup Label="ExtensionSettings">
30  </ImportGroup>
31  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
32    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
33  </ImportGroup>
34  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
35    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36  </ImportGroup>
37  <PropertyGroup Label="UserMacros" />
38  <PropertyGroup>
39    <_ProjectFileVersion>11.0.60610.1</_ProjectFileVersion>
40  </PropertyGroup>
41  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
42    <OutDir>$(Configuration)PS\</OutDir>
43    <IntDir>$(Configuration)PS\</IntDir>
44  </PropertyGroup>
45  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
46    <OutDir>$(Configuration)PS\</OutDir>
47    <IntDir>$(Configuration)PS\</IntDir>
48  </PropertyGroup>
49  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
50    <PreBuildEvent>
51      <Message>Checking for required files</Message>
52      <Command>if exist dlldata.c goto :END
53echo Error: MIDL will not generate DLLDATA.C unless you have at least 1 interface in the main project.
54Exit 1
55:END
56</Command>
57    </PreBuildEvent>
58    <ClCompile>
59      <PreprocessorDefinitions>WIN32;_WIN32_WINNT=0x0500;REGISTER_PROXY_DLL;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
60      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
61    </ClCompile>
62    <Link>
63      <RegisterOutput>true</RegisterOutput>
64      <AdditionalDependencies>kernel32.lib;rpcns4.lib;rpcrt4.lib;oleaut32.lib;uuid.lib;%(AdditionalDependencies)</AdditionalDependencies>
65      <ModuleDefinitionFile>DirectShowSpyPS.def</ModuleDefinitionFile>
66    </Link>
67  </ItemDefinitionGroup>
68  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
69    <PreBuildEvent>
70      <Message>Checking for required files</Message>
71      <Command>if exist dlldata.c goto :END
72echo Error: MIDL will not generate DLLDATA.C unless you have at least 1 interface in the main project.
73Exit 1
74:END
75</Command>
76    </PreBuildEvent>
77    <ClCompile>
78      <Optimization>MaxSpeed</Optimization>
79      <PreprocessorDefinitions>WIN32;_WIN32_WINNT=0x0500;REGISTER_PROXY_DLL;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
80      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
81    </ClCompile>
82    <Link>
83      <RegisterOutput>true</RegisterOutput>
84      <AdditionalDependencies>kernel32.lib;rpcns4.lib;rpcrt4.lib;oleaut32.lib;uuid.lib;%(AdditionalDependencies)</AdditionalDependencies>
85      <ModuleDefinitionFile>DirectShowSpyPS.def</ModuleDefinitionFile>
86      <OptimizeReferences>true</OptimizeReferences>
87      <EnableCOMDATFolding>true</EnableCOMDATFolding>
88    </Link>
89  </ItemDefinitionGroup>
90  <ItemGroup>
91    <ClCompile Include="dlldata.c" />
92    <ClCompile Include="DirectShowSpy_i.c" />
93    <ClCompile Include="DirectShowSpy_p.c" />
94  </ItemGroup>
95  <ItemGroup>
96    <None Include="DirectShowSpyps.def" />
97  </ItemGroup>
98  <ItemGroup>
99    <ProjectReference Include="DirectShowSpy.vcxproj">
100      <Project>{1a5da4e5-ed09-476a-9a42-538d0dda3fb9}</Project>
101      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
102    </ProjectReference>
103  </ItemGroup>
104  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
105  <ImportGroup Label="ExtensionTargets">
106  </ImportGroup>
107</Project>
Note: See TracBrowser for help on using the repository browser.