source: trunk/Utilities/InjectLibrary/Library/Library.vcxproj @ 937

Last change on this file since 937 was 68, checked in by roman, 12 years ago
File size: 4.8 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>{085D2DB3-9D37-4819-BB4B-931D73E0824D}</ProjectGuid>
15    <Keyword>Win32Proj</Keyword>
16    <RootNamespace>Library</RootNamespace>
17  </PropertyGroup>
18  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
19  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
20    <ConfigurationType>DynamicLibrary</ConfigurationType>
21    <UseDebugLibraries>true</UseDebugLibraries>
22    <CharacterSet>Unicode</CharacterSet>
23    <UseOfAtl>Static</UseOfAtl>
24  </PropertyGroup>
25  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
26    <ConfigurationType>DynamicLibrary</ConfigurationType>
27    <UseDebugLibraries>false</UseDebugLibraries>
28    <WholeProgramOptimization>true</WholeProgramOptimization>
29    <CharacterSet>Unicode</CharacterSet>
30  </PropertyGroup>
31  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
32  <ImportGroup Label="ExtensionSettings">
33  </ImportGroup>
34  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
35    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36  </ImportGroup>
37  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
38    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39  </ImportGroup>
40  <PropertyGroup Label="UserMacros" />
41  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
42    <LinkIncremental>true</LinkIncremental>
43  </PropertyGroup>
44  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
45    <LinkIncremental>false</LinkIncremental>
46  </PropertyGroup>
47  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
48    <ClCompile>
49      <PrecompiledHeader>Use</PrecompiledHeader>
50      <WarningLevel>Level3</WarningLevel>
51      <Optimization>Disabled</Optimization>
52      <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBRARY_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
53    </ClCompile>
54    <Link>
55      <SubSystem>Windows</SubSystem>
56      <GenerateDebugInformation>true</GenerateDebugInformation>
57    </Link>
58  </ItemDefinitionGroup>
59  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
60    <ClCompile>
61      <WarningLevel>Level3</WarningLevel>
62      <PrecompiledHeader>Use</PrecompiledHeader>
63      <Optimization>MaxSpeed</Optimization>
64      <FunctionLevelLinking>true</FunctionLevelLinking>
65      <IntrinsicFunctions>true</IntrinsicFunctions>
66      <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBRARY_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
67    </ClCompile>
68    <Link>
69      <SubSystem>Windows</SubSystem>
70      <GenerateDebugInformation>true</GenerateDebugInformation>
71      <EnableCOMDATFolding>true</EnableCOMDATFolding>
72      <OptimizeReferences>true</OptimizeReferences>
73    </Link>
74  </ItemDefinitionGroup>
75  <ItemGroup>
76    <None Include="ReadMe.txt" />
77  </ItemGroup>
78  <ItemGroup>
79    <ClInclude Include="stdafx.h" />
80    <ClInclude Include="targetver.h" />
81  </ItemGroup>
82  <ItemGroup>
83    <ClCompile Include="dllmain.cpp">
84      <CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</CompileAsManaged>
85      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
86      </PrecompiledHeader>
87      <CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</CompileAsManaged>
88      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
89      </PrecompiledHeader>
90    </ClCompile>
91    <ClCompile Include="Library.cpp" />
92    <ClCompile Include="stdafx.cpp">
93      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
94      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
95    </ClCompile>
96  </ItemGroup>
97  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
98  <ImportGroup Label="ExtensionTargets">
99  </ImportGroup>
100</Project>
Note: See TracBrowser for help on using the repository browser.