source: trunk/Utilities/Miscellaneous/CustomMarshal/Server/ServerPS.vcxproj @ 218

Last change on this file since 218 was 218, checked in by roman, 11 years ago
File size: 4.4 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>{8D36129C-72AB-46AA-AB2B-EE17D983C750}</ProjectGuid>
15    <Keyword>AtlPSProj</Keyword>
16  </PropertyGroup>
17  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
18  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
19    <ConfigurationType>DynamicLibrary</ConfigurationType>
20    <UseDebugLibraries>true</UseDebugLibraries>
21    <PlatformToolset>v110</PlatformToolset>
22    <CharacterSet>Unicode</CharacterSet>
23  </PropertyGroup>
24  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
25    <ConfigurationType>DynamicLibrary</ConfigurationType>
26    <UseDebugLibraries>false</UseDebugLibraries>
27    <PlatformToolset>v110</PlatformToolset>
28    <CharacterSet>Unicode</CharacterSet>
29  </PropertyGroup>
30  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
31  <ImportGroup Label="ExtensionSettings">
32  </ImportGroup>
33  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
34    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
35  </ImportGroup>
36  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
37    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
38  </ImportGroup>
39  <PropertyGroup Label="UserMacros" />
40  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
41    <IntDir>$(Configuration)PS\</IntDir>
42  </PropertyGroup>
43  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
44    <IntDir>$(Configuration)PS\</IntDir>
45  </PropertyGroup>
46  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
47    <ClCompile>
48      <PreprocessorDefinitions>WIN32;REGISTER_PROXY_DLL;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
49    </ClCompile>
50    <Link>
51      <AdditionalDependencies>kernel32.lib;rpcns4.lib;rpcrt4.lib;oleaut32.lib;uuid.lib;%(AdditionalDependencies)</AdditionalDependencies>
52      <ModuleDefinitionFile>ServerPS.def</ModuleDefinitionFile>
53      <RegisterOutput>true</RegisterOutput>
54    </Link>
55    <PreBuildEvent>
56      <Command>if exist dlldata.c goto :END
57echo Error: MIDL will not generate DLLDATA.C unless you have at least 1 interface in the main project.
58Exit 1
59:END
60</Command>
61      <Message>Checking for required files</Message>
62    </PreBuildEvent>
63  </ItemDefinitionGroup>
64  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
65    <ClCompile>
66      <Optimization>MaxSpeed</Optimization>
67      <PreprocessorDefinitions>WIN32;REGISTER_PROXY_DLL;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
68    </ClCompile>
69    <Link>
70      <AdditionalDependencies>kernel32.lib;rpcns4.lib;rpcrt4.lib;oleaut32.lib;uuid.lib;%(AdditionalDependencies)</AdditionalDependencies>
71      <ModuleDefinitionFile>ServerPS.def</ModuleDefinitionFile>
72      <EnableCOMDATFolding>true</EnableCOMDATFolding>
73      <OptimizeReferences>true</OptimizeReferences>
74      <RegisterOutput>true</RegisterOutput>
75    </Link>
76    <PreBuildEvent>
77      <Command>if exist dlldata.c goto :END
78echo Error: MIDL will not generate DLLDATA.C unless you have at least 1 interface in the main project.
79Exit 1
80:END
81</Command>
82      <Message>Checking for required files</Message>
83    </PreBuildEvent>
84  </ItemDefinitionGroup>
85  <ItemGroup>
86    <None Include="Serverps.def" />
87  </ItemGroup>
88  <ItemGroup>
89    <ClCompile Include="dlldata.c" />
90    <ClCompile Include="Server_i.c" />
91    <ClCompile Include="Server_p.c" />
92  </ItemGroup>
93  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
94  <ImportGroup Label="ExtensionTargets">
95  </ImportGroup>
96</Project>
Note: See TracBrowser for help on using the repository browser.