2164.1.3
by Monty Taylor
Merged in various amounts of win32 fixes. Now is quite happy in vs10. |
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>{786CDCC5-9B40-4927-B8B3-DC484E138EE9}</ProjectGuid> |
|
15 |
<RootNamespace>libdrizzle</RootNamespace> |
|
16 |
<Keyword>Win32Proj</Keyword> |
|
17 |
</PropertyGroup>
|
|
18 |
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
|
19 |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
|
20 |
<ConfigurationType>DynamicLibrary</ConfigurationType> |
|
21 |
</PropertyGroup>
|
|
22 |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
|
23 |
<ConfigurationType>DynamicLibrary</ConfigurationType> |
|
24 |
</PropertyGroup>
|
|
25 |
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
|
26 |
<ImportGroup Label="ExtensionSettings"> |
|
27 |
</ImportGroup>
|
|
28 |
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> |
|
29 |
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|
30 |
</ImportGroup>
|
|
31 |
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|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 |
<PropertyGroup Label="UserMacros" /> |
|
35 |
<PropertyGroup>
|
|
36 |
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> |
|
37 |
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\</OutDir> |
|
38 |
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\</IntDir> |
|
39 |
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> |
|
40 |
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\</OutDir> |
|
41 |
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\</IntDir> |
|
42 |
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</LinkIncremental> |
|
43 |
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> |
|
44 |
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> |
|
45 |
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> |
|
46 |
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> |
|
47 |
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> |
|
48 |
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> |
|
49 |
</PropertyGroup>
|
|
50 |
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
|
51 |
<ClCompile>
|
|
52 |
<Optimization>Disabled</Optimization> |
|
53 |
<AdditionalIncludeDirectories>$(ProjectDir)\windows;$(ProjectDir);$(ProjectDir)\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
|
2164.1.6
by Monty Taylor
Updated the windows build to be able to build from the command line and not to show warnings on strncpy. |
54 |
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBDRIZZLE_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
2164.1.3
by Monty Taylor
Merged in various amounts of win32 fixes. Now is quite happy in vs10. |
55 |
<MinimalRebuild>true</MinimalRebuild> |
56 |
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> |
|
57 |
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |
|
58 |
<PrecompiledHeader>
|
|
59 |
</PrecompiledHeader>
|
|
60 |
<WarningLevel>Level3</WarningLevel> |
|
61 |
<DebugInformationFormat>EditAndContinue</DebugInformationFormat> |
|
62 |
<CompileAs>CompileAsC</CompileAs> |
|
63 |
</ClCompile>
|
|
64 |
<Link>
|
|
65 |
<AdditionalDependencies>wsock32.lib;Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies> |
|
66 |
<GenerateDebugInformation>true</GenerateDebugInformation> |
|
67 |
<SubSystem>Windows</SubSystem> |
|
68 |
<TargetMachine>MachineX86</TargetMachine> |
|
69 |
</Link>
|
|
70 |
</ItemDefinitionGroup>
|
|
71 |
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|
72 |
<ClCompile>
|
|
73 |
<AdditionalIncludeDirectories>$(ProjectDir)\win32\windows;$(ProjectDir)\win32;$(ProjectDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
|
2164.1.6
by Monty Taylor
Updated the windows build to be able to build from the command line and not to show warnings on strncpy. |
74 |
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBDRIZZLE_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
2164.1.3
by Monty Taylor
Merged in various amounts of win32 fixes. Now is quite happy in vs10. |
75 |
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |
76 |
<PrecompiledHeader>
|
|
77 |
</PrecompiledHeader>
|
|
78 |
<WarningLevel>Level3</WarningLevel> |
|
79 |
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
|
80 |
</ClCompile>
|
|
81 |
<Link>
|
|
82 |
<AdditionalDependencies>wsock32.lib;Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies> |
|
83 |
<GenerateDebugInformation>true</GenerateDebugInformation> |
|
84 |
<SubSystem>Windows</SubSystem> |
|
85 |
<OptimizeReferences>true</OptimizeReferences> |
|
86 |
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
|
87 |
<TargetMachine>MachineX86</TargetMachine> |
|
88 |
</Link>
|
|
89 |
</ItemDefinitionGroup>
|
|
90 |
<ItemGroup>
|
|
91 |
<ClInclude Include="..\libdrizzle\column.h" /> |
|
92 |
<ClInclude Include="..\libdrizzle\column_client.h" /> |
|
93 |
<ClInclude Include="..\libdrizzle\column_server.h" /> |
|
94 |
<ClInclude Include="..\libdrizzle\command_client.h" /> |
|
95 |
<ClInclude Include="..\libdrizzle\command_server.h" /> |
|
96 |
<ClInclude Include="..\libdrizzle\common.h" /> |
|
97 |
<ClInclude Include="config.h" /> |
|
98 |
<ClInclude Include="..\libdrizzle\conn.h" /> |
|
99 |
<ClInclude Include="..\libdrizzle\conn_client.h" /> |
|
100 |
<ClInclude Include="..\libdrizzle\conn_local.h" /> |
|
101 |
<ClInclude Include="..\libdrizzle\conn_server.h" /> |
|
102 |
<ClInclude Include="..\libdrizzle\constants.h" /> |
|
103 |
<ClInclude Include="..\libdrizzle\drizzle.h" /> |
|
104 |
<ClInclude Include="..\libdrizzle\drizzle_client.h" /> |
|
105 |
<ClInclude Include="..\libdrizzle\drizzle_local.h" /> |
|
106 |
<ClInclude Include="..\libdrizzle\drizzle_server.h" /> |
|
107 |
<ClInclude Include="windows\errno.h" /> |
|
108 |
<ClInclude Include="..\libdrizzle\field_client.h" /> |
|
109 |
<ClInclude Include="..\libdrizzle\field_server.h" /> |
|
110 |
<ClInclude Include="..\libdrizzle\handshake_client.h" /> |
|
111 |
<ClInclude Include="..\libdrizzle\handshake_server.h" /> |
|
112 |
<ClInclude Include="windows\inttypes.h" /> |
|
113 |
<ClInclude Include="..\libdrizzle\pack.h" /> |
|
114 |
<ClInclude Include="..\libdrizzle\query.h" /> |
|
115 |
<ClInclude Include="..\libdrizzle\result.h" /> |
|
116 |
<ClInclude Include="..\libdrizzle\result_client.h" /> |
|
117 |
<ClInclude Include="..\libdrizzle\result_server.h" /> |
|
118 |
<ClInclude Include="..\libdrizzle\row_client.h" /> |
|
119 |
<ClInclude Include="..\libdrizzle\row_server.h" /> |
|
120 |
<ClInclude Include="..\libdrizzle\sha1.h" /> |
|
121 |
<ClInclude Include="..\libdrizzle\state.h" /> |
|
122 |
<ClInclude Include="windows\stdint.h" /> |
|
123 |
<ClInclude Include="..\libdrizzle\structs.h" /> |
|
124 |
<ClInclude Include="..\libdrizzle\visibility.h" /> |
|
125 |
</ItemGroup>
|
|
126 |
<ItemGroup>
|
|
127 |
<ClCompile Include="..\libdrizzle\column.c" /> |
|
128 |
<ClCompile Include="..\libdrizzle\command.c" /> |
|
129 |
<ClCompile Include="..\libdrizzle\conn.c" /> |
|
130 |
<ClCompile Include="conn_uds.c" /> |
|
131 |
<ClCompile Include="..\libdrizzle\drizzle.c" /> |
|
132 |
<ClCompile Include="..\libdrizzle\field.c" /> |
|
133 |
<ClCompile Include="..\libdrizzle\handshake.c" /> |
|
134 |
<ClCompile Include="..\libdrizzle\pack.c" /> |
|
135 |
<ClCompile Include="..\libdrizzle\query.c" /> |
|
136 |
<ClCompile Include="..\libdrizzle\result.c" /> |
|
137 |
<ClCompile Include="..\libdrizzle\row.c" /> |
|
138 |
<ClCompile Include="..\libdrizzle\sha1.c" /> |
|
139 |
<ClCompile Include="..\libdrizzle\state.c" /> |
|
140 |
</ItemGroup>
|
|
141 |
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
|
142 |
<ImportGroup Label="ExtensionTargets"> |
|
143 |
</ImportGroup>
|
|
2164.1.6
by Monty Taylor
Updated the windows build to be able to build from the command line and not to show warnings on strncpy. |
144 |
</Project>
|