diff options
Diffstat (limited to 'contrib/vstudio')
39 files changed, 3668 insertions, 1566 deletions
diff --git a/contrib/vstudio/readme.txt b/contrib/vstudio/readme.txt index 416fc49..a7b7247 100644 --- a/contrib/vstudio/readme.txt +++ b/contrib/vstudio/readme.txt | |||
@@ -2,7 +2,7 @@ Building instructions for the DLL versions of Zlib 1.2.3 | |||
2 | ======================================================== | 2 | ======================================================== |
3 | 3 | ||
4 | This directory contains projects that build zlib and minizip using | 4 | This directory contains projects that build zlib and minizip using |
5 | Microsoft Visual C++ 7.0/7.1, and Visual C++ . | 5 | Microsoft Visual C++ 7.0/7.1/8.0/9.0/10.0, and Visual C++ . |
6 | 6 | ||
7 | You don't need to build these projects yourself. You can download the | 7 | You don't need to build these projects yourself. You can download the |
8 | binaries from: | 8 | binaries from: |
@@ -10,6 +10,10 @@ binaries from: | |||
10 | 10 | ||
11 | More information can be found at this site. | 11 | More information can be found at this site. |
12 | 12 | ||
13 | first compile assembly code by running | ||
14 | bld_ml64.bat in contrib\masmx64 | ||
15 | bld_ml32.bat in contrib\masmx86 | ||
16 | |||
13 | 17 | ||
14 | Build instructions for Visual Studio 7.x (32 bits) | 18 | Build instructions for Visual Studio 7.x (32 bits) |
15 | -------------------------------------------------- | 19 | -------------------------------------------------- |
@@ -26,7 +30,7 @@ Build instructions for Visual Studio 2005 (32 bits or 64 bits) | |||
26 | - For 32 bits only: download the crtdll library from | 30 | - For 32 bits only: download the crtdll library from |
27 | http://www.winimage.com/zLibDll/crtdll.zip | 31 | http://www.winimage.com/zLibDll/crtdll.zip |
28 | Unzip crtdll.zip to extract crtdll.lib on contrib\vstudio\vc8. | 32 | Unzip crtdll.zip to extract crtdll.lib on contrib\vstudio\vc8. |
29 | - Open contrib\vstudio\vc8\zlibvc.sln with Microsoft Visual C++ 8.0 | 33 | - Open contrib\vstudio\vc8\zlibvc.sln with Microsoft Visual C++ 2005 |
30 | 34 | ||
31 | Build instructions for Visual Studio 2005 64 bits, PSDK compiler | 35 | Build instructions for Visual Studio 2005 64 bits, PSDK compiler |
32 | ---------------------------------------------------------------- | 36 | ---------------------------------------------------------------- |
@@ -39,7 +43,24 @@ see http://www.winimage.com/misc/sdk64onvs2005/ for instruction | |||
39 | - Uncompress current zlib, including all contrib/* files | 43 | - Uncompress current zlib, including all contrib/* files |
40 | - start Visual Studio 2005 from a platform SDK command prompt, using | 44 | - start Visual Studio 2005 from a platform SDK command prompt, using |
41 | the /useenv switch | 45 | the /useenv switch |
42 | - Open contrib\vstudio\vc8\zlibvc.sln with Microsoft Visual C++ 8.0 | 46 | - Open contrib\vstudio\vc8\zlibvc.sln with Microsoft Visual C++ 2005 |
47 | |||
48 | |||
49 | Build instructions for Visual Studio 2008 (32 bits or 64 bits) | ||
50 | -------------------------------------------------------------- | ||
51 | - Uncompress current zlib, including all contrib/* files | ||
52 | - For 32 bits only: download the crtdll library from | ||
53 | http://www.winimage.com/zLibDll/crtdll.zip | ||
54 | Unzip crtdll.zip to extract crtdll.lib on contrib\vstudio\vc9. | ||
55 | - Open contrib\vstudio\vc9\zlibvc.sln with Microsoft Visual C++ 2008.0 | ||
56 | |||
57 | Build instructions for Visual Studio 2010 (32 bits or 64 bits) | ||
58 | -------------------------------------------------------------- | ||
59 | - Uncompress current zlib, including all contrib/* files | ||
60 | - For 32 bits only: download the crtdll library from | ||
61 | http://www.winimage.com/zLibDll/crtdll.zip | ||
62 | Unzip crtdll.zip to extract crtdll.lib on contrib\vstudio\vc10. | ||
63 | - Open contrib\vstudio\vc10\zlibvc.sln with Microsoft Visual C++ 2010.0 | ||
43 | 64 | ||
44 | 65 | ||
45 | Important | 66 | Important |
diff --git a/contrib/vstudio/vc10/miniunz.vcxproj b/contrib/vstudio/vc10/miniunz.vcxproj new file mode 100644 index 0000000..74e15c9 --- /dev/null +++ b/contrib/vstudio/vc10/miniunz.vcxproj | |||
@@ -0,0 +1,310 @@ | |||
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|Itanium"> | ||
5 | <Configuration>Debug</Configuration> | ||
6 | <Platform>Itanium</Platform> | ||
7 | </ProjectConfiguration> | ||
8 | <ProjectConfiguration Include="Debug|Win32"> | ||
9 | <Configuration>Debug</Configuration> | ||
10 | <Platform>Win32</Platform> | ||
11 | </ProjectConfiguration> | ||
12 | <ProjectConfiguration Include="Debug|x64"> | ||
13 | <Configuration>Debug</Configuration> | ||
14 | <Platform>x64</Platform> | ||
15 | </ProjectConfiguration> | ||
16 | <ProjectConfiguration Include="Release|Itanium"> | ||
17 | <Configuration>Release</Configuration> | ||
18 | <Platform>Itanium</Platform> | ||
19 | </ProjectConfiguration> | ||
20 | <ProjectConfiguration Include="Release|Win32"> | ||
21 | <Configuration>Release</Configuration> | ||
22 | <Platform>Win32</Platform> | ||
23 | </ProjectConfiguration> | ||
24 | <ProjectConfiguration Include="Release|x64"> | ||
25 | <Configuration>Release</Configuration> | ||
26 | <Platform>x64</Platform> | ||
27 | </ProjectConfiguration> | ||
28 | </ItemGroup> | ||
29 | <PropertyGroup Label="Globals"> | ||
30 | <ProjectGuid>{C52F9E7B-498A-42BE-8DB4-85A15694382A}</ProjectGuid> | ||
31 | <Keyword>Win32Proj</Keyword> | ||
32 | </PropertyGroup> | ||
33 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
34 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
35 | <ConfigurationType>Application</ConfigurationType> | ||
36 | <CharacterSet>MultiByte</CharacterSet> | ||
37 | </PropertyGroup> | ||
38 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
39 | <ConfigurationType>Application</ConfigurationType> | ||
40 | <CharacterSet>MultiByte</CharacterSet> | ||
41 | </PropertyGroup> | ||
42 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration"> | ||
43 | <ConfigurationType>Application</ConfigurationType> | ||
44 | <CharacterSet>MultiByte</CharacterSet> | ||
45 | </PropertyGroup> | ||
46 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration"> | ||
47 | <ConfigurationType>Application</ConfigurationType> | ||
48 | <CharacterSet>MultiByte</CharacterSet> | ||
49 | </PropertyGroup> | ||
50 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
51 | <ConfigurationType>Application</ConfigurationType> | ||
52 | <CharacterSet>MultiByte</CharacterSet> | ||
53 | </PropertyGroup> | ||
54 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||
55 | <ConfigurationType>Application</ConfigurationType> | ||
56 | <CharacterSet>MultiByte</CharacterSet> | ||
57 | </PropertyGroup> | ||
58 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
59 | <ImportGroup Label="ExtensionSettings"> | ||
60 | </ImportGroup> | ||
61 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | ||
62 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
63 | </ImportGroup> | ||
64 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | ||
65 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
66 | </ImportGroup> | ||
67 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="PropertySheets"> | ||
68 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
69 | </ImportGroup> | ||
70 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="PropertySheets"> | ||
71 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
72 | </ImportGroup> | ||
73 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||
74 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
75 | </ImportGroup> | ||
76 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | ||
77 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
78 | </ImportGroup> | ||
79 | <PropertyGroup Label="UserMacros" /> | ||
80 | <PropertyGroup> | ||
81 | <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> | ||
82 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\MiniUnzip$(Configuration)\</OutDir> | ||
83 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\MiniUnzip$(Configuration)\Tmp\</IntDir> | ||
84 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> | ||
85 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</GenerateManifest> | ||
86 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\MiniUnzip$(Configuration)\</OutDir> | ||
87 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\MiniUnzip$(Configuration)\Tmp\</IntDir> | ||
88 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> | ||
89 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</GenerateManifest> | ||
90 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\MiniUnzip$(Configuration)\</OutDir> | ||
91 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\MiniUnzip$(Configuration)\Tmp\</IntDir> | ||
92 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> | ||
93 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> | ||
94 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\MiniUnzip$(Configuration)\</OutDir> | ||
95 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\MiniUnzip$(Configuration)\Tmp\</IntDir> | ||
96 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</LinkIncremental> | ||
97 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">false</GenerateManifest> | ||
98 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\MiniUnzip$(Configuration)\</OutDir> | ||
99 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\MiniUnzip$(Configuration)\Tmp\</IntDir> | ||
100 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> | ||
101 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</GenerateManifest> | ||
102 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\MiniUnzip$(Configuration)\</OutDir> | ||
103 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\MiniUnzip$(Configuration)\Tmp\</IntDir> | ||
104 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</LinkIncremental> | ||
105 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</GenerateManifest> | ||
106 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
107 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
108 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
109 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
110 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
111 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
112 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
113 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
114 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
115 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
116 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
117 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
118 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
119 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
120 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
121 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
122 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
123 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
124 | </PropertyGroup> | ||
125 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
126 | <ClCompile> | ||
127 | <Optimization>Disabled</Optimization> | ||
128 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
129 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
130 | <MinimalRebuild>true</MinimalRebuild> | ||
131 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
132 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
133 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
134 | <PrecompiledHeader> | ||
135 | </PrecompiledHeader> | ||
136 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
137 | <WarningLevel>Level3</WarningLevel> | ||
138 | <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||
139 | </ClCompile> | ||
140 | <Link> | ||
141 | <AdditionalDependencies>x86\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
142 | <OutputFile>$(OutDir)miniunz.exe</OutputFile> | ||
143 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
144 | <ProgramDatabaseFile>$(OutDir)miniunz.pdb</ProgramDatabaseFile> | ||
145 | <SubSystem>Console</SubSystem> | ||
146 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
147 | <DataExecutionPrevention> | ||
148 | </DataExecutionPrevention> | ||
149 | <TargetMachine>MachineX86</TargetMachine> | ||
150 | </Link> | ||
151 | </ItemDefinitionGroup> | ||
152 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
153 | <ClCompile> | ||
154 | <Optimization>MaxSpeed</Optimization> | ||
155 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
156 | <OmitFramePointers>true</OmitFramePointers> | ||
157 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
158 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
159 | <StringPooling>true</StringPooling> | ||
160 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
161 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
162 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
163 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
164 | <PrecompiledHeader> | ||
165 | </PrecompiledHeader> | ||
166 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
167 | <WarningLevel>Level3</WarningLevel> | ||
168 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
169 | </ClCompile> | ||
170 | <Link> | ||
171 | <AdditionalDependencies>x86\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
172 | <OutputFile>$(OutDir)miniunz.exe</OutputFile> | ||
173 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
174 | <SubSystem>Console</SubSystem> | ||
175 | <OptimizeReferences>true</OptimizeReferences> | ||
176 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
177 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
178 | <DataExecutionPrevention> | ||
179 | </DataExecutionPrevention> | ||
180 | <TargetMachine>MachineX86</TargetMachine> | ||
181 | </Link> | ||
182 | </ItemDefinitionGroup> | ||
183 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
184 | <Midl> | ||
185 | <TargetEnvironment>X64</TargetEnvironment> | ||
186 | </Midl> | ||
187 | <ClCompile> | ||
188 | <Optimization>Disabled</Optimization> | ||
189 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
190 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
191 | <MinimalRebuild>true</MinimalRebuild> | ||
192 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
193 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
194 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
195 | <PrecompiledHeader> | ||
196 | </PrecompiledHeader> | ||
197 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
198 | <WarningLevel>Level3</WarningLevel> | ||
199 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
200 | </ClCompile> | ||
201 | <Link> | ||
202 | <AdditionalDependencies>x64\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
203 | <OutputFile>$(OutDir)miniunz.exe</OutputFile> | ||
204 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
205 | <ProgramDatabaseFile>$(OutDir)miniunz.pdb</ProgramDatabaseFile> | ||
206 | <SubSystem>Console</SubSystem> | ||
207 | <TargetMachine>MachineX64</TargetMachine> | ||
208 | </Link> | ||
209 | </ItemDefinitionGroup> | ||
210 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'"> | ||
211 | <Midl> | ||
212 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
213 | </Midl> | ||
214 | <ClCompile> | ||
215 | <Optimization>Disabled</Optimization> | ||
216 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
217 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
218 | <MinimalRebuild>true</MinimalRebuild> | ||
219 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
220 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
221 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
222 | <PrecompiledHeader> | ||
223 | </PrecompiledHeader> | ||
224 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
225 | <WarningLevel>Level3</WarningLevel> | ||
226 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
227 | </ClCompile> | ||
228 | <Link> | ||
229 | <AdditionalDependencies>ia64\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
230 | <OutputFile>$(OutDir)miniunz.exe</OutputFile> | ||
231 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
232 | <ProgramDatabaseFile>$(OutDir)miniunz.pdb</ProgramDatabaseFile> | ||
233 | <SubSystem>Console</SubSystem> | ||
234 | <TargetMachine>MachineIA64</TargetMachine> | ||
235 | </Link> | ||
236 | </ItemDefinitionGroup> | ||
237 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
238 | <Midl> | ||
239 | <TargetEnvironment>X64</TargetEnvironment> | ||
240 | </Midl> | ||
241 | <ClCompile> | ||
242 | <Optimization>MaxSpeed</Optimization> | ||
243 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
244 | <OmitFramePointers>true</OmitFramePointers> | ||
245 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
246 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
247 | <StringPooling>true</StringPooling> | ||
248 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
249 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
250 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
251 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
252 | <PrecompiledHeader> | ||
253 | </PrecompiledHeader> | ||
254 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
255 | <WarningLevel>Level3</WarningLevel> | ||
256 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
257 | </ClCompile> | ||
258 | <Link> | ||
259 | <AdditionalDependencies>x64\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
260 | <OutputFile>$(OutDir)miniunz.exe</OutputFile> | ||
261 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
262 | <SubSystem>Console</SubSystem> | ||
263 | <OptimizeReferences>true</OptimizeReferences> | ||
264 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
265 | <TargetMachine>MachineX64</TargetMachine> | ||
266 | </Link> | ||
267 | </ItemDefinitionGroup> | ||
268 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'"> | ||
269 | <Midl> | ||
270 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
271 | </Midl> | ||
272 | <ClCompile> | ||
273 | <Optimization>MaxSpeed</Optimization> | ||
274 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
275 | <OmitFramePointers>true</OmitFramePointers> | ||
276 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
277 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
278 | <StringPooling>true</StringPooling> | ||
279 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
280 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
281 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
282 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
283 | <PrecompiledHeader> | ||
284 | </PrecompiledHeader> | ||
285 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
286 | <WarningLevel>Level3</WarningLevel> | ||
287 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
288 | </ClCompile> | ||
289 | <Link> | ||
290 | <AdditionalDependencies>ia64\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
291 | <OutputFile>$(OutDir)miniunz.exe</OutputFile> | ||
292 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
293 | <SubSystem>Console</SubSystem> | ||
294 | <OptimizeReferences>true</OptimizeReferences> | ||
295 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
296 | <TargetMachine>MachineIA64</TargetMachine> | ||
297 | </Link> | ||
298 | </ItemDefinitionGroup> | ||
299 | <ItemGroup> | ||
300 | <ClCompile Include="..\..\minizip\miniunz.c" /> | ||
301 | </ItemGroup> | ||
302 | <ItemGroup> | ||
303 | <ProjectReference Include="zlibvc.vcxproj"> | ||
304 | <Project>{8fd826f8-3739-44e6-8cc8-997122e53b8d}</Project> | ||
305 | </ProjectReference> | ||
306 | </ItemGroup> | ||
307 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
308 | <ImportGroup Label="ExtensionTargets"> | ||
309 | </ImportGroup> | ||
310 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/miniunz.vcxproj.filters b/contrib/vstudio/vc10/miniunz.vcxproj.filters new file mode 100644 index 0000000..0b2a3de --- /dev/null +++ b/contrib/vstudio/vc10/miniunz.vcxproj.filters | |||
@@ -0,0 +1,22 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <ItemGroup> | ||
4 | <Filter Include="Source Files"> | ||
5 | <UniqueIdentifier>{048af943-022b-4db6-beeb-a54c34774ee2}</UniqueIdentifier> | ||
6 | <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm</Extensions> | ||
7 | </Filter> | ||
8 | <Filter Include="Header Files"> | ||
9 | <UniqueIdentifier>{c1d600d2-888f-4aea-b73e-8b0dd9befa0c}</UniqueIdentifier> | ||
10 | <Extensions>h;hpp;hxx;hm;inl;inc</Extensions> | ||
11 | </Filter> | ||
12 | <Filter Include="Resource Files"> | ||
13 | <UniqueIdentifier>{0844199a-966b-4f19-81db-1e0125e141b9}</UniqueIdentifier> | ||
14 | <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions> | ||
15 | </Filter> | ||
16 | </ItemGroup> | ||
17 | <ItemGroup> | ||
18 | <ClCompile Include="..\..\minizip\miniunz.c"> | ||
19 | <Filter>Source Files</Filter> | ||
20 | </ClCompile> | ||
21 | </ItemGroup> | ||
22 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/miniunz.vcxproj.user b/contrib/vstudio/vc10/miniunz.vcxproj.user new file mode 100644 index 0000000..695b5c7 --- /dev/null +++ b/contrib/vstudio/vc10/miniunz.vcxproj.user | |||
@@ -0,0 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/minizip.vcxproj b/contrib/vstudio/vc10/minizip.vcxproj new file mode 100644 index 0000000..917e156 --- /dev/null +++ b/contrib/vstudio/vc10/minizip.vcxproj | |||
@@ -0,0 +1,307 @@ | |||
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|Itanium"> | ||
5 | <Configuration>Debug</Configuration> | ||
6 | <Platform>Itanium</Platform> | ||
7 | </ProjectConfiguration> | ||
8 | <ProjectConfiguration Include="Debug|Win32"> | ||
9 | <Configuration>Debug</Configuration> | ||
10 | <Platform>Win32</Platform> | ||
11 | </ProjectConfiguration> | ||
12 | <ProjectConfiguration Include="Debug|x64"> | ||
13 | <Configuration>Debug</Configuration> | ||
14 | <Platform>x64</Platform> | ||
15 | </ProjectConfiguration> | ||
16 | <ProjectConfiguration Include="Release|Itanium"> | ||
17 | <Configuration>Release</Configuration> | ||
18 | <Platform>Itanium</Platform> | ||
19 | </ProjectConfiguration> | ||
20 | <ProjectConfiguration Include="Release|Win32"> | ||
21 | <Configuration>Release</Configuration> | ||
22 | <Platform>Win32</Platform> | ||
23 | </ProjectConfiguration> | ||
24 | <ProjectConfiguration Include="Release|x64"> | ||
25 | <Configuration>Release</Configuration> | ||
26 | <Platform>x64</Platform> | ||
27 | </ProjectConfiguration> | ||
28 | </ItemGroup> | ||
29 | <PropertyGroup Label="Globals"> | ||
30 | <ProjectGuid>{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}</ProjectGuid> | ||
31 | <Keyword>Win32Proj</Keyword> | ||
32 | </PropertyGroup> | ||
33 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
34 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
35 | <ConfigurationType>Application</ConfigurationType> | ||
36 | <CharacterSet>MultiByte</CharacterSet> | ||
37 | </PropertyGroup> | ||
38 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
39 | <ConfigurationType>Application</ConfigurationType> | ||
40 | <CharacterSet>MultiByte</CharacterSet> | ||
41 | </PropertyGroup> | ||
42 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration"> | ||
43 | <ConfigurationType>Application</ConfigurationType> | ||
44 | <CharacterSet>MultiByte</CharacterSet> | ||
45 | </PropertyGroup> | ||
46 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration"> | ||
47 | <ConfigurationType>Application</ConfigurationType> | ||
48 | <CharacterSet>MultiByte</CharacterSet> | ||
49 | </PropertyGroup> | ||
50 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
51 | <ConfigurationType>Application</ConfigurationType> | ||
52 | <CharacterSet>MultiByte</CharacterSet> | ||
53 | </PropertyGroup> | ||
54 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||
55 | <ConfigurationType>Application</ConfigurationType> | ||
56 | <CharacterSet>MultiByte</CharacterSet> | ||
57 | </PropertyGroup> | ||
58 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
59 | <ImportGroup Label="ExtensionSettings"> | ||
60 | </ImportGroup> | ||
61 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | ||
62 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
63 | </ImportGroup> | ||
64 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | ||
65 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
66 | </ImportGroup> | ||
67 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="PropertySheets"> | ||
68 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
69 | </ImportGroup> | ||
70 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="PropertySheets"> | ||
71 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
72 | </ImportGroup> | ||
73 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||
74 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
75 | </ImportGroup> | ||
76 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | ||
77 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
78 | </ImportGroup> | ||
79 | <PropertyGroup Label="UserMacros" /> | ||
80 | <PropertyGroup> | ||
81 | <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> | ||
82 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\MiniZip$(Configuration)\</OutDir> | ||
83 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\MiniZip$(Configuration)\Tmp\</IntDir> | ||
84 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> | ||
85 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</GenerateManifest> | ||
86 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\MiniZip$(Configuration)\</OutDir> | ||
87 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\MiniZip$(Configuration)\Tmp\</IntDir> | ||
88 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> | ||
89 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\$(Configuration)\</OutDir> | ||
90 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\$(Configuration)\</IntDir> | ||
91 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> | ||
92 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> | ||
93 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\$(Configuration)\</OutDir> | ||
94 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\$(Configuration)\</IntDir> | ||
95 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</LinkIncremental> | ||
96 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">false</GenerateManifest> | ||
97 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\$(Configuration)\</OutDir> | ||
98 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\$(Configuration)\</IntDir> | ||
99 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> | ||
100 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\$(Configuration)\</OutDir> | ||
101 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\$(Configuration)\</IntDir> | ||
102 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</LinkIncremental> | ||
103 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
104 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
105 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
106 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
107 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
108 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
109 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
110 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
111 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
112 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
113 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
114 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
115 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
116 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
117 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
118 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
119 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
120 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
121 | </PropertyGroup> | ||
122 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
123 | <ClCompile> | ||
124 | <Optimization>Disabled</Optimization> | ||
125 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
126 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
127 | <MinimalRebuild>true</MinimalRebuild> | ||
128 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
129 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
130 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
131 | <PrecompiledHeader> | ||
132 | </PrecompiledHeader> | ||
133 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
134 | <WarningLevel>Level3</WarningLevel> | ||
135 | <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||
136 | </ClCompile> | ||
137 | <Link> | ||
138 | <AdditionalDependencies>x86\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
139 | <OutputFile>$(OutDir)minizip.exe</OutputFile> | ||
140 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
141 | <ProgramDatabaseFile>$(OutDir)minizip.pdb</ProgramDatabaseFile> | ||
142 | <SubSystem>Console</SubSystem> | ||
143 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
144 | <DataExecutionPrevention> | ||
145 | </DataExecutionPrevention> | ||
146 | <TargetMachine>MachineX86</TargetMachine> | ||
147 | </Link> | ||
148 | </ItemDefinitionGroup> | ||
149 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
150 | <ClCompile> | ||
151 | <Optimization>MaxSpeed</Optimization> | ||
152 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
153 | <OmitFramePointers>true</OmitFramePointers> | ||
154 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
155 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
156 | <StringPooling>true</StringPooling> | ||
157 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
158 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
159 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
160 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
161 | <PrecompiledHeader> | ||
162 | </PrecompiledHeader> | ||
163 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
164 | <WarningLevel>Level3</WarningLevel> | ||
165 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
166 | </ClCompile> | ||
167 | <Link> | ||
168 | <AdditionalDependencies>x86\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
169 | <OutputFile>$(OutDir)minizip.exe</OutputFile> | ||
170 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
171 | <SubSystem>Console</SubSystem> | ||
172 | <OptimizeReferences>true</OptimizeReferences> | ||
173 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
174 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
175 | <DataExecutionPrevention> | ||
176 | </DataExecutionPrevention> | ||
177 | <TargetMachine>MachineX86</TargetMachine> | ||
178 | </Link> | ||
179 | </ItemDefinitionGroup> | ||
180 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
181 | <Midl> | ||
182 | <TargetEnvironment>X64</TargetEnvironment> | ||
183 | </Midl> | ||
184 | <ClCompile> | ||
185 | <Optimization>Disabled</Optimization> | ||
186 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
187 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
188 | <MinimalRebuild>true</MinimalRebuild> | ||
189 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
190 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
191 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
192 | <PrecompiledHeader> | ||
193 | </PrecompiledHeader> | ||
194 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
195 | <WarningLevel>Level3</WarningLevel> | ||
196 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
197 | </ClCompile> | ||
198 | <Link> | ||
199 | <AdditionalDependencies>x64\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
200 | <OutputFile>$(OutDir)minizip.exe</OutputFile> | ||
201 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
202 | <ProgramDatabaseFile>$(OutDir)minizip.pdb</ProgramDatabaseFile> | ||
203 | <SubSystem>Console</SubSystem> | ||
204 | <TargetMachine>MachineX64</TargetMachine> | ||
205 | </Link> | ||
206 | </ItemDefinitionGroup> | ||
207 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'"> | ||
208 | <Midl> | ||
209 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
210 | </Midl> | ||
211 | <ClCompile> | ||
212 | <Optimization>Disabled</Optimization> | ||
213 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
214 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
215 | <MinimalRebuild>true</MinimalRebuild> | ||
216 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
217 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
218 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
219 | <PrecompiledHeader> | ||
220 | </PrecompiledHeader> | ||
221 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
222 | <WarningLevel>Level3</WarningLevel> | ||
223 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
224 | </ClCompile> | ||
225 | <Link> | ||
226 | <AdditionalDependencies>ia64\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
227 | <OutputFile>$(OutDir)minizip.exe</OutputFile> | ||
228 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
229 | <ProgramDatabaseFile>$(OutDir)minizip.pdb</ProgramDatabaseFile> | ||
230 | <SubSystem>Console</SubSystem> | ||
231 | <TargetMachine>MachineIA64</TargetMachine> | ||
232 | </Link> | ||
233 | </ItemDefinitionGroup> | ||
234 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
235 | <Midl> | ||
236 | <TargetEnvironment>X64</TargetEnvironment> | ||
237 | </Midl> | ||
238 | <ClCompile> | ||
239 | <Optimization>MaxSpeed</Optimization> | ||
240 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
241 | <OmitFramePointers>true</OmitFramePointers> | ||
242 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
243 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
244 | <StringPooling>true</StringPooling> | ||
245 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
246 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
247 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
248 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
249 | <PrecompiledHeader> | ||
250 | </PrecompiledHeader> | ||
251 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
252 | <WarningLevel>Level3</WarningLevel> | ||
253 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
254 | </ClCompile> | ||
255 | <Link> | ||
256 | <AdditionalDependencies>x64\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
257 | <OutputFile>$(OutDir)minizip.exe</OutputFile> | ||
258 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
259 | <SubSystem>Console</SubSystem> | ||
260 | <OptimizeReferences>true</OptimizeReferences> | ||
261 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
262 | <TargetMachine>MachineX64</TargetMachine> | ||
263 | </Link> | ||
264 | </ItemDefinitionGroup> | ||
265 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'"> | ||
266 | <Midl> | ||
267 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
268 | </Midl> | ||
269 | <ClCompile> | ||
270 | <Optimization>MaxSpeed</Optimization> | ||
271 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
272 | <OmitFramePointers>true</OmitFramePointers> | ||
273 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
274 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
275 | <StringPooling>true</StringPooling> | ||
276 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
277 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
278 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
279 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
280 | <PrecompiledHeader> | ||
281 | </PrecompiledHeader> | ||
282 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
283 | <WarningLevel>Level3</WarningLevel> | ||
284 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
285 | </ClCompile> | ||
286 | <Link> | ||
287 | <AdditionalDependencies>ia64\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
288 | <OutputFile>$(OutDir)minizip.exe</OutputFile> | ||
289 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
290 | <SubSystem>Console</SubSystem> | ||
291 | <OptimizeReferences>true</OptimizeReferences> | ||
292 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
293 | <TargetMachine>MachineIA64</TargetMachine> | ||
294 | </Link> | ||
295 | </ItemDefinitionGroup> | ||
296 | <ItemGroup> | ||
297 | <ClCompile Include="..\..\minizip\minizip.c" /> | ||
298 | </ItemGroup> | ||
299 | <ItemGroup> | ||
300 | <ProjectReference Include="zlibvc.vcxproj"> | ||
301 | <Project>{8fd826f8-3739-44e6-8cc8-997122e53b8d}</Project> | ||
302 | </ProjectReference> | ||
303 | </ItemGroup> | ||
304 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
305 | <ImportGroup Label="ExtensionTargets"> | ||
306 | </ImportGroup> | ||
307 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/minizip.vcxproj.filters b/contrib/vstudio/vc10/minizip.vcxproj.filters new file mode 100644 index 0000000..dd73cd3 --- /dev/null +++ b/contrib/vstudio/vc10/minizip.vcxproj.filters | |||
@@ -0,0 +1,22 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <ItemGroup> | ||
4 | <Filter Include="Source Files"> | ||
5 | <UniqueIdentifier>{c0419b40-bf50-40da-b153-ff74215b79de}</UniqueIdentifier> | ||
6 | <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm</Extensions> | ||
7 | </Filter> | ||
8 | <Filter Include="Header Files"> | ||
9 | <UniqueIdentifier>{bb87b070-735b-478e-92ce-7383abb2f36c}</UniqueIdentifier> | ||
10 | <Extensions>h;hpp;hxx;hm;inl;inc</Extensions> | ||
11 | </Filter> | ||
12 | <Filter Include="Resource Files"> | ||
13 | <UniqueIdentifier>{f46ab6a6-548f-43cb-ae96-681abb5bd5db}</UniqueIdentifier> | ||
14 | <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions> | ||
15 | </Filter> | ||
16 | </ItemGroup> | ||
17 | <ItemGroup> | ||
18 | <ClCompile Include="..\..\minizip\minizip.c"> | ||
19 | <Filter>Source Files</Filter> | ||
20 | </ClCompile> | ||
21 | </ItemGroup> | ||
22 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/minizip.vcxproj.user b/contrib/vstudio/vc10/minizip.vcxproj.user new file mode 100644 index 0000000..695b5c7 --- /dev/null +++ b/contrib/vstudio/vc10/minizip.vcxproj.user | |||
@@ -0,0 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/testzlib.vcxproj b/contrib/vstudio/vc10/testzlib.vcxproj new file mode 100644 index 0000000..9810412 --- /dev/null +++ b/contrib/vstudio/vc10/testzlib.vcxproj | |||
@@ -0,0 +1,428 @@ | |||
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|Itanium"> | ||
5 | <Configuration>Debug</Configuration> | ||
6 | <Platform>Itanium</Platform> | ||
7 | </ProjectConfiguration> | ||
8 | <ProjectConfiguration Include="Debug|Win32"> | ||
9 | <Configuration>Debug</Configuration> | ||
10 | <Platform>Win32</Platform> | ||
11 | </ProjectConfiguration> | ||
12 | <ProjectConfiguration Include="Debug|x64"> | ||
13 | <Configuration>Debug</Configuration> | ||
14 | <Platform>x64</Platform> | ||
15 | </ProjectConfiguration> | ||
16 | <ProjectConfiguration Include="ReleaseWithoutAsm|Itanium"> | ||
17 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
18 | <Platform>Itanium</Platform> | ||
19 | </ProjectConfiguration> | ||
20 | <ProjectConfiguration Include="ReleaseWithoutAsm|Win32"> | ||
21 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
22 | <Platform>Win32</Platform> | ||
23 | </ProjectConfiguration> | ||
24 | <ProjectConfiguration Include="ReleaseWithoutAsm|x64"> | ||
25 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
26 | <Platform>x64</Platform> | ||
27 | </ProjectConfiguration> | ||
28 | <ProjectConfiguration Include="Release|Itanium"> | ||
29 | <Configuration>Release</Configuration> | ||
30 | <Platform>Itanium</Platform> | ||
31 | </ProjectConfiguration> | ||
32 | <ProjectConfiguration Include="Release|Win32"> | ||
33 | <Configuration>Release</Configuration> | ||
34 | <Platform>Win32</Platform> | ||
35 | </ProjectConfiguration> | ||
36 | <ProjectConfiguration Include="Release|x64"> | ||
37 | <Configuration>Release</Configuration> | ||
38 | <Platform>x64</Platform> | ||
39 | </ProjectConfiguration> | ||
40 | </ItemGroup> | ||
41 | <PropertyGroup Label="Globals"> | ||
42 | <ProjectGuid>{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}</ProjectGuid> | ||
43 | <RootNamespace>testzlib</RootNamespace> | ||
44 | <Keyword>Win32Proj</Keyword> | ||
45 | </PropertyGroup> | ||
46 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
47 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
48 | <ConfigurationType>Application</ConfigurationType> | ||
49 | <CharacterSet>MultiByte</CharacterSet> | ||
50 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
51 | </PropertyGroup> | ||
52 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Configuration"> | ||
53 | <ConfigurationType>Application</ConfigurationType> | ||
54 | <CharacterSet>MultiByte</CharacterSet> | ||
55 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
56 | </PropertyGroup> | ||
57 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
58 | <ConfigurationType>Application</ConfigurationType> | ||
59 | <CharacterSet>MultiByte</CharacterSet> | ||
60 | </PropertyGroup> | ||
61 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration"> | ||
62 | <ConfigurationType>Application</ConfigurationType> | ||
63 | <CharacterSet>MultiByte</CharacterSet> | ||
64 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
65 | </PropertyGroup> | ||
66 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Configuration"> | ||
67 | <ConfigurationType>Application</ConfigurationType> | ||
68 | <CharacterSet>MultiByte</CharacterSet> | ||
69 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
70 | </PropertyGroup> | ||
71 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration"> | ||
72 | <ConfigurationType>Application</ConfigurationType> | ||
73 | <CharacterSet>MultiByte</CharacterSet> | ||
74 | </PropertyGroup> | ||
75 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
76 | <ConfigurationType>Application</ConfigurationType> | ||
77 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
78 | </PropertyGroup> | ||
79 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configuration"> | ||
80 | <ConfigurationType>Application</ConfigurationType> | ||
81 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
82 | </PropertyGroup> | ||
83 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||
84 | <ConfigurationType>Application</ConfigurationType> | ||
85 | </PropertyGroup> | ||
86 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
87 | <ImportGroup Label="ExtensionSettings"> | ||
88 | </ImportGroup> | ||
89 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | ||
90 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
91 | </ImportGroup> | ||
92 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="PropertySheets"> | ||
93 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
94 | </ImportGroup> | ||
95 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | ||
96 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
97 | </ImportGroup> | ||
98 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="PropertySheets"> | ||
99 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
100 | </ImportGroup> | ||
101 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="PropertySheets"> | ||
102 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
103 | </ImportGroup> | ||
104 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="PropertySheets"> | ||
105 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
106 | </ImportGroup> | ||
107 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||
108 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
109 | </ImportGroup> | ||
110 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="PropertySheets"> | ||
111 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
112 | </ImportGroup> | ||
113 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | ||
114 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
115 | </ImportGroup> | ||
116 | <PropertyGroup Label="UserMacros" /> | ||
117 | <PropertyGroup> | ||
118 | <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> | ||
119 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\TestZlib$(Configuration)\</OutDir> | ||
120 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\TestZlib$(Configuration)\Tmp\</IntDir> | ||
121 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> | ||
122 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</GenerateManifest> | ||
123 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\TestZlib$(Configuration)\</OutDir> | ||
124 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\TestZlib$(Configuration)\Tmp\</IntDir> | ||
125 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">false</LinkIncremental> | ||
126 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">false</GenerateManifest> | ||
127 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\TestZlib$(Configuration)\</OutDir> | ||
128 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\TestZlib$(Configuration)\Tmp\</IntDir> | ||
129 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> | ||
130 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</GenerateManifest> | ||
131 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\TestZlib$(Configuration)\</OutDir> | ||
132 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\TestZlib$(Configuration)\Tmp\</IntDir> | ||
133 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> | ||
134 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\TestZlib$(Configuration)\</OutDir> | ||
135 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\TestZlib$(Configuration)\Tmp\</IntDir> | ||
136 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</LinkIncremental> | ||
137 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">false</GenerateManifest> | ||
138 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\TestZlib$(Configuration)\</OutDir> | ||
139 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\TestZlib$(Configuration)\Tmp\</IntDir> | ||
140 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">false</GenerateManifest> | ||
141 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\TestZlib$(Configuration)\</OutDir> | ||
142 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\TestZlib$(Configuration)\Tmp\</IntDir> | ||
143 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">false</LinkIncremental> | ||
144 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">false</GenerateManifest> | ||
145 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\TestZlib$(Configuration)\</OutDir> | ||
146 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\TestZlib$(Configuration)\Tmp\</IntDir> | ||
147 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</GenerateManifest> | ||
148 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\TestZlib$(Configuration)\</OutDir> | ||
149 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\TestZlib$(Configuration)\Tmp\</IntDir> | ||
150 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</LinkIncremental> | ||
151 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</GenerateManifest> | ||
152 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
153 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
154 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
155 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
156 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
157 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
158 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
159 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
160 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
161 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
162 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> | ||
163 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> | ||
164 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
165 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> | ||
166 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> | ||
167 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
168 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> | ||
169 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> | ||
170 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
171 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
172 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
173 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
174 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
175 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
176 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
177 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
178 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
179 | </PropertyGroup> | ||
180 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
181 | <ClCompile> | ||
182 | <Optimization>Disabled</Optimization> | ||
183 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
184 | <PreprocessorDefinitions>ASMV;ASMINF;WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
185 | <MinimalRebuild>true</MinimalRebuild> | ||
186 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
187 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
188 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
189 | <PrecompiledHeader> | ||
190 | </PrecompiledHeader> | ||
191 | <AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput> | ||
192 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
193 | <WarningLevel>Level3</WarningLevel> | ||
194 | <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||
195 | </ClCompile> | ||
196 | <Link> | ||
197 | <AdditionalDependencies>..\..\masmx86\gvmat32.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
198 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
199 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
200 | <ProgramDatabaseFile>$(OutDir)testzlib.pdb</ProgramDatabaseFile> | ||
201 | <SubSystem>Console</SubSystem> | ||
202 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
203 | <DataExecutionPrevention> | ||
204 | </DataExecutionPrevention> | ||
205 | <TargetMachine>MachineX86</TargetMachine> | ||
206 | </Link> | ||
207 | </ItemDefinitionGroup> | ||
208 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'"> | ||
209 | <ClCompile> | ||
210 | <Optimization>MaxSpeed</Optimization> | ||
211 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
212 | <OmitFramePointers>true</OmitFramePointers> | ||
213 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
214 | <PreprocessorDefinitions>WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
215 | <StringPooling>true</StringPooling> | ||
216 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
217 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
218 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
219 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
220 | <PrecompiledHeader> | ||
221 | </PrecompiledHeader> | ||
222 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
223 | <WarningLevel>Level3</WarningLevel> | ||
224 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
225 | </ClCompile> | ||
226 | <Link> | ||
227 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
228 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
229 | <SubSystem>Console</SubSystem> | ||
230 | <OptimizeReferences>true</OptimizeReferences> | ||
231 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
232 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
233 | <DataExecutionPrevention> | ||
234 | </DataExecutionPrevention> | ||
235 | <TargetMachine>MachineX86</TargetMachine> | ||
236 | </Link> | ||
237 | </ItemDefinitionGroup> | ||
238 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
239 | <ClCompile> | ||
240 | <Optimization>MaxSpeed</Optimization> | ||
241 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
242 | <OmitFramePointers>true</OmitFramePointers> | ||
243 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
244 | <PreprocessorDefinitions>ASMV;ASMINF;WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
245 | <StringPooling>true</StringPooling> | ||
246 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
247 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
248 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
249 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
250 | <PrecompiledHeader> | ||
251 | </PrecompiledHeader> | ||
252 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
253 | <WarningLevel>Level3</WarningLevel> | ||
254 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
255 | </ClCompile> | ||
256 | <Link> | ||
257 | <AdditionalDependencies>..\..\masmx86\gvmat32.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
258 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
259 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
260 | <SubSystem>Console</SubSystem> | ||
261 | <OptimizeReferences>true</OptimizeReferences> | ||
262 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
263 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
264 | <DataExecutionPrevention> | ||
265 | </DataExecutionPrevention> | ||
266 | <TargetMachine>MachineX86</TargetMachine> | ||
267 | </Link> | ||
268 | </ItemDefinitionGroup> | ||
269 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
270 | <ClCompile> | ||
271 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
272 | <PreprocessorDefinitions>ASMV;ASMINF;WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
273 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
274 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
275 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
276 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
277 | </ClCompile> | ||
278 | <Link> | ||
279 | <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
280 | </Link> | ||
281 | </ItemDefinitionGroup> | ||
282 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'"> | ||
283 | <Midl> | ||
284 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
285 | </Midl> | ||
286 | <ClCompile> | ||
287 | <Optimization>Disabled</Optimization> | ||
288 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
289 | <PreprocessorDefinitions>ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
290 | <MinimalRebuild>true</MinimalRebuild> | ||
291 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
292 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
293 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
294 | <PrecompiledHeader> | ||
295 | </PrecompiledHeader> | ||
296 | <AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput> | ||
297 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
298 | <WarningLevel>Level3</WarningLevel> | ||
299 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
300 | </ClCompile> | ||
301 | <Link> | ||
302 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
303 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
304 | <ProgramDatabaseFile>$(OutDir)testzlib.pdb</ProgramDatabaseFile> | ||
305 | <SubSystem>Console</SubSystem> | ||
306 | <TargetMachine>MachineIA64</TargetMachine> | ||
307 | </Link> | ||
308 | </ItemDefinitionGroup> | ||
309 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'"> | ||
310 | <ClCompile> | ||
311 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
312 | <PreprocessorDefinitions>WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
313 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
314 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
315 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
316 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
317 | </ClCompile> | ||
318 | <Link> | ||
319 | <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> | ||
320 | </Link> | ||
321 | </ItemDefinitionGroup> | ||
322 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'"> | ||
323 | <Midl> | ||
324 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
325 | </Midl> | ||
326 | <ClCompile> | ||
327 | <Optimization>MaxSpeed</Optimization> | ||
328 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
329 | <OmitFramePointers>true</OmitFramePointers> | ||
330 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
331 | <PreprocessorDefinitions>ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
332 | <StringPooling>true</StringPooling> | ||
333 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
334 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
335 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
336 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
337 | <PrecompiledHeader> | ||
338 | </PrecompiledHeader> | ||
339 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
340 | <WarningLevel>Level3</WarningLevel> | ||
341 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
342 | </ClCompile> | ||
343 | <Link> | ||
344 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
345 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
346 | <SubSystem>Console</SubSystem> | ||
347 | <OptimizeReferences>true</OptimizeReferences> | ||
348 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
349 | <TargetMachine>MachineIA64</TargetMachine> | ||
350 | </Link> | ||
351 | </ItemDefinitionGroup> | ||
352 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
353 | <ClCompile> | ||
354 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
355 | <PreprocessorDefinitions>ASMV;ASMINF;WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
356 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
357 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
358 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
359 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
360 | </ClCompile> | ||
361 | <Link> | ||
362 | <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
363 | </Link> | ||
364 | </ItemDefinitionGroup> | ||
365 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'"> | ||
366 | <Midl> | ||
367 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
368 | </Midl> | ||
369 | <ClCompile> | ||
370 | <Optimization>MaxSpeed</Optimization> | ||
371 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
372 | <OmitFramePointers>true</OmitFramePointers> | ||
373 | <AdditionalIncludeDirectories>..\..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
374 | <PreprocessorDefinitions>ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
375 | <StringPooling>true</StringPooling> | ||
376 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
377 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
378 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
379 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
380 | <PrecompiledHeader> | ||
381 | </PrecompiledHeader> | ||
382 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
383 | <WarningLevel>Level3</WarningLevel> | ||
384 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
385 | </ClCompile> | ||
386 | <Link> | ||
387 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
388 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
389 | <SubSystem>Console</SubSystem> | ||
390 | <OptimizeReferences>true</OptimizeReferences> | ||
391 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
392 | <TargetMachine>MachineIA64</TargetMachine> | ||
393 | </Link> | ||
394 | </ItemDefinitionGroup> | ||
395 | <ItemGroup> | ||
396 | <ClCompile Include="..\..\..\adler32.c" /> | ||
397 | <ClCompile Include="..\..\..\compress.c" /> | ||
398 | <ClCompile Include="..\..\..\crc32.c" /> | ||
399 | <ClCompile Include="..\..\..\deflate.c" /> | ||
400 | <ClCompile Include="..\..\masmx86\gvmat32c.c"> | ||
401 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</ExcludedFromBuild> | ||
402 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> | ||
403 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">true</ExcludedFromBuild> | ||
404 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">true</ExcludedFromBuild> | ||
405 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">true</ExcludedFromBuild> | ||
406 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> | ||
407 | </ClCompile> | ||
408 | <ClCompile Include="..\..\..\infback.c" /> | ||
409 | <ClCompile Include="..\..\masmx64\inffas8664.c"> | ||
410 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</ExcludedFromBuild> | ||
411 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> | ||
412 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">true</ExcludedFromBuild> | ||
413 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">true</ExcludedFromBuild> | ||
414 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">true</ExcludedFromBuild> | ||
415 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> | ||
416 | </ClCompile> | ||
417 | <ClCompile Include="..\..\..\inffast.c" /> | ||
418 | <ClCompile Include="..\..\..\inflate.c" /> | ||
419 | <ClCompile Include="..\..\..\inftrees.c" /> | ||
420 | <ClCompile Include="..\..\testzlib\testzlib.c" /> | ||
421 | <ClCompile Include="..\..\..\trees.c" /> | ||
422 | <ClCompile Include="..\..\..\uncompr.c" /> | ||
423 | <ClCompile Include="..\..\..\zutil.c" /> | ||
424 | </ItemGroup> | ||
425 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
426 | <ImportGroup Label="ExtensionTargets"> | ||
427 | </ImportGroup> | ||
428 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/testzlib.vcxproj.filters b/contrib/vstudio/vc10/testzlib.vcxproj.filters new file mode 100644 index 0000000..a0d9b23 --- /dev/null +++ b/contrib/vstudio/vc10/testzlib.vcxproj.filters | |||
@@ -0,0 +1,61 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <ItemGroup> | ||
4 | <Filter Include="Source Files"> | ||
5 | <UniqueIdentifier>{c1f6a2e3-5da5-4955-8653-310d3efe05a9}</UniqueIdentifier> | ||
6 | <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm</Extensions> | ||
7 | </Filter> | ||
8 | <Filter Include="Header Files"> | ||
9 | <UniqueIdentifier>{c2aaffdc-2c95-4d6f-8466-4bec5890af2c}</UniqueIdentifier> | ||
10 | <Extensions>h;hpp;hxx;hm;inl;inc</Extensions> | ||
11 | </Filter> | ||
12 | <Filter Include="Resource Files"> | ||
13 | <UniqueIdentifier>{c274fe07-05f2-461c-964b-f6341e4e7eb5}</UniqueIdentifier> | ||
14 | <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions> | ||
15 | </Filter> | ||
16 | </ItemGroup> | ||
17 | <ItemGroup> | ||
18 | <ClCompile Include="..\..\..\adler32.c"> | ||
19 | <Filter>Source Files</Filter> | ||
20 | </ClCompile> | ||
21 | <ClCompile Include="..\..\..\compress.c"> | ||
22 | <Filter>Source Files</Filter> | ||
23 | </ClCompile> | ||
24 | <ClCompile Include="..\..\..\crc32.c"> | ||
25 | <Filter>Source Files</Filter> | ||
26 | </ClCompile> | ||
27 | <ClCompile Include="..\..\..\deflate.c"> | ||
28 | <Filter>Source Files</Filter> | ||
29 | </ClCompile> | ||
30 | <ClCompile Include="..\..\masmx86\gvmat32c.c"> | ||
31 | <Filter>Source Files</Filter> | ||
32 | </ClCompile> | ||
33 | <ClCompile Include="..\..\..\infback.c"> | ||
34 | <Filter>Source Files</Filter> | ||
35 | </ClCompile> | ||
36 | <ClCompile Include="..\..\masmx64\inffas8664.c"> | ||
37 | <Filter>Source Files</Filter> | ||
38 | </ClCompile> | ||
39 | <ClCompile Include="..\..\..\inffast.c"> | ||
40 | <Filter>Source Files</Filter> | ||
41 | </ClCompile> | ||
42 | <ClCompile Include="..\..\..\inflate.c"> | ||
43 | <Filter>Source Files</Filter> | ||
44 | </ClCompile> | ||
45 | <ClCompile Include="..\..\..\inftrees.c"> | ||
46 | <Filter>Source Files</Filter> | ||
47 | </ClCompile> | ||
48 | <ClCompile Include="..\..\testzlib\testzlib.c"> | ||
49 | <Filter>Source Files</Filter> | ||
50 | </ClCompile> | ||
51 | <ClCompile Include="..\..\..\trees.c"> | ||
52 | <Filter>Source Files</Filter> | ||
53 | </ClCompile> | ||
54 | <ClCompile Include="..\..\..\uncompr.c"> | ||
55 | <Filter>Source Files</Filter> | ||
56 | </ClCompile> | ||
57 | <ClCompile Include="..\..\..\zutil.c"> | ||
58 | <Filter>Source Files</Filter> | ||
59 | </ClCompile> | ||
60 | </ItemGroup> | ||
61 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/testzlib.vcxproj.user b/contrib/vstudio/vc10/testzlib.vcxproj.user new file mode 100644 index 0000000..695b5c7 --- /dev/null +++ b/contrib/vstudio/vc10/testzlib.vcxproj.user | |||
@@ -0,0 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/testzlibdll.vcxproj b/contrib/vstudio/vc10/testzlibdll.vcxproj new file mode 100644 index 0000000..2d62815 --- /dev/null +++ b/contrib/vstudio/vc10/testzlibdll.vcxproj | |||
@@ -0,0 +1,310 @@ | |||
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|Itanium"> | ||
5 | <Configuration>Debug</Configuration> | ||
6 | <Platform>Itanium</Platform> | ||
7 | </ProjectConfiguration> | ||
8 | <ProjectConfiguration Include="Debug|Win32"> | ||
9 | <Configuration>Debug</Configuration> | ||
10 | <Platform>Win32</Platform> | ||
11 | </ProjectConfiguration> | ||
12 | <ProjectConfiguration Include="Debug|x64"> | ||
13 | <Configuration>Debug</Configuration> | ||
14 | <Platform>x64</Platform> | ||
15 | </ProjectConfiguration> | ||
16 | <ProjectConfiguration Include="Release|Itanium"> | ||
17 | <Configuration>Release</Configuration> | ||
18 | <Platform>Itanium</Platform> | ||
19 | </ProjectConfiguration> | ||
20 | <ProjectConfiguration Include="Release|Win32"> | ||
21 | <Configuration>Release</Configuration> | ||
22 | <Platform>Win32</Platform> | ||
23 | </ProjectConfiguration> | ||
24 | <ProjectConfiguration Include="Release|x64"> | ||
25 | <Configuration>Release</Configuration> | ||
26 | <Platform>x64</Platform> | ||
27 | </ProjectConfiguration> | ||
28 | </ItemGroup> | ||
29 | <PropertyGroup Label="Globals"> | ||
30 | <ProjectGuid>{C52F9E7B-498A-42BE-8DB4-85A15694366A}</ProjectGuid> | ||
31 | <Keyword>Win32Proj</Keyword> | ||
32 | </PropertyGroup> | ||
33 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
34 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
35 | <ConfigurationType>Application</ConfigurationType> | ||
36 | <CharacterSet>MultiByte</CharacterSet> | ||
37 | </PropertyGroup> | ||
38 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
39 | <ConfigurationType>Application</ConfigurationType> | ||
40 | <CharacterSet>MultiByte</CharacterSet> | ||
41 | </PropertyGroup> | ||
42 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration"> | ||
43 | <ConfigurationType>Application</ConfigurationType> | ||
44 | <CharacterSet>MultiByte</CharacterSet> | ||
45 | </PropertyGroup> | ||
46 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration"> | ||
47 | <ConfigurationType>Application</ConfigurationType> | ||
48 | <CharacterSet>MultiByte</CharacterSet> | ||
49 | </PropertyGroup> | ||
50 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
51 | <ConfigurationType>Application</ConfigurationType> | ||
52 | <CharacterSet>MultiByte</CharacterSet> | ||
53 | </PropertyGroup> | ||
54 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||
55 | <ConfigurationType>Application</ConfigurationType> | ||
56 | <CharacterSet>MultiByte</CharacterSet> | ||
57 | </PropertyGroup> | ||
58 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
59 | <ImportGroup Label="ExtensionSettings"> | ||
60 | </ImportGroup> | ||
61 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | ||
62 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
63 | </ImportGroup> | ||
64 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | ||
65 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
66 | </ImportGroup> | ||
67 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="PropertySheets"> | ||
68 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
69 | </ImportGroup> | ||
70 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="PropertySheets"> | ||
71 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
72 | </ImportGroup> | ||
73 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||
74 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
75 | </ImportGroup> | ||
76 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | ||
77 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
78 | </ImportGroup> | ||
79 | <PropertyGroup Label="UserMacros" /> | ||
80 | <PropertyGroup> | ||
81 | <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> | ||
82 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\TestZlibDll$(Configuration)\</OutDir> | ||
83 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\TestZlibDll$(Configuration)\Tmp\</IntDir> | ||
84 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> | ||
85 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</GenerateManifest> | ||
86 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\TestZlibDll$(Configuration)\</OutDir> | ||
87 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\TestZlibDll$(Configuration)\Tmp\</IntDir> | ||
88 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> | ||
89 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</GenerateManifest> | ||
90 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\TestZlibDll$(Configuration)\</OutDir> | ||
91 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\TestZlibDll$(Configuration)\Tmp\</IntDir> | ||
92 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> | ||
93 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> | ||
94 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\TestZlibDll$(Configuration)\</OutDir> | ||
95 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\TestZlibDll$(Configuration)\Tmp\</IntDir> | ||
96 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</LinkIncremental> | ||
97 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">false</GenerateManifest> | ||
98 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\TestZlibDll$(Configuration)\</OutDir> | ||
99 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\TestZlibDll$(Configuration)\Tmp\</IntDir> | ||
100 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> | ||
101 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</GenerateManifest> | ||
102 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\TestZlibDll$(Configuration)\</OutDir> | ||
103 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\TestZlibDll$(Configuration)\Tmp\</IntDir> | ||
104 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</LinkIncremental> | ||
105 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</GenerateManifest> | ||
106 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
107 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
108 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
109 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
110 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
111 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
112 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
113 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
114 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
115 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
116 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
117 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
118 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
119 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
120 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
121 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
122 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
123 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
124 | </PropertyGroup> | ||
125 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
126 | <ClCompile> | ||
127 | <Optimization>Disabled</Optimization> | ||
128 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
129 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
130 | <MinimalRebuild>true</MinimalRebuild> | ||
131 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
132 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
133 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
134 | <PrecompiledHeader> | ||
135 | </PrecompiledHeader> | ||
136 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
137 | <WarningLevel>Level3</WarningLevel> | ||
138 | <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||
139 | </ClCompile> | ||
140 | <Link> | ||
141 | <AdditionalDependencies>x86\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
142 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
143 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
144 | <ProgramDatabaseFile>$(OutDir)testzlib.pdb</ProgramDatabaseFile> | ||
145 | <SubSystem>Console</SubSystem> | ||
146 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
147 | <DataExecutionPrevention> | ||
148 | </DataExecutionPrevention> | ||
149 | <TargetMachine>MachineX86</TargetMachine> | ||
150 | </Link> | ||
151 | </ItemDefinitionGroup> | ||
152 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
153 | <ClCompile> | ||
154 | <Optimization>MaxSpeed</Optimization> | ||
155 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
156 | <OmitFramePointers>true</OmitFramePointers> | ||
157 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
158 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
159 | <StringPooling>true</StringPooling> | ||
160 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
161 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
162 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
163 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
164 | <PrecompiledHeader> | ||
165 | </PrecompiledHeader> | ||
166 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
167 | <WarningLevel>Level3</WarningLevel> | ||
168 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
169 | </ClCompile> | ||
170 | <Link> | ||
171 | <AdditionalDependencies>x86\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
172 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
173 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
174 | <SubSystem>Console</SubSystem> | ||
175 | <OptimizeReferences>true</OptimizeReferences> | ||
176 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
177 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
178 | <DataExecutionPrevention> | ||
179 | </DataExecutionPrevention> | ||
180 | <TargetMachine>MachineX86</TargetMachine> | ||
181 | </Link> | ||
182 | </ItemDefinitionGroup> | ||
183 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
184 | <Midl> | ||
185 | <TargetEnvironment>X64</TargetEnvironment> | ||
186 | </Midl> | ||
187 | <ClCompile> | ||
188 | <Optimization>Disabled</Optimization> | ||
189 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
190 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
191 | <MinimalRebuild>true</MinimalRebuild> | ||
192 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
193 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
194 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
195 | <PrecompiledHeader> | ||
196 | </PrecompiledHeader> | ||
197 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
198 | <WarningLevel>Level3</WarningLevel> | ||
199 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
200 | </ClCompile> | ||
201 | <Link> | ||
202 | <AdditionalDependencies>x64\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
203 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
204 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
205 | <ProgramDatabaseFile>$(OutDir)testzlib.pdb</ProgramDatabaseFile> | ||
206 | <SubSystem>Console</SubSystem> | ||
207 | <TargetMachine>MachineX64</TargetMachine> | ||
208 | </Link> | ||
209 | </ItemDefinitionGroup> | ||
210 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'"> | ||
211 | <Midl> | ||
212 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
213 | </Midl> | ||
214 | <ClCompile> | ||
215 | <Optimization>Disabled</Optimization> | ||
216 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
217 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
218 | <MinimalRebuild>true</MinimalRebuild> | ||
219 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
220 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
221 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
222 | <PrecompiledHeader> | ||
223 | </PrecompiledHeader> | ||
224 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
225 | <WarningLevel>Level3</WarningLevel> | ||
226 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
227 | </ClCompile> | ||
228 | <Link> | ||
229 | <AdditionalDependencies>ia64\ZlibDllDebug\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
230 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
231 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
232 | <ProgramDatabaseFile>$(OutDir)testzlib.pdb</ProgramDatabaseFile> | ||
233 | <SubSystem>Console</SubSystem> | ||
234 | <TargetMachine>MachineIA64</TargetMachine> | ||
235 | </Link> | ||
236 | </ItemDefinitionGroup> | ||
237 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
238 | <Midl> | ||
239 | <TargetEnvironment>X64</TargetEnvironment> | ||
240 | </Midl> | ||
241 | <ClCompile> | ||
242 | <Optimization>MaxSpeed</Optimization> | ||
243 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
244 | <OmitFramePointers>true</OmitFramePointers> | ||
245 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
246 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
247 | <StringPooling>true</StringPooling> | ||
248 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
249 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
250 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
251 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
252 | <PrecompiledHeader> | ||
253 | </PrecompiledHeader> | ||
254 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
255 | <WarningLevel>Level3</WarningLevel> | ||
256 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
257 | </ClCompile> | ||
258 | <Link> | ||
259 | <AdditionalDependencies>x64\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
260 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
261 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
262 | <SubSystem>Console</SubSystem> | ||
263 | <OptimizeReferences>true</OptimizeReferences> | ||
264 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
265 | <TargetMachine>MachineX64</TargetMachine> | ||
266 | </Link> | ||
267 | </ItemDefinitionGroup> | ||
268 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'"> | ||
269 | <Midl> | ||
270 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
271 | </Midl> | ||
272 | <ClCompile> | ||
273 | <Optimization>MaxSpeed</Optimization> | ||
274 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
275 | <OmitFramePointers>true</OmitFramePointers> | ||
276 | <AdditionalIncludeDirectories>..\..\..;..\..\minizip;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
277 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
278 | <StringPooling>true</StringPooling> | ||
279 | <BasicRuntimeChecks>Default</BasicRuntimeChecks> | ||
280 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
281 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
282 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
283 | <PrecompiledHeader> | ||
284 | </PrecompiledHeader> | ||
285 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
286 | <WarningLevel>Level3</WarningLevel> | ||
287 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
288 | </ClCompile> | ||
289 | <Link> | ||
290 | <AdditionalDependencies>ia64\ZlibDllRelease\zlibwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
291 | <OutputFile>$(OutDir)testzlib.exe</OutputFile> | ||
292 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
293 | <SubSystem>Console</SubSystem> | ||
294 | <OptimizeReferences>true</OptimizeReferences> | ||
295 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
296 | <TargetMachine>MachineIA64</TargetMachine> | ||
297 | </Link> | ||
298 | </ItemDefinitionGroup> | ||
299 | <ItemGroup> | ||
300 | <ClCompile Include="..\..\testzlib\testzlib.c" /> | ||
301 | </ItemGroup> | ||
302 | <ItemGroup> | ||
303 | <ProjectReference Include="zlibvc.vcxproj"> | ||
304 | <Project>{8fd826f8-3739-44e6-8cc8-997122e53b8d}</Project> | ||
305 | </ProjectReference> | ||
306 | </ItemGroup> | ||
307 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
308 | <ImportGroup Label="ExtensionTargets"> | ||
309 | </ImportGroup> | ||
310 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/testzlibdll.vcxproj.filters b/contrib/vstudio/vc10/testzlibdll.vcxproj.filters new file mode 100644 index 0000000..53a8693 --- /dev/null +++ b/contrib/vstudio/vc10/testzlibdll.vcxproj.filters | |||
@@ -0,0 +1,22 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <ItemGroup> | ||
4 | <Filter Include="Source Files"> | ||
5 | <UniqueIdentifier>{fa61a89f-93fc-4c89-b29e-36224b7592f4}</UniqueIdentifier> | ||
6 | <Extensions>cpp;c;cxx;def;odl;idl;hpj;bat;asm</Extensions> | ||
7 | </Filter> | ||
8 | <Filter Include="Header Files"> | ||
9 | <UniqueIdentifier>{d4b85da0-2ba2-4934-b57f-e2584e3848ee}</UniqueIdentifier> | ||
10 | <Extensions>h;hpp;hxx;hm;inl;inc</Extensions> | ||
11 | </Filter> | ||
12 | <Filter Include="Resource Files"> | ||
13 | <UniqueIdentifier>{e573e075-00bd-4a7d-bd67-a8cc9bfc5aca}</UniqueIdentifier> | ||
14 | <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions> | ||
15 | </Filter> | ||
16 | </ItemGroup> | ||
17 | <ItemGroup> | ||
18 | <ClCompile Include="..\..\testzlib\testzlib.c"> | ||
19 | <Filter>Source Files</Filter> | ||
20 | </ClCompile> | ||
21 | </ItemGroup> | ||
22 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/testzlibdll.vcxproj.user b/contrib/vstudio/vc10/testzlibdll.vcxproj.user new file mode 100644 index 0000000..695b5c7 --- /dev/null +++ b/contrib/vstudio/vc10/testzlibdll.vcxproj.user | |||
@@ -0,0 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc8/zlib.rc b/contrib/vstudio/vc10/zlib.rc index 72cb8b4..72cb8b4 100644 --- a/contrib/vstudio/vc8/zlib.rc +++ b/contrib/vstudio/vc10/zlib.rc | |||
diff --git a/contrib/vstudio/vc10/zlibstat.vcxproj b/contrib/vstudio/vc10/zlibstat.vcxproj new file mode 100644 index 0000000..fbf6c1b --- /dev/null +++ b/contrib/vstudio/vc10/zlibstat.vcxproj | |||
@@ -0,0 +1,466 @@ | |||
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|Itanium"> | ||
5 | <Configuration>Debug</Configuration> | ||
6 | <Platform>Itanium</Platform> | ||
7 | </ProjectConfiguration> | ||
8 | <ProjectConfiguration Include="Debug|Win32"> | ||
9 | <Configuration>Debug</Configuration> | ||
10 | <Platform>Win32</Platform> | ||
11 | </ProjectConfiguration> | ||
12 | <ProjectConfiguration Include="Debug|x64"> | ||
13 | <Configuration>Debug</Configuration> | ||
14 | <Platform>x64</Platform> | ||
15 | </ProjectConfiguration> | ||
16 | <ProjectConfiguration Include="ReleaseWithoutAsm|Itanium"> | ||
17 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
18 | <Platform>Itanium</Platform> | ||
19 | </ProjectConfiguration> | ||
20 | <ProjectConfiguration Include="ReleaseWithoutAsm|Win32"> | ||
21 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
22 | <Platform>Win32</Platform> | ||
23 | </ProjectConfiguration> | ||
24 | <ProjectConfiguration Include="ReleaseWithoutAsm|x64"> | ||
25 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
26 | <Platform>x64</Platform> | ||
27 | </ProjectConfiguration> | ||
28 | <ProjectConfiguration Include="Release|Itanium"> | ||
29 | <Configuration>Release</Configuration> | ||
30 | <Platform>Itanium</Platform> | ||
31 | </ProjectConfiguration> | ||
32 | <ProjectConfiguration Include="Release|Win32"> | ||
33 | <Configuration>Release</Configuration> | ||
34 | <Platform>Win32</Platform> | ||
35 | </ProjectConfiguration> | ||
36 | <ProjectConfiguration Include="Release|x64"> | ||
37 | <Configuration>Release</Configuration> | ||
38 | <Platform>x64</Platform> | ||
39 | </ProjectConfiguration> | ||
40 | </ItemGroup> | ||
41 | <PropertyGroup Label="Globals"> | ||
42 | <ProjectGuid>{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}</ProjectGuid> | ||
43 | </PropertyGroup> | ||
44 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
45 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Configuration"> | ||
46 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
47 | <UseOfMfc>false</UseOfMfc> | ||
48 | </PropertyGroup> | ||
49 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
50 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
51 | <UseOfMfc>false</UseOfMfc> | ||
52 | </PropertyGroup> | ||
53 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
54 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
55 | <UseOfMfc>false</UseOfMfc> | ||
56 | </PropertyGroup> | ||
57 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Configuration"> | ||
58 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
59 | <UseOfMfc>false</UseOfMfc> | ||
60 | </PropertyGroup> | ||
61 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration"> | ||
62 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
63 | <UseOfMfc>false</UseOfMfc> | ||
64 | </PropertyGroup> | ||
65 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration"> | ||
66 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
67 | <UseOfMfc>false</UseOfMfc> | ||
68 | </PropertyGroup> | ||
69 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configuration"> | ||
70 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
71 | <UseOfMfc>false</UseOfMfc> | ||
72 | </PropertyGroup> | ||
73 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
74 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
75 | <UseOfMfc>false</UseOfMfc> | ||
76 | </PropertyGroup> | ||
77 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||
78 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
79 | <UseOfMfc>false</UseOfMfc> | ||
80 | </PropertyGroup> | ||
81 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
82 | <ImportGroup Label="ExtensionSettings"> | ||
83 | </ImportGroup> | ||
84 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="PropertySheets"> | ||
85 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
86 | </ImportGroup> | ||
87 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | ||
88 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
89 | </ImportGroup> | ||
90 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | ||
91 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
92 | </ImportGroup> | ||
93 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="PropertySheets"> | ||
94 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
95 | </ImportGroup> | ||
96 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="PropertySheets"> | ||
97 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
98 | </ImportGroup> | ||
99 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="PropertySheets"> | ||
100 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
101 | </ImportGroup> | ||
102 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="PropertySheets"> | ||
103 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
104 | </ImportGroup> | ||
105 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||
106 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
107 | </ImportGroup> | ||
108 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | ||
109 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
110 | </ImportGroup> | ||
111 | <PropertyGroup Label="UserMacros" /> | ||
112 | <PropertyGroup> | ||
113 | <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> | ||
114 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\ZlibStat$(Configuration)\</OutDir> | ||
115 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
116 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\ZlibStat$(Configuration)\</OutDir> | ||
117 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
118 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\ZlibStat$(Configuration)\</OutDir> | ||
119 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
120 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibStat$(Configuration)\</OutDir> | ||
121 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
122 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\ZlibStat$(Configuration)\</OutDir> | ||
123 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
124 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibStat$(Configuration)\</OutDir> | ||
125 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
126 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\ZlibStat$(Configuration)\</OutDir> | ||
127 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
128 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\ZlibStat$(Configuration)\</OutDir> | ||
129 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
130 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\ZlibStat$(Configuration)\</OutDir> | ||
131 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\ZlibStat$(Configuration)\Tmp\</IntDir> | ||
132 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
133 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
134 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
135 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
136 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
137 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
138 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
139 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
140 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
141 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
142 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> | ||
143 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> | ||
144 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
145 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> | ||
146 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> | ||
147 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
148 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> | ||
149 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> | ||
150 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
151 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
152 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
153 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
154 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
155 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
156 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
157 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
158 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
159 | </PropertyGroup> | ||
160 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
161 | <ClCompile> | ||
162 | <Optimization>Disabled</Optimization> | ||
163 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
164 | <PreprocessorDefinitions>WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
165 | <ExceptionHandling> | ||
166 | </ExceptionHandling> | ||
167 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
168 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
169 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
170 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
171 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
172 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
173 | <WarningLevel>Level3</WarningLevel> | ||
174 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
175 | <DebugInformationFormat>OldStyle</DebugInformationFormat> | ||
176 | </ClCompile> | ||
177 | <ResourceCompile> | ||
178 | <Culture>0x040c</Culture> | ||
179 | </ResourceCompile> | ||
180 | <Lib> | ||
181 | <AdditionalOptions>/MACHINE:X86 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
182 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
183 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
184 | </Lib> | ||
185 | </ItemDefinitionGroup> | ||
186 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
187 | <ClCompile> | ||
188 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
189 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
190 | <PreprocessorDefinitions>WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ASMV;ASMINF;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
191 | <StringPooling>true</StringPooling> | ||
192 | <ExceptionHandling> | ||
193 | </ExceptionHandling> | ||
194 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
195 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
196 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
197 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
198 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
199 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
200 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
201 | <WarningLevel>Level3</WarningLevel> | ||
202 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
203 | </ClCompile> | ||
204 | <ResourceCompile> | ||
205 | <Culture>0x040c</Culture> | ||
206 | </ResourceCompile> | ||
207 | <Lib> | ||
208 | <AdditionalOptions>/MACHINE:X86 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
209 | <AdditionalDependencies>..\..\masmx86\gvmat32.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
210 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
211 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
212 | </Lib> | ||
213 | </ItemDefinitionGroup> | ||
214 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'"> | ||
215 | <ClCompile> | ||
216 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
217 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
218 | <PreprocessorDefinitions>WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
219 | <StringPooling>true</StringPooling> | ||
220 | <ExceptionHandling> | ||
221 | </ExceptionHandling> | ||
222 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
223 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
224 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
225 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
226 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
227 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
228 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
229 | <WarningLevel>Level3</WarningLevel> | ||
230 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
231 | </ClCompile> | ||
232 | <ResourceCompile> | ||
233 | <Culture>0x040c</Culture> | ||
234 | </ResourceCompile> | ||
235 | <Lib> | ||
236 | <AdditionalOptions>/MACHINE:X86 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
237 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
238 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
239 | </Lib> | ||
240 | </ItemDefinitionGroup> | ||
241 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
242 | <Midl> | ||
243 | <TargetEnvironment>X64</TargetEnvironment> | ||
244 | </Midl> | ||
245 | <ClCompile> | ||
246 | <Optimization>Disabled</Optimization> | ||
247 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
248 | <PreprocessorDefinitions>ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
249 | <ExceptionHandling> | ||
250 | </ExceptionHandling> | ||
251 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
252 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
253 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
254 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
255 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
256 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
257 | <WarningLevel>Level3</WarningLevel> | ||
258 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
259 | <DebugInformationFormat>OldStyle</DebugInformationFormat> | ||
260 | </ClCompile> | ||
261 | <ResourceCompile> | ||
262 | <Culture>0x040c</Culture> | ||
263 | </ResourceCompile> | ||
264 | <Lib> | ||
265 | <AdditionalOptions>/MACHINE:AMD64 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
266 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
267 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
268 | </Lib> | ||
269 | </ItemDefinitionGroup> | ||
270 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'"> | ||
271 | <Midl> | ||
272 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
273 | </Midl> | ||
274 | <ClCompile> | ||
275 | <Optimization>Disabled</Optimization> | ||
276 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
277 | <PreprocessorDefinitions>ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
278 | <ExceptionHandling> | ||
279 | </ExceptionHandling> | ||
280 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
281 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
282 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
283 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
284 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
285 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
286 | <WarningLevel>Level3</WarningLevel> | ||
287 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
288 | <DebugInformationFormat>OldStyle</DebugInformationFormat> | ||
289 | </ClCompile> | ||
290 | <ResourceCompile> | ||
291 | <Culture>0x040c</Culture> | ||
292 | </ResourceCompile> | ||
293 | <Lib> | ||
294 | <AdditionalOptions>/MACHINE:IA64 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
295 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
296 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
297 | </Lib> | ||
298 | </ItemDefinitionGroup> | ||
299 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
300 | <Midl> | ||
301 | <TargetEnvironment>X64</TargetEnvironment> | ||
302 | </Midl> | ||
303 | <ClCompile> | ||
304 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
305 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
306 | <PreprocessorDefinitions>ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ASMV;ASMINF;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
307 | <StringPooling>true</StringPooling> | ||
308 | <ExceptionHandling> | ||
309 | </ExceptionHandling> | ||
310 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
311 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
312 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
313 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
314 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
315 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
316 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
317 | <WarningLevel>Level3</WarningLevel> | ||
318 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
319 | </ClCompile> | ||
320 | <ResourceCompile> | ||
321 | <Culture>0x040c</Culture> | ||
322 | </ResourceCompile> | ||
323 | <Lib> | ||
324 | <AdditionalOptions>/MACHINE:AMD64 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
325 | <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
326 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
327 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
328 | </Lib> | ||
329 | </ItemDefinitionGroup> | ||
330 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'"> | ||
331 | <Midl> | ||
332 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
333 | </Midl> | ||
334 | <ClCompile> | ||
335 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
336 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
337 | <PreprocessorDefinitions>ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
338 | <StringPooling>true</StringPooling> | ||
339 | <ExceptionHandling> | ||
340 | </ExceptionHandling> | ||
341 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
342 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
343 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
344 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
345 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
346 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
347 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
348 | <WarningLevel>Level3</WarningLevel> | ||
349 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
350 | </ClCompile> | ||
351 | <ResourceCompile> | ||
352 | <Culture>0x040c</Culture> | ||
353 | </ResourceCompile> | ||
354 | <Lib> | ||
355 | <AdditionalOptions>/MACHINE:IA64 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
356 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
357 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
358 | </Lib> | ||
359 | </ItemDefinitionGroup> | ||
360 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'"> | ||
361 | <Midl> | ||
362 | <TargetEnvironment>X64</TargetEnvironment> | ||
363 | </Midl> | ||
364 | <ClCompile> | ||
365 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
366 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
367 | <PreprocessorDefinitions>ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
368 | <StringPooling>true</StringPooling> | ||
369 | <ExceptionHandling> | ||
370 | </ExceptionHandling> | ||
371 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
372 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
373 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
374 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
375 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
376 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
377 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
378 | <WarningLevel>Level3</WarningLevel> | ||
379 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
380 | </ClCompile> | ||
381 | <ResourceCompile> | ||
382 | <Culture>0x040c</Culture> | ||
383 | </ResourceCompile> | ||
384 | <Lib> | ||
385 | <AdditionalOptions>/MACHINE:AMD64 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
386 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
387 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
388 | </Lib> | ||
389 | </ItemDefinitionGroup> | ||
390 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'"> | ||
391 | <Midl> | ||
392 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
393 | </Midl> | ||
394 | <ClCompile> | ||
395 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
396 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
397 | <PreprocessorDefinitions>ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
398 | <StringPooling>true</StringPooling> | ||
399 | <ExceptionHandling> | ||
400 | </ExceptionHandling> | ||
401 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
402 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
403 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
404 | <PrecompiledHeaderOutputFile>$(IntDir)zlibstat.pch</PrecompiledHeaderOutputFile> | ||
405 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
406 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
407 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
408 | <WarningLevel>Level3</WarningLevel> | ||
409 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
410 | </ClCompile> | ||
411 | <ResourceCompile> | ||
412 | <Culture>0x040c</Culture> | ||
413 | </ResourceCompile> | ||
414 | <Lib> | ||
415 | <AdditionalOptions>/MACHINE:IA64 /NODEFAULTLIB %(AdditionalOptions)</AdditionalOptions> | ||
416 | <OutputFile>$(OutDir)zlibstat.lib</OutputFile> | ||
417 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
418 | </Lib> | ||
419 | </ItemDefinitionGroup> | ||
420 | <ItemGroup> | ||
421 | <ClCompile Include="..\..\..\adler32.c" /> | ||
422 | <ClCompile Include="..\..\..\compress.c" /> | ||
423 | <ClCompile Include="..\..\..\crc32.c" /> | ||
424 | <ClCompile Include="..\..\..\deflate.c" /> | ||
425 | <ClCompile Include="..\..\masmx86\gvmat32c.c"> | ||
426 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</ExcludedFromBuild> | ||
427 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> | ||
428 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">true</ExcludedFromBuild> | ||
429 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">true</ExcludedFromBuild> | ||
430 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">true</ExcludedFromBuild> | ||
431 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> | ||
432 | </ClCompile> | ||
433 | <ClCompile Include="..\..\..\gzclose.c" /> | ||
434 | <ClCompile Include="..\..\..\gzio.c" /> | ||
435 | <ClCompile Include="..\..\..\gzlib.c" /> | ||
436 | <ClCompile Include="..\..\..\gzread.c" /> | ||
437 | <ClCompile Include="..\..\..\gzwrite.c" /> | ||
438 | <ClCompile Include="..\..\..\infback.c" /> | ||
439 | <ClCompile Include="..\..\masmx64\inffas8664.c"> | ||
440 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</ExcludedFromBuild> | ||
441 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> | ||
442 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">true</ExcludedFromBuild> | ||
443 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">true</ExcludedFromBuild> | ||
444 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">true</ExcludedFromBuild> | ||
445 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> | ||
446 | </ClCompile> | ||
447 | <ClCompile Include="..\..\..\inffast.c" /> | ||
448 | <ClCompile Include="..\..\..\inflate.c" /> | ||
449 | <ClCompile Include="..\..\..\inftrees.c" /> | ||
450 | <ClCompile Include="..\..\minizip\ioapi.c" /> | ||
451 | <ClCompile Include="..\..\..\trees.c" /> | ||
452 | <ClCompile Include="..\..\..\uncompr.c" /> | ||
453 | <ClCompile Include="..\..\minizip\unzip.c" /> | ||
454 | <ClCompile Include="..\..\minizip\zip.c" /> | ||
455 | <ClCompile Include="..\..\..\zutil.c" /> | ||
456 | </ItemGroup> | ||
457 | <ItemGroup> | ||
458 | <ResourceCompile Include="zlib.rc" /> | ||
459 | </ItemGroup> | ||
460 | <ItemGroup> | ||
461 | <None Include="zlibvc.def" /> | ||
462 | </ItemGroup> | ||
463 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
464 | <ImportGroup Label="ExtensionTargets"> | ||
465 | </ImportGroup> | ||
466 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/zlibstat.vcxproj.filters b/contrib/vstudio/vc10/zlibstat.vcxproj.filters new file mode 100644 index 0000000..f676c2d --- /dev/null +++ b/contrib/vstudio/vc10/zlibstat.vcxproj.filters | |||
@@ -0,0 +1,83 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <ItemGroup> | ||
4 | <Filter Include="Source Files"> | ||
5 | <UniqueIdentifier>{174213f6-7f66-4ae8-a3a8-a1e0a1e6ffdd}</UniqueIdentifier> | ||
6 | </Filter> | ||
7 | </ItemGroup> | ||
8 | <ItemGroup> | ||
9 | <ClCompile Include="..\..\..\adler32.c"> | ||
10 | <Filter>Source Files</Filter> | ||
11 | </ClCompile> | ||
12 | <ClCompile Include="..\..\..\compress.c"> | ||
13 | <Filter>Source Files</Filter> | ||
14 | </ClCompile> | ||
15 | <ClCompile Include="..\..\..\crc32.c"> | ||
16 | <Filter>Source Files</Filter> | ||
17 | </ClCompile> | ||
18 | <ClCompile Include="..\..\..\deflate.c"> | ||
19 | <Filter>Source Files</Filter> | ||
20 | </ClCompile> | ||
21 | <ClCompile Include="..\..\masmx86\gvmat32c.c"> | ||
22 | <Filter>Source Files</Filter> | ||
23 | </ClCompile> | ||
24 | <ClCompile Include="..\..\..\gzclose.c"> | ||
25 | <Filter>Source Files</Filter> | ||
26 | </ClCompile> | ||
27 | <ClCompile Include="..\..\..\gzio.c"> | ||
28 | <Filter>Source Files</Filter> | ||
29 | </ClCompile> | ||
30 | <ClCompile Include="..\..\..\gzlib.c"> | ||
31 | <Filter>Source Files</Filter> | ||
32 | </ClCompile> | ||
33 | <ClCompile Include="..\..\..\gzread.c"> | ||
34 | <Filter>Source Files</Filter> | ||
35 | </ClCompile> | ||
36 | <ClCompile Include="..\..\..\gzwrite.c"> | ||
37 | <Filter>Source Files</Filter> | ||
38 | </ClCompile> | ||
39 | <ClCompile Include="..\..\..\infback.c"> | ||
40 | <Filter>Source Files</Filter> | ||
41 | </ClCompile> | ||
42 | <ClCompile Include="..\..\masmx64\inffas8664.c"> | ||
43 | <Filter>Source Files</Filter> | ||
44 | </ClCompile> | ||
45 | <ClCompile Include="..\..\..\inffast.c"> | ||
46 | <Filter>Source Files</Filter> | ||
47 | </ClCompile> | ||
48 | <ClCompile Include="..\..\..\inflate.c"> | ||
49 | <Filter>Source Files</Filter> | ||
50 | </ClCompile> | ||
51 | <ClCompile Include="..\..\..\inftrees.c"> | ||
52 | <Filter>Source Files</Filter> | ||
53 | </ClCompile> | ||
54 | <ClCompile Include="..\..\minizip\ioapi.c"> | ||
55 | <Filter>Source Files</Filter> | ||
56 | </ClCompile> | ||
57 | <ClCompile Include="..\..\..\trees.c"> | ||
58 | <Filter>Source Files</Filter> | ||
59 | </ClCompile> | ||
60 | <ClCompile Include="..\..\..\uncompr.c"> | ||
61 | <Filter>Source Files</Filter> | ||
62 | </ClCompile> | ||
63 | <ClCompile Include="..\..\minizip\unzip.c"> | ||
64 | <Filter>Source Files</Filter> | ||
65 | </ClCompile> | ||
66 | <ClCompile Include="..\..\minizip\zip.c"> | ||
67 | <Filter>Source Files</Filter> | ||
68 | </ClCompile> | ||
69 | <ClCompile Include="..\..\..\zutil.c"> | ||
70 | <Filter>Source Files</Filter> | ||
71 | </ClCompile> | ||
72 | </ItemGroup> | ||
73 | <ItemGroup> | ||
74 | <ResourceCompile Include="zlib.rc"> | ||
75 | <Filter>Source Files</Filter> | ||
76 | </ResourceCompile> | ||
77 | </ItemGroup> | ||
78 | <ItemGroup> | ||
79 | <None Include="zlibvc.def"> | ||
80 | <Filter>Source Files</Filter> | ||
81 | </None> | ||
82 | </ItemGroup> | ||
83 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/zlibstat.vcxproj.user b/contrib/vstudio/vc10/zlibstat.vcxproj.user new file mode 100644 index 0000000..695b5c7 --- /dev/null +++ b/contrib/vstudio/vc10/zlibstat.vcxproj.user | |||
@@ -0,0 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/zlibvc.def b/contrib/vstudio/vc10/zlibvc.def new file mode 100644 index 0000000..0b6a9e9 --- /dev/null +++ b/contrib/vstudio/vc10/zlibvc.def | |||
@@ -0,0 +1,114 @@ | |||
1 | |||
2 | VERSION 1.23 | ||
3 | |||
4 | HEAPSIZE 1048576,8192 | ||
5 | |||
6 | EXPORTS | ||
7 | adler32 @1 | ||
8 | compress @2 | ||
9 | crc32 @3 | ||
10 | deflate @4 | ||
11 | deflateCopy @5 | ||
12 | deflateEnd @6 | ||
13 | deflateInit2_ @7 | ||
14 | deflateInit_ @8 | ||
15 | deflateParams @9 | ||
16 | deflateReset @10 | ||
17 | deflateSetDictionary @11 | ||
18 | gzclose @12 | ||
19 | gzdopen @13 | ||
20 | gzerror @14 | ||
21 | gzflush @15 | ||
22 | gzopen @16 | ||
23 | gzread @17 | ||
24 | gzwrite @18 | ||
25 | inflate @19 | ||
26 | inflateEnd @20 | ||
27 | inflateInit2_ @21 | ||
28 | inflateInit_ @22 | ||
29 | inflateReset @23 | ||
30 | inflateSetDictionary @24 | ||
31 | inflateSync @25 | ||
32 | uncompress @26 | ||
33 | zlibVersion @27 | ||
34 | gzprintf @28 | ||
35 | gzputc @29 | ||
36 | gzgetc @30 | ||
37 | gzseek @31 | ||
38 | gzrewind @32 | ||
39 | gztell @33 | ||
40 | gzeof @34 | ||
41 | gzsetparams @35 | ||
42 | zError @36 | ||
43 | inflateSyncPoint @37 | ||
44 | get_crc_table @38 | ||
45 | compress2 @39 | ||
46 | gzputs @40 | ||
47 | gzgets @41 | ||
48 | inflateCopy @42 | ||
49 | inflateBackInit_ @43 | ||
50 | inflateBack @44 | ||
51 | inflateBackEnd @45 | ||
52 | compressBound @46 | ||
53 | deflateBound @47 | ||
54 | gzclearerr @48 | ||
55 | gzungetc @49 | ||
56 | zlibCompileFlags @50 | ||
57 | deflatePrime @51 | ||
58 | |||
59 | unzOpen @61 | ||
60 | unzClose @62 | ||
61 | unzGetGlobalInfo @63 | ||
62 | unzGetCurrentFileInfo @64 | ||
63 | unzGoToFirstFile @65 | ||
64 | unzGoToNextFile @66 | ||
65 | unzOpenCurrentFile @67 | ||
66 | unzReadCurrentFile @68 | ||
67 | unzOpenCurrentFile3 @69 | ||
68 | unztell @70 | ||
69 | unzeof @71 | ||
70 | unzCloseCurrentFile @72 | ||
71 | unzGetGlobalComment @73 | ||
72 | unzStringFileNameCompare @74 | ||
73 | unzLocateFile @75 | ||
74 | unzGetLocalExtrafield @76 | ||
75 | unzOpen2 @77 | ||
76 | unzOpenCurrentFile2 @78 | ||
77 | unzOpenCurrentFilePassword @79 | ||
78 | |||
79 | zipOpen @80 | ||
80 | zipOpenNewFileInZip @81 | ||
81 | zipWriteInFileInZip @82 | ||
82 | zipCloseFileInZip @83 | ||
83 | zipClose @84 | ||
84 | zipOpenNewFileInZip2 @86 | ||
85 | zipCloseFileInZipRaw @87 | ||
86 | zipOpen2 @88 | ||
87 | zipOpenNewFileInZip3 @89 | ||
88 | |||
89 | unzGetFilePos @100 | ||
90 | unzGoToFilePos @101 | ||
91 | |||
92 | fill_win32_filefunc @110 | ||
93 | fill_win32_filefunc64 @111 | ||
94 | fill_win32_filefunc64A @112 | ||
95 | fill_win32_filefunc64W @113 | ||
96 | |||
97 | ; quick hack by hkuno@microhouse.co.jp | ||
98 | unzOpen64 @120 | ||
99 | unzOpen2_64 @121 | ||
100 | unzGetGlobalInfo64 @122 | ||
101 | unzGetCurrentFileInfo64 @124 | ||
102 | unzGetCurrentFileZStreamPos64 @125 | ||
103 | unztell64 @126 | ||
104 | unzGetFilePos64 @127 | ||
105 | unzGoToFilePos64 @128 | ||
106 | |||
107 | zipOpen64 @130 | ||
108 | zipOpen2_64 @131 | ||
109 | zipOpenNewFileInZip64 @132 | ||
110 | zipOpenNewFileInZip2_64 @133 | ||
111 | zipOpenNewFileInZip3_64 @134 | ||
112 | zipOpenNewFileInZip4_64 @135 | ||
113 | zipCloseFileInZipRaw64 @136 | ||
114 | ; end hack | ||
diff --git a/contrib/vstudio/vc10/zlibvc.sln b/contrib/vstudio/vc10/zlibvc.sln new file mode 100644 index 0000000..6d2ef64 --- /dev/null +++ b/contrib/vstudio/vc10/zlibvc.sln | |||
@@ -0,0 +1,135 @@ | |||
1 | | ||
2 | Microsoft Visual Studio Solution File, Format Version 11.00 | ||
3 | # Visual Studio 2010 | ||
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcxproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | ||
5 | EndProject | ||
6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" | ||
7 | EndProject | ||
8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlib", "testzlib.vcxproj", "{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" | ||
9 | EndProject | ||
10 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlibdll", "testzlibdll.vcxproj", "{C52F9E7B-498A-42BE-8DB4-85A15694366A}" | ||
11 | EndProject | ||
12 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minizip", "minizip.vcxproj", "{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | ||
13 | EndProject | ||
14 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcxproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | ||
15 | EndProject | ||
16 | Global | ||
17 | GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
18 | Debug|Itanium = Debug|Itanium | ||
19 | Debug|Win32 = Debug|Win32 | ||
20 | Debug|x64 = Debug|x64 | ||
21 | Release|Itanium = Release|Itanium | ||
22 | Release|Win32 = Release|Win32 | ||
23 | Release|x64 = Release|x64 | ||
24 | ReleaseWithoutAsm|Itanium = ReleaseWithoutAsm|Itanium | ||
25 | ReleaseWithoutAsm|Win32 = ReleaseWithoutAsm|Win32 | ||
26 | ReleaseWithoutAsm|x64 = ReleaseWithoutAsm|x64 | ||
27 | EndGlobalSection | ||
28 | GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
29 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
30 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Itanium.Build.0 = Debug|Itanium | ||
31 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
32 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.Build.0 = Debug|Win32 | ||
33 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.ActiveCfg = Debug|x64 | ||
34 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.Build.0 = Debug|x64 | ||
35 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Itanium.ActiveCfg = Release|Itanium | ||
36 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Itanium.Build.0 = Release|Itanium | ||
37 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.ActiveCfg = Release|Win32 | ||
38 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.Build.0 = Release|Win32 | ||
39 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||
40 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.Build.0 = ReleaseWithoutAsm|x64 | ||
41 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium | ||
42 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium | ||
43 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||
44 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||
45 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||
46 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||
47 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
48 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Itanium.Build.0 = Debug|Itanium | ||
49 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
50 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32 | ||
51 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64 | ||
52 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64 | ||
53 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Itanium.ActiveCfg = Release|Itanium | ||
54 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Itanium.Build.0 = Release|Itanium | ||
55 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = Release|Win32 | ||
56 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = Release|Win32 | ||
57 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = Release|x64 | ||
58 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = Release|x64 | ||
59 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium | ||
60 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium | ||
61 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||
62 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||
63 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||
64 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||
65 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
66 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.Build.0 = Debug|Itanium | ||
67 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
68 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32 | ||
69 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64 | ||
70 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64 | ||
71 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Itanium | ||
72 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.Build.0 = Release|Itanium | ||
73 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32 | ||
74 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32 | ||
75 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64 | ||
76 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64 | ||
77 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium | ||
78 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium | ||
79 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||
80 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||
81 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||
82 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||
83 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
84 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Itanium.Build.0 = Debug|Itanium | ||
85 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
86 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.Build.0 = Debug|Win32 | ||
87 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.ActiveCfg = Debug|x64 | ||
88 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.Build.0 = Debug|x64 | ||
89 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Itanium.ActiveCfg = Release|Itanium | ||
90 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Itanium.Build.0 = Release|Itanium | ||
91 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.ActiveCfg = Release|Win32 | ||
92 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.Build.0 = Release|Win32 | ||
93 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.ActiveCfg = Release|x64 | ||
94 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.Build.0 = Release|x64 | ||
95 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium | ||
96 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium | ||
97 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium | ||
98 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium | ||
99 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
100 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.Build.0 = Debug|Itanium | ||
101 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
102 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32 | ||
103 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64 | ||
104 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64 | ||
105 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Itanium | ||
106 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.Build.0 = Release|Itanium | ||
107 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32 | ||
108 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32 | ||
109 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64 | ||
110 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64 | ||
111 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium | ||
112 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium | ||
113 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium | ||
114 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium | ||
115 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
116 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Itanium.Build.0 = Debug|Itanium | ||
117 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
118 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.Build.0 = Debug|Win32 | ||
119 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.ActiveCfg = Debug|x64 | ||
120 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.Build.0 = Debug|x64 | ||
121 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Itanium.ActiveCfg = Release|Itanium | ||
122 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Itanium.Build.0 = Release|Itanium | ||
123 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.ActiveCfg = Release|Win32 | ||
124 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.Build.0 = Release|Win32 | ||
125 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.ActiveCfg = Release|x64 | ||
126 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.Build.0 = Release|x64 | ||
127 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium | ||
128 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium | ||
129 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium | ||
130 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium | ||
131 | EndGlobalSection | ||
132 | GlobalSection(SolutionProperties) = preSolution | ||
133 | HideSolutionNode = FALSE | ||
134 | EndGlobalSection | ||
135 | EndGlobal | ||
diff --git a/contrib/vstudio/vc10/zlibvc.vcxproj b/contrib/vstudio/vc10/zlibvc.vcxproj new file mode 100644 index 0000000..e1067fa --- /dev/null +++ b/contrib/vstudio/vc10/zlibvc.vcxproj | |||
@@ -0,0 +1,669 @@ | |||
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|Itanium"> | ||
5 | <Configuration>Debug</Configuration> | ||
6 | <Platform>Itanium</Platform> | ||
7 | </ProjectConfiguration> | ||
8 | <ProjectConfiguration Include="Debug|Win32"> | ||
9 | <Configuration>Debug</Configuration> | ||
10 | <Platform>Win32</Platform> | ||
11 | </ProjectConfiguration> | ||
12 | <ProjectConfiguration Include="Debug|x64"> | ||
13 | <Configuration>Debug</Configuration> | ||
14 | <Platform>x64</Platform> | ||
15 | </ProjectConfiguration> | ||
16 | <ProjectConfiguration Include="ReleaseWithoutAsm|Itanium"> | ||
17 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
18 | <Platform>Itanium</Platform> | ||
19 | </ProjectConfiguration> | ||
20 | <ProjectConfiguration Include="ReleaseWithoutAsm|Win32"> | ||
21 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
22 | <Platform>Win32</Platform> | ||
23 | </ProjectConfiguration> | ||
24 | <ProjectConfiguration Include="ReleaseWithoutAsm|x64"> | ||
25 | <Configuration>ReleaseWithoutAsm</Configuration> | ||
26 | <Platform>x64</Platform> | ||
27 | </ProjectConfiguration> | ||
28 | <ProjectConfiguration Include="Release|Itanium"> | ||
29 | <Configuration>Release</Configuration> | ||
30 | <Platform>Itanium</Platform> | ||
31 | </ProjectConfiguration> | ||
32 | <ProjectConfiguration Include="Release|Win32"> | ||
33 | <Configuration>Release</Configuration> | ||
34 | <Platform>Win32</Platform> | ||
35 | </ProjectConfiguration> | ||
36 | <ProjectConfiguration Include="Release|x64"> | ||
37 | <Configuration>Release</Configuration> | ||
38 | <Platform>x64</Platform> | ||
39 | </ProjectConfiguration> | ||
40 | </ItemGroup> | ||
41 | <PropertyGroup Label="Globals"> | ||
42 | <ProjectGuid>{8FD826F8-3739-44E6-8CC8-997122E53B8D}</ProjectGuid> | ||
43 | </PropertyGroup> | ||
44 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
45 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
46 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
47 | <UseOfMfc>false</UseOfMfc> | ||
48 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
49 | </PropertyGroup> | ||
50 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="Configuration"> | ||
51 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
52 | <UseOfMfc>false</UseOfMfc> | ||
53 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
54 | </PropertyGroup> | ||
55 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
56 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
57 | <UseOfMfc>false</UseOfMfc> | ||
58 | </PropertyGroup> | ||
59 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration"> | ||
60 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
61 | <UseOfMfc>false</UseOfMfc> | ||
62 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
63 | </PropertyGroup> | ||
64 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="Configuration"> | ||
65 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
66 | <UseOfMfc>false</UseOfMfc> | ||
67 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
68 | </PropertyGroup> | ||
69 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration"> | ||
70 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
71 | <UseOfMfc>false</UseOfMfc> | ||
72 | </PropertyGroup> | ||
73 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
74 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
75 | <UseOfMfc>false</UseOfMfc> | ||
76 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
77 | </PropertyGroup> | ||
78 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="Configuration"> | ||
79 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
80 | <UseOfMfc>false</UseOfMfc> | ||
81 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
82 | </PropertyGroup> | ||
83 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||
84 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
85 | <UseOfMfc>false</UseOfMfc> | ||
86 | </PropertyGroup> | ||
87 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
88 | <ImportGroup Label="ExtensionSettings"> | ||
89 | </ImportGroup> | ||
90 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> | ||
91 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
92 | </ImportGroup> | ||
93 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" Label="PropertySheets"> | ||
94 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
95 | </ImportGroup> | ||
96 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> | ||
97 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
98 | </ImportGroup> | ||
99 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="PropertySheets"> | ||
100 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
101 | </ImportGroup> | ||
102 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" Label="PropertySheets"> | ||
103 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
104 | </ImportGroup> | ||
105 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="PropertySheets"> | ||
106 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
107 | </ImportGroup> | ||
108 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||
109 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
110 | </ImportGroup> | ||
111 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" Label="PropertySheets"> | ||
112 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
113 | </ImportGroup> | ||
114 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | ||
115 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
116 | </ImportGroup> | ||
117 | <PropertyGroup Label="UserMacros" /> | ||
118 | <PropertyGroup> | ||
119 | <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> | ||
120 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\ZlibDll$(Configuration)\</OutDir> | ||
121 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
122 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> | ||
123 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</GenerateManifest> | ||
124 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\ZlibDll$(Configuration)\</OutDir> | ||
125 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
126 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">false</LinkIncremental> | ||
127 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">false</GenerateManifest> | ||
128 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\ZlibDll$(Configuration)\</OutDir> | ||
129 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">x86\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
130 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> | ||
131 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</GenerateManifest> | ||
132 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\</OutDir> | ||
133 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
134 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> | ||
135 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> | ||
136 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> | ||
137 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
138 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</LinkIncremental> | ||
139 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">false</GenerateManifest> | ||
140 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\ZlibDll$(Configuration)\</OutDir> | ||
141 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
142 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">false</LinkIncremental> | ||
143 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">false</GenerateManifest> | ||
144 | <OutDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> | ||
145 | <IntDir Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
146 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">false</LinkIncremental> | ||
147 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">false</GenerateManifest> | ||
148 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\</OutDir> | ||
149 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
150 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> | ||
151 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</GenerateManifest> | ||
152 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\ZlibDll$(Configuration)\</OutDir> | ||
153 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ia64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
154 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</LinkIncremental> | ||
155 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">false</GenerateManifest> | ||
156 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
157 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
158 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" /> | ||
159 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
160 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
161 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
162 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
163 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
164 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
165 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
166 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> | ||
167 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'" /> | ||
168 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
169 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> | ||
170 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'" /> | ||
171 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
172 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> | ||
173 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'" /> | ||
174 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
175 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
176 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" /> | ||
177 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
178 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
179 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
180 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
181 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
182 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
183 | </PropertyGroup> | ||
184 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
185 | <Midl> | ||
186 | <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
187 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
188 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
189 | <TargetEnvironment>Win32</TargetEnvironment> | ||
190 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
191 | </Midl> | ||
192 | <ClCompile> | ||
193 | <Optimization>Disabled</Optimization> | ||
194 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
195 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
196 | <ExceptionHandling> | ||
197 | </ExceptionHandling> | ||
198 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
199 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
200 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
201 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
202 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
203 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
204 | <BrowseInformation> | ||
205 | </BrowseInformation> | ||
206 | <WarningLevel>Level3</WarningLevel> | ||
207 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
208 | <DebugInformationFormat>EditAndContinue</DebugInformationFormat> | ||
209 | </ClCompile> | ||
210 | <ResourceCompile> | ||
211 | <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
212 | <Culture>0x040c</Culture> | ||
213 | </ResourceCompile> | ||
214 | <Link> | ||
215 | <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> | ||
216 | <AdditionalDependencies>..\..\masmx86\gvmat32.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
217 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
218 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
219 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
220 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
221 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
222 | <GenerateMapFile>true</GenerateMapFile> | ||
223 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
224 | <SubSystem>Windows</SubSystem> | ||
225 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
226 | <DataExecutionPrevention> | ||
227 | </DataExecutionPrevention> | ||
228 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
229 | </Link> | ||
230 | </ItemDefinitionGroup> | ||
231 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'"> | ||
232 | <Midl> | ||
233 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
234 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
235 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
236 | <TargetEnvironment>Win32</TargetEnvironment> | ||
237 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
238 | </Midl> | ||
239 | <ClCompile> | ||
240 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
241 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
242 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
243 | <StringPooling>true</StringPooling> | ||
244 | <ExceptionHandling> | ||
245 | </ExceptionHandling> | ||
246 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
247 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
248 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
249 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
250 | <AssemblerOutput>All</AssemblerOutput> | ||
251 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
252 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
253 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
254 | <BrowseInformation> | ||
255 | </BrowseInformation> | ||
256 | <WarningLevel>Level3</WarningLevel> | ||
257 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
258 | </ClCompile> | ||
259 | <ResourceCompile> | ||
260 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
261 | <Culture>0x040c</Culture> | ||
262 | </ResourceCompile> | ||
263 | <Link> | ||
264 | <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> | ||
265 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
266 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
267 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
268 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
269 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
270 | <GenerateMapFile>true</GenerateMapFile> | ||
271 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
272 | <SubSystem>Windows</SubSystem> | ||
273 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
274 | <DataExecutionPrevention> | ||
275 | </DataExecutionPrevention> | ||
276 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
277 | </Link> | ||
278 | </ItemDefinitionGroup> | ||
279 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
280 | <Midl> | ||
281 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
282 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
283 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
284 | <TargetEnvironment>Win32</TargetEnvironment> | ||
285 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
286 | </Midl> | ||
287 | <ClCompile> | ||
288 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
289 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
290 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
291 | <StringPooling>true</StringPooling> | ||
292 | <ExceptionHandling> | ||
293 | </ExceptionHandling> | ||
294 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
295 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
296 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
297 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
298 | <AssemblerOutput>All</AssemblerOutput> | ||
299 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
300 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
301 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
302 | <BrowseInformation> | ||
303 | </BrowseInformation> | ||
304 | <WarningLevel>Level3</WarningLevel> | ||
305 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
306 | </ClCompile> | ||
307 | <ResourceCompile> | ||
308 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
309 | <Culture>0x040c</Culture> | ||
310 | </ResourceCompile> | ||
311 | <Link> | ||
312 | <AdditionalOptions>/MACHINE:I386 %(AdditionalOptions)</AdditionalOptions> | ||
313 | <AdditionalDependencies>..\..\masmx86\gvmat32.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
314 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
315 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
316 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
317 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
318 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
319 | <GenerateMapFile>true</GenerateMapFile> | ||
320 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
321 | <SubSystem>Windows</SubSystem> | ||
322 | <RandomizedBaseAddress>false</RandomizedBaseAddress> | ||
323 | <DataExecutionPrevention> | ||
324 | </DataExecutionPrevention> | ||
325 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
326 | </Link> | ||
327 | </ItemDefinitionGroup> | ||
328 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
329 | <Midl> | ||
330 | <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
331 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
332 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
333 | <TargetEnvironment>X64</TargetEnvironment> | ||
334 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
335 | </Midl> | ||
336 | <ClCompile> | ||
337 | <Optimization>Disabled</Optimization> | ||
338 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
339 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
340 | <ExceptionHandling> | ||
341 | </ExceptionHandling> | ||
342 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
343 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
344 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
345 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
346 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
347 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
348 | <BrowseInformation> | ||
349 | </BrowseInformation> | ||
350 | <WarningLevel>Level3</WarningLevel> | ||
351 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
352 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
353 | </ClCompile> | ||
354 | <ResourceCompile> | ||
355 | <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
356 | <Culture>0x040c</Culture> | ||
357 | </ResourceCompile> | ||
358 | <Link> | ||
359 | <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
360 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
361 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
362 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
363 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
364 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
365 | <GenerateMapFile>true</GenerateMapFile> | ||
366 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
367 | <SubSystem>Windows</SubSystem> | ||
368 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
369 | <TargetMachine>MachineX64</TargetMachine> | ||
370 | </Link> | ||
371 | </ItemDefinitionGroup> | ||
372 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'"> | ||
373 | <Midl> | ||
374 | <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
375 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
376 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
377 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
378 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
379 | </Midl> | ||
380 | <ClCompile> | ||
381 | <Optimization>Disabled</Optimization> | ||
382 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
383 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
384 | <ExceptionHandling> | ||
385 | </ExceptionHandling> | ||
386 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
387 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
388 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
389 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
390 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
391 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
392 | <BrowseInformation> | ||
393 | </BrowseInformation> | ||
394 | <WarningLevel>Level3</WarningLevel> | ||
395 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
396 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
397 | </ClCompile> | ||
398 | <ResourceCompile> | ||
399 | <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
400 | <Culture>0x040c</Culture> | ||
401 | </ResourceCompile> | ||
402 | <Link> | ||
403 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
404 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
405 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
406 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
407 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
408 | <GenerateMapFile>true</GenerateMapFile> | ||
409 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
410 | <SubSystem>Windows</SubSystem> | ||
411 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
412 | <TargetMachine>MachineIA64</TargetMachine> | ||
413 | </Link> | ||
414 | </ItemDefinitionGroup> | ||
415 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'"> | ||
416 | <Midl> | ||
417 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
418 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
419 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
420 | <TargetEnvironment>X64</TargetEnvironment> | ||
421 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
422 | </Midl> | ||
423 | <ClCompile> | ||
424 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
425 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
426 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
427 | <StringPooling>true</StringPooling> | ||
428 | <ExceptionHandling> | ||
429 | </ExceptionHandling> | ||
430 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
431 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
432 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
433 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
434 | <AssemblerOutput>All</AssemblerOutput> | ||
435 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
436 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
437 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
438 | <BrowseInformation> | ||
439 | </BrowseInformation> | ||
440 | <WarningLevel>Level3</WarningLevel> | ||
441 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
442 | </ClCompile> | ||
443 | <ResourceCompile> | ||
444 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
445 | <Culture>0x040c</Culture> | ||
446 | </ResourceCompile> | ||
447 | <Link> | ||
448 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
449 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
450 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
451 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
452 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
453 | <GenerateMapFile>true</GenerateMapFile> | ||
454 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
455 | <SubSystem>Windows</SubSystem> | ||
456 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
457 | <TargetMachine>MachineX64</TargetMachine> | ||
458 | </Link> | ||
459 | </ItemDefinitionGroup> | ||
460 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'"> | ||
461 | <Midl> | ||
462 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
463 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
464 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
465 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
466 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
467 | </Midl> | ||
468 | <ClCompile> | ||
469 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
470 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
471 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
472 | <StringPooling>true</StringPooling> | ||
473 | <ExceptionHandling> | ||
474 | </ExceptionHandling> | ||
475 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
476 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
477 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
478 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
479 | <AssemblerOutput>All</AssemblerOutput> | ||
480 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
481 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
482 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
483 | <BrowseInformation> | ||
484 | </BrowseInformation> | ||
485 | <WarningLevel>Level3</WarningLevel> | ||
486 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
487 | </ClCompile> | ||
488 | <ResourceCompile> | ||
489 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
490 | <Culture>0x040c</Culture> | ||
491 | </ResourceCompile> | ||
492 | <Link> | ||
493 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
494 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
495 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
496 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
497 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
498 | <GenerateMapFile>true</GenerateMapFile> | ||
499 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
500 | <SubSystem>Windows</SubSystem> | ||
501 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
502 | <TargetMachine>MachineIA64</TargetMachine> | ||
503 | </Link> | ||
504 | </ItemDefinitionGroup> | ||
505 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
506 | <Midl> | ||
507 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
508 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
509 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
510 | <TargetEnvironment>X64</TargetEnvironment> | ||
511 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
512 | </Midl> | ||
513 | <ClCompile> | ||
514 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
515 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
516 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
517 | <StringPooling>true</StringPooling> | ||
518 | <ExceptionHandling> | ||
519 | </ExceptionHandling> | ||
520 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
521 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
522 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
523 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
524 | <AssemblerOutput>All</AssemblerOutput> | ||
525 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
526 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
527 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
528 | <BrowseInformation> | ||
529 | </BrowseInformation> | ||
530 | <WarningLevel>Level3</WarningLevel> | ||
531 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
532 | </ClCompile> | ||
533 | <ResourceCompile> | ||
534 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
535 | <Culture>0x040c</Culture> | ||
536 | </ResourceCompile> | ||
537 | <Link> | ||
538 | <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
539 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
540 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
541 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
542 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
543 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
544 | <GenerateMapFile>true</GenerateMapFile> | ||
545 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
546 | <SubSystem>Windows</SubSystem> | ||
547 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
548 | <TargetMachine>MachineX64</TargetMachine> | ||
549 | </Link> | ||
550 | </ItemDefinitionGroup> | ||
551 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'"> | ||
552 | <Midl> | ||
553 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
554 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
555 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
556 | <TargetEnvironment>Itanium</TargetEnvironment> | ||
557 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
558 | </Midl> | ||
559 | <ClCompile> | ||
560 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
561 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
562 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
563 | <StringPooling>true</StringPooling> | ||
564 | <ExceptionHandling> | ||
565 | </ExceptionHandling> | ||
566 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
567 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
568 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
569 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
570 | <AssemblerOutput>All</AssemblerOutput> | ||
571 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
572 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
573 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
574 | <BrowseInformation> | ||
575 | </BrowseInformation> | ||
576 | <WarningLevel>Level3</WarningLevel> | ||
577 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
578 | </ClCompile> | ||
579 | <ResourceCompile> | ||
580 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
581 | <Culture>0x040c</Culture> | ||
582 | </ResourceCompile> | ||
583 | <Link> | ||
584 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
585 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
586 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
587 | <ModuleDefinitionFile>.\zlibvc.def</ModuleDefinitionFile> | ||
588 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
589 | <GenerateMapFile>true</GenerateMapFile> | ||
590 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
591 | <SubSystem>Windows</SubSystem> | ||
592 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
593 | <TargetMachine>MachineIA64</TargetMachine> | ||
594 | </Link> | ||
595 | </ItemDefinitionGroup> | ||
596 | <ItemGroup> | ||
597 | <ClCompile Include="..\..\..\adler32.c" /> | ||
598 | <ClCompile Include="..\..\..\compress.c" /> | ||
599 | <ClCompile Include="..\..\..\crc32.c" /> | ||
600 | <ClCompile Include="..\..\..\deflate.c" /> | ||
601 | <ClCompile Include="..\..\masmx86\gvmat32c.c"> | ||
602 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</ExcludedFromBuild> | ||
603 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild> | ||
604 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">true</ExcludedFromBuild> | ||
605 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">true</ExcludedFromBuild> | ||
606 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|x64'">true</ExcludedFromBuild> | ||
607 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">true</ExcludedFromBuild> | ||
608 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild> | ||
609 | </ClCompile> | ||
610 | <ClCompile Include="..\..\..\gzclose.c" /> | ||
611 | <ClCompile Include="..\..\..\gzio.c" /> | ||
612 | <ClCompile Include="..\..\..\gzlib.c" /> | ||
613 | <ClCompile Include="..\..\..\gzread.c" /> | ||
614 | <ClCompile Include="..\..\..\gzwrite.c" /> | ||
615 | <ClCompile Include="..\..\..\infback.c" /> | ||
616 | <ClCompile Include="..\..\masmx64\inffas8664.c"> | ||
617 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'">true</ExcludedFromBuild> | ||
618 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild> | ||
619 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Itanium'">true</ExcludedFromBuild> | ||
620 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseWithoutAsm|Win32'">true</ExcludedFromBuild> | ||
621 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">true</ExcludedFromBuild> | ||
622 | <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild> | ||
623 | </ClCompile> | ||
624 | <ClCompile Include="..\..\..\inffast.c" /> | ||
625 | <ClCompile Include="..\..\..\inflate.c" /> | ||
626 | <ClCompile Include="..\..\..\inftrees.c" /> | ||
627 | <ClCompile Include="..\..\minizip\ioapi.c" /> | ||
628 | <ClCompile Include="..\..\minizip\iowin32.c" /> | ||
629 | <ClCompile Include="..\..\..\trees.c" /> | ||
630 | <ClCompile Include="..\..\..\uncompr.c" /> | ||
631 | <ClCompile Include="..\..\minizip\unzip.c"> | ||
632 | <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
633 | <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
634 | <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
635 | <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
636 | <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
637 | <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
638 | </ClCompile> | ||
639 | <ClCompile Include="..\..\minizip\zip.c"> | ||
640 | <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
641 | <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
642 | <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
643 | <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
644 | <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
645 | <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
646 | </ClCompile> | ||
647 | <ClCompile Include="..\..\..\zutil.c" /> | ||
648 | </ItemGroup> | ||
649 | <ItemGroup> | ||
650 | <ResourceCompile Include="zlib.rc" /> | ||
651 | </ItemGroup> | ||
652 | <ItemGroup> | ||
653 | <None Include="zlibvc.def" /> | ||
654 | </ItemGroup> | ||
655 | <ItemGroup> | ||
656 | <ClInclude Include="..\..\..\deflate.h" /> | ||
657 | <ClInclude Include="..\..\..\infblock.h" /> | ||
658 | <ClInclude Include="..\..\..\infcodes.h" /> | ||
659 | <ClInclude Include="..\..\..\inffast.h" /> | ||
660 | <ClInclude Include="..\..\..\inftrees.h" /> | ||
661 | <ClInclude Include="..\..\..\infutil.h" /> | ||
662 | <ClInclude Include="..\..\..\zconf.h" /> | ||
663 | <ClInclude Include="..\..\..\zlib.h" /> | ||
664 | <ClInclude Include="..\..\..\zutil.h" /> | ||
665 | </ItemGroup> | ||
666 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
667 | <ImportGroup Label="ExtensionTargets"> | ||
668 | </ImportGroup> | ||
669 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/zlibvc.vcxproj.filters b/contrib/vstudio/vc10/zlibvc.vcxproj.filters new file mode 100644 index 0000000..7b595c4 --- /dev/null +++ b/contrib/vstudio/vc10/zlibvc.vcxproj.filters | |||
@@ -0,0 +1,124 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | <ItemGroup> | ||
4 | <Filter Include="Source Files"> | ||
5 | <UniqueIdentifier>{07934a85-8b61-443d-a0ee-b2eedb74f3cd}</UniqueIdentifier> | ||
6 | <Extensions>cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90</Extensions> | ||
7 | </Filter> | ||
8 | <Filter Include="Header Files"> | ||
9 | <UniqueIdentifier>{1d99675b-433d-4a21-9e50-ed4ab8b19762}</UniqueIdentifier> | ||
10 | <Extensions>h;hpp;hxx;hm;inl;fi;fd</Extensions> | ||
11 | </Filter> | ||
12 | <Filter Include="Resource Files"> | ||
13 | <UniqueIdentifier>{431c0958-fa71-44d0-9084-2d19d100c0cc}</UniqueIdentifier> | ||
14 | <Extensions>ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe</Extensions> | ||
15 | </Filter> | ||
16 | </ItemGroup> | ||
17 | <ItemGroup> | ||
18 | <ClCompile Include="..\..\..\adler32.c"> | ||
19 | <Filter>Source Files</Filter> | ||
20 | </ClCompile> | ||
21 | <ClCompile Include="..\..\..\compress.c"> | ||
22 | <Filter>Source Files</Filter> | ||
23 | </ClCompile> | ||
24 | <ClCompile Include="..\..\..\crc32.c"> | ||
25 | <Filter>Source Files</Filter> | ||
26 | </ClCompile> | ||
27 | <ClCompile Include="..\..\..\deflate.c"> | ||
28 | <Filter>Source Files</Filter> | ||
29 | </ClCompile> | ||
30 | <ClCompile Include="..\..\masmx86\gvmat32c.c"> | ||
31 | <Filter>Source Files</Filter> | ||
32 | </ClCompile> | ||
33 | <ClCompile Include="..\..\..\gzclose.c"> | ||
34 | <Filter>Source Files</Filter> | ||
35 | </ClCompile> | ||
36 | <ClCompile Include="..\..\..\gzio.c"> | ||
37 | <Filter>Source Files</Filter> | ||
38 | </ClCompile> | ||
39 | <ClCompile Include="..\..\..\gzlib.c"> | ||
40 | <Filter>Source Files</Filter> | ||
41 | </ClCompile> | ||
42 | <ClCompile Include="..\..\..\gzread.c"> | ||
43 | <Filter>Source Files</Filter> | ||
44 | </ClCompile> | ||
45 | <ClCompile Include="..\..\..\gzwrite.c"> | ||
46 | <Filter>Source Files</Filter> | ||
47 | </ClCompile> | ||
48 | <ClCompile Include="..\..\..\infback.c"> | ||
49 | <Filter>Source Files</Filter> | ||
50 | </ClCompile> | ||
51 | <ClCompile Include="..\..\masmx64\inffas8664.c"> | ||
52 | <Filter>Source Files</Filter> | ||
53 | </ClCompile> | ||
54 | <ClCompile Include="..\..\..\inffast.c"> | ||
55 | <Filter>Source Files</Filter> | ||
56 | </ClCompile> | ||
57 | <ClCompile Include="..\..\..\inflate.c"> | ||
58 | <Filter>Source Files</Filter> | ||
59 | </ClCompile> | ||
60 | <ClCompile Include="..\..\..\inftrees.c"> | ||
61 | <Filter>Source Files</Filter> | ||
62 | </ClCompile> | ||
63 | <ClCompile Include="..\..\minizip\ioapi.c"> | ||
64 | <Filter>Source Files</Filter> | ||
65 | </ClCompile> | ||
66 | <ClCompile Include="..\..\minizip\iowin32.c"> | ||
67 | <Filter>Source Files</Filter> | ||
68 | </ClCompile> | ||
69 | <ClCompile Include="..\..\..\trees.c"> | ||
70 | <Filter>Source Files</Filter> | ||
71 | </ClCompile> | ||
72 | <ClCompile Include="..\..\..\uncompr.c"> | ||
73 | <Filter>Source Files</Filter> | ||
74 | </ClCompile> | ||
75 | <ClCompile Include="..\..\minizip\unzip.c"> | ||
76 | <Filter>Source Files</Filter> | ||
77 | </ClCompile> | ||
78 | <ClCompile Include="..\..\minizip\zip.c"> | ||
79 | <Filter>Source Files</Filter> | ||
80 | </ClCompile> | ||
81 | <ClCompile Include="..\..\..\zutil.c"> | ||
82 | <Filter>Source Files</Filter> | ||
83 | </ClCompile> | ||
84 | </ItemGroup> | ||
85 | <ItemGroup> | ||
86 | <ResourceCompile Include="zlib.rc"> | ||
87 | <Filter>Source Files</Filter> | ||
88 | </ResourceCompile> | ||
89 | </ItemGroup> | ||
90 | <ItemGroup> | ||
91 | <None Include="zlibvc.def"> | ||
92 | <Filter>Source Files</Filter> | ||
93 | </None> | ||
94 | </ItemGroup> | ||
95 | <ItemGroup> | ||
96 | <ClInclude Include="..\..\..\deflate.h"> | ||
97 | <Filter>Header Files</Filter> | ||
98 | </ClInclude> | ||
99 | <ClInclude Include="..\..\..\infblock.h"> | ||
100 | <Filter>Header Files</Filter> | ||
101 | </ClInclude> | ||
102 | <ClInclude Include="..\..\..\infcodes.h"> | ||
103 | <Filter>Header Files</Filter> | ||
104 | </ClInclude> | ||
105 | <ClInclude Include="..\..\..\inffast.h"> | ||
106 | <Filter>Header Files</Filter> | ||
107 | </ClInclude> | ||
108 | <ClInclude Include="..\..\..\inftrees.h"> | ||
109 | <Filter>Header Files</Filter> | ||
110 | </ClInclude> | ||
111 | <ClInclude Include="..\..\..\infutil.h"> | ||
112 | <Filter>Header Files</Filter> | ||
113 | </ClInclude> | ||
114 | <ClInclude Include="..\..\..\zconf.h"> | ||
115 | <Filter>Header Files</Filter> | ||
116 | </ClInclude> | ||
117 | <ClInclude Include="..\..\..\zlib.h"> | ||
118 | <Filter>Header Files</Filter> | ||
119 | </ClInclude> | ||
120 | <ClInclude Include="..\..\..\zutil.h"> | ||
121 | <Filter>Header Files</Filter> | ||
122 | </ClInclude> | ||
123 | </ItemGroup> | ||
124 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc10/zlibvc.vcxproj.user b/contrib/vstudio/vc10/zlibvc.vcxproj.user new file mode 100644 index 0000000..695b5c7 --- /dev/null +++ b/contrib/vstudio/vc10/zlibvc.vcxproj.user | |||
@@ -0,0 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
3 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc7/miniunz.vcproj b/contrib/vstudio/vc7/miniunz.vcproj deleted file mode 100644 index ad5117c..0000000 --- a/contrib/vstudio/vc7/miniunz.vcproj +++ /dev/null | |||
@@ -1,126 +0,0 @@ | |||
1 | <?xml version="1.0" encoding = "Windows-1252"?> | ||
2 | <VisualStudioProject | ||
3 | ProjectType="Visual C++" | ||
4 | Version="7.00" | ||
5 | Name="miniunz" | ||
6 | ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | ||
7 | Keyword="Win32Proj"> | ||
8 | <Platforms> | ||
9 | <Platform | ||
10 | Name="Win32"/> | ||
11 | </Platforms> | ||
12 | <Configurations> | ||
13 | <Configuration | ||
14 | Name="Debug|Win32" | ||
15 | OutputDirectory="Debug" | ||
16 | IntermediateDirectory="Debug" | ||
17 | ConfigurationType="1" | ||
18 | CharacterSet="2"> | ||
19 | <Tool | ||
20 | Name="VCCLCompilerTool" | ||
21 | Optimization="0" | ||
22 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
23 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE" | ||
24 | MinimalRebuild="TRUE" | ||
25 | BasicRuntimeChecks="3" | ||
26 | RuntimeLibrary="5" | ||
27 | UsePrecompiledHeader="0" | ||
28 | WarningLevel="3" | ||
29 | Detect64BitPortabilityProblems="TRUE" | ||
30 | DebugInformationFormat="4"/> | ||
31 | <Tool | ||
32 | Name="VCCustomBuildTool"/> | ||
33 | <Tool | ||
34 | Name="VCLinkerTool" | ||
35 | OutputFile="$(OutDir)/miniunz.exe" | ||
36 | LinkIncremental="2" | ||
37 | GenerateDebugInformation="TRUE" | ||
38 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | ||
39 | SubSystem="1" | ||
40 | TargetMachine="1"/> | ||
41 | <Tool | ||
42 | Name="VCMIDLTool"/> | ||
43 | <Tool | ||
44 | Name="VCPostBuildEventTool"/> | ||
45 | <Tool | ||
46 | Name="VCPreBuildEventTool"/> | ||
47 | <Tool | ||
48 | Name="VCPreLinkEventTool"/> | ||
49 | <Tool | ||
50 | Name="VCResourceCompilerTool"/> | ||
51 | <Tool | ||
52 | Name="VCWebServiceProxyGeneratorTool"/> | ||
53 | <Tool | ||
54 | Name="VCWebDeploymentTool"/> | ||
55 | </Configuration> | ||
56 | <Configuration | ||
57 | Name="Release|Win32" | ||
58 | OutputDirectory="Release" | ||
59 | IntermediateDirectory="Release" | ||
60 | ConfigurationType="1" | ||
61 | CharacterSet="2"> | ||
62 | <Tool | ||
63 | Name="VCCLCompilerTool" | ||
64 | Optimization="2" | ||
65 | InlineFunctionExpansion="1" | ||
66 | OmitFramePointers="TRUE" | ||
67 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
68 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE" | ||
69 | StringPooling="TRUE" | ||
70 | RuntimeLibrary="4" | ||
71 | EnableFunctionLevelLinking="TRUE" | ||
72 | UsePrecompiledHeader="0" | ||
73 | WarningLevel="3" | ||
74 | Detect64BitPortabilityProblems="TRUE" | ||
75 | DebugInformationFormat="3"/> | ||
76 | <Tool | ||
77 | Name="VCCustomBuildTool"/> | ||
78 | <Tool | ||
79 | Name="VCLinkerTool" | ||
80 | OutputFile="$(OutDir)/miniunz.exe" | ||
81 | LinkIncremental="1" | ||
82 | GenerateDebugInformation="TRUE" | ||
83 | SubSystem="1" | ||
84 | OptimizeReferences="2" | ||
85 | EnableCOMDATFolding="2" | ||
86 | OptimizeForWindows98="1" | ||
87 | TargetMachine="1"/> | ||
88 | <Tool | ||
89 | Name="VCMIDLTool"/> | ||
90 | <Tool | ||
91 | Name="VCPostBuildEventTool"/> | ||
92 | <Tool | ||
93 | Name="VCPreBuildEventTool"/> | ||
94 | <Tool | ||
95 | Name="VCPreLinkEventTool"/> | ||
96 | <Tool | ||
97 | Name="VCResourceCompilerTool"/> | ||
98 | <Tool | ||
99 | Name="VCWebServiceProxyGeneratorTool"/> | ||
100 | <Tool | ||
101 | Name="VCWebDeploymentTool"/> | ||
102 | </Configuration> | ||
103 | </Configurations> | ||
104 | <Files> | ||
105 | <Filter | ||
106 | Name="Source Files" | ||
107 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> | ||
108 | <File | ||
109 | RelativePath="..\..\minizip\miniunz.c"> | ||
110 | </File> | ||
111 | </Filter> | ||
112 | <Filter | ||
113 | Name="Header Files" | ||
114 | Filter="h;hpp;hxx;hm;inl;inc"> | ||
115 | </Filter> | ||
116 | <Filter | ||
117 | Name="Resource Files" | ||
118 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> | ||
119 | </Filter> | ||
120 | <File | ||
121 | RelativePath="ReleaseDll\zlibwapi.lib"> | ||
122 | </File> | ||
123 | </Files> | ||
124 | <Globals> | ||
125 | </Globals> | ||
126 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc7/minizip.vcproj b/contrib/vstudio/vc7/minizip.vcproj deleted file mode 100644 index fb5b632..0000000 --- a/contrib/vstudio/vc7/minizip.vcproj +++ /dev/null | |||
@@ -1,126 +0,0 @@ | |||
1 | <?xml version="1.0" encoding = "Windows-1252"?> | ||
2 | <VisualStudioProject | ||
3 | ProjectType="Visual C++" | ||
4 | Version="7.00" | ||
5 | Name="minizip" | ||
6 | ProjectGUID="{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | ||
7 | Keyword="Win32Proj"> | ||
8 | <Platforms> | ||
9 | <Platform | ||
10 | Name="Win32"/> | ||
11 | </Platforms> | ||
12 | <Configurations> | ||
13 | <Configuration | ||
14 | Name="Debug|Win32" | ||
15 | OutputDirectory="Debug" | ||
16 | IntermediateDirectory="Debug" | ||
17 | ConfigurationType="1" | ||
18 | CharacterSet="2"> | ||
19 | <Tool | ||
20 | Name="VCCLCompilerTool" | ||
21 | Optimization="0" | ||
22 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
23 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE" | ||
24 | MinimalRebuild="TRUE" | ||
25 | BasicRuntimeChecks="3" | ||
26 | RuntimeLibrary="5" | ||
27 | UsePrecompiledHeader="0" | ||
28 | WarningLevel="3" | ||
29 | Detect64BitPortabilityProblems="TRUE" | ||
30 | DebugInformationFormat="4"/> | ||
31 | <Tool | ||
32 | Name="VCCustomBuildTool"/> | ||
33 | <Tool | ||
34 | Name="VCLinkerTool" | ||
35 | OutputFile="$(OutDir)/minizip.exe" | ||
36 | LinkIncremental="2" | ||
37 | GenerateDebugInformation="TRUE" | ||
38 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" | ||
39 | SubSystem="1" | ||
40 | TargetMachine="1"/> | ||
41 | <Tool | ||
42 | Name="VCMIDLTool"/> | ||
43 | <Tool | ||
44 | Name="VCPostBuildEventTool"/> | ||
45 | <Tool | ||
46 | Name="VCPreBuildEventTool"/> | ||
47 | <Tool | ||
48 | Name="VCPreLinkEventTool"/> | ||
49 | <Tool | ||
50 | Name="VCResourceCompilerTool"/> | ||
51 | <Tool | ||
52 | Name="VCWebServiceProxyGeneratorTool"/> | ||
53 | <Tool | ||
54 | Name="VCWebDeploymentTool"/> | ||
55 | </Configuration> | ||
56 | <Configuration | ||
57 | Name="Release|Win32" | ||
58 | OutputDirectory="Release" | ||
59 | IntermediateDirectory="Release" | ||
60 | ConfigurationType="1" | ||
61 | CharacterSet="2"> | ||
62 | <Tool | ||
63 | Name="VCCLCompilerTool" | ||
64 | Optimization="2" | ||
65 | InlineFunctionExpansion="1" | ||
66 | OmitFramePointers="TRUE" | ||
67 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
68 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE" | ||
69 | StringPooling="TRUE" | ||
70 | RuntimeLibrary="4" | ||
71 | EnableFunctionLevelLinking="TRUE" | ||
72 | UsePrecompiledHeader="0" | ||
73 | WarningLevel="3" | ||
74 | Detect64BitPortabilityProblems="TRUE" | ||
75 | DebugInformationFormat="3"/> | ||
76 | <Tool | ||
77 | Name="VCCustomBuildTool"/> | ||
78 | <Tool | ||
79 | Name="VCLinkerTool" | ||
80 | OutputFile="$(OutDir)/minizip.exe" | ||
81 | LinkIncremental="1" | ||
82 | GenerateDebugInformation="TRUE" | ||
83 | SubSystem="1" | ||
84 | OptimizeReferences="2" | ||
85 | EnableCOMDATFolding="2" | ||
86 | OptimizeForWindows98="1" | ||
87 | TargetMachine="1"/> | ||
88 | <Tool | ||
89 | Name="VCMIDLTool"/> | ||
90 | <Tool | ||
91 | Name="VCPostBuildEventTool"/> | ||
92 | <Tool | ||
93 | Name="VCPreBuildEventTool"/> | ||
94 | <Tool | ||
95 | Name="VCPreLinkEventTool"/> | ||
96 | <Tool | ||
97 | Name="VCResourceCompilerTool"/> | ||
98 | <Tool | ||
99 | Name="VCWebServiceProxyGeneratorTool"/> | ||
100 | <Tool | ||
101 | Name="VCWebDeploymentTool"/> | ||
102 | </Configuration> | ||
103 | </Configurations> | ||
104 | <Files> | ||
105 | <Filter | ||
106 | Name="Source Files" | ||
107 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> | ||
108 | <File | ||
109 | RelativePath="..\..\minizip\minizip.c"> | ||
110 | </File> | ||
111 | </Filter> | ||
112 | <Filter | ||
113 | Name="Header Files" | ||
114 | Filter="h;hpp;hxx;hm;inl;inc"> | ||
115 | </Filter> | ||
116 | <Filter | ||
117 | Name="Resource Files" | ||
118 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> | ||
119 | </Filter> | ||
120 | <File | ||
121 | RelativePath="ReleaseDll\zlibwapi.lib"> | ||
122 | </File> | ||
123 | </Files> | ||
124 | <Globals> | ||
125 | </Globals> | ||
126 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc7/testzlib.vcproj b/contrib/vstudio/vc7/testzlib.vcproj deleted file mode 100644 index 97bc3e8..0000000 --- a/contrib/vstudio/vc7/testzlib.vcproj +++ /dev/null | |||
@@ -1,126 +0,0 @@ | |||
1 | <?xml version="1.0" encoding = "Windows-1252"?> | ||
2 | <VisualStudioProject | ||
3 | ProjectType="Visual C++" | ||
4 | Version="7.00" | ||
5 | Name="testZlibDll" | ||
6 | ProjectGUID="{AA6666AA-E09F-4135-9C0C-4FE50C3C654C}" | ||
7 | Keyword="Win32Proj"> | ||
8 | <Platforms> | ||
9 | <Platform | ||
10 | Name="Win32"/> | ||
11 | </Platforms> | ||
12 | <Configurations> | ||
13 | <Configuration | ||
14 | Name="Debug|Win32" | ||
15 | OutputDirectory="Debug" | ||
16 | IntermediateDirectory="Debug" | ||
17 | ConfigurationType="1" | ||
18 | CharacterSet="2"> | ||
19 | <Tool | ||
20 | Name="VCCLCompilerTool" | ||
21 | Optimization="0" | ||
22 | AdditionalIncludeDirectories="..\..\.." | ||
23 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE" | ||
24 | MinimalRebuild="TRUE" | ||
25 | BasicRuntimeChecks="3" | ||
26 | RuntimeLibrary="5" | ||
27 | UsePrecompiledHeader="0" | ||
28 | WarningLevel="3" | ||
29 | Detect64BitPortabilityProblems="TRUE" | ||
30 | DebugInformationFormat="4"/> | ||
31 | <Tool | ||
32 | Name="VCCustomBuildTool"/> | ||
33 | <Tool | ||
34 | Name="VCLinkerTool" | ||
35 | OutputFile="$(OutDir)/testzlib.exe" | ||
36 | LinkIncremental="2" | ||
37 | GenerateDebugInformation="TRUE" | ||
38 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
39 | SubSystem="1" | ||
40 | TargetMachine="1"/> | ||
41 | <Tool | ||
42 | Name="VCMIDLTool"/> | ||
43 | <Tool | ||
44 | Name="VCPostBuildEventTool"/> | ||
45 | <Tool | ||
46 | Name="VCPreBuildEventTool"/> | ||
47 | <Tool | ||
48 | Name="VCPreLinkEventTool"/> | ||
49 | <Tool | ||
50 | Name="VCResourceCompilerTool"/> | ||
51 | <Tool | ||
52 | Name="VCWebServiceProxyGeneratorTool"/> | ||
53 | <Tool | ||
54 | Name="VCWebDeploymentTool"/> | ||
55 | </Configuration> | ||
56 | <Configuration | ||
57 | Name="Release|Win32" | ||
58 | OutputDirectory="Release" | ||
59 | IntermediateDirectory="Release" | ||
60 | ConfigurationType="1" | ||
61 | CharacterSet="2"> | ||
62 | <Tool | ||
63 | Name="VCCLCompilerTool" | ||
64 | Optimization="2" | ||
65 | InlineFunctionExpansion="1" | ||
66 | OmitFramePointers="TRUE" | ||
67 | AdditionalIncludeDirectories="..\..\.." | ||
68 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE" | ||
69 | StringPooling="TRUE" | ||
70 | RuntimeLibrary="4" | ||
71 | EnableFunctionLevelLinking="TRUE" | ||
72 | UsePrecompiledHeader="0" | ||
73 | WarningLevel="3" | ||
74 | Detect64BitPortabilityProblems="TRUE" | ||
75 | DebugInformationFormat="3"/> | ||
76 | <Tool | ||
77 | Name="VCCustomBuildTool"/> | ||
78 | <Tool | ||
79 | Name="VCLinkerTool" | ||
80 | OutputFile="$(OutDir)/testzlib.exe" | ||
81 | LinkIncremental="1" | ||
82 | GenerateDebugInformation="TRUE" | ||
83 | SubSystem="1" | ||
84 | OptimizeReferences="2" | ||
85 | EnableCOMDATFolding="2" | ||
86 | OptimizeForWindows98="1" | ||
87 | TargetMachine="1"/> | ||
88 | <Tool | ||
89 | Name="VCMIDLTool"/> | ||
90 | <Tool | ||
91 | Name="VCPostBuildEventTool"/> | ||
92 | <Tool | ||
93 | Name="VCPreBuildEventTool"/> | ||
94 | <Tool | ||
95 | Name="VCPreLinkEventTool"/> | ||
96 | <Tool | ||
97 | Name="VCResourceCompilerTool"/> | ||
98 | <Tool | ||
99 | Name="VCWebServiceProxyGeneratorTool"/> | ||
100 | <Tool | ||
101 | Name="VCWebDeploymentTool"/> | ||
102 | </Configuration> | ||
103 | </Configurations> | ||
104 | <Files> | ||
105 | <Filter | ||
106 | Name="Source Files" | ||
107 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> | ||
108 | <File | ||
109 | RelativePath="..\..\testzlib\testzlib.c"> | ||
110 | </File> | ||
111 | </Filter> | ||
112 | <Filter | ||
113 | Name="Header Files" | ||
114 | Filter="h;hpp;hxx;hm;inl;inc"> | ||
115 | </Filter> | ||
116 | <Filter | ||
117 | Name="Resource Files" | ||
118 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> | ||
119 | </Filter> | ||
120 | <File | ||
121 | RelativePath="ReleaseDll\zlibwapi.lib"> | ||
122 | </File> | ||
123 | </Files> | ||
124 | <Globals> | ||
125 | </Globals> | ||
126 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc7/zlibstat.vcproj b/contrib/vstudio/vc7/zlibstat.vcproj deleted file mode 100644 index 3c37959..0000000 --- a/contrib/vstudio/vc7/zlibstat.vcproj +++ /dev/null | |||
@@ -1,258 +0,0 @@ | |||
1 | <?xml version="1.0" encoding = "Windows-1252"?> | ||
2 | <VisualStudioProject | ||
3 | ProjectType="Visual C++" | ||
4 | Version="7.00" | ||
5 | Name="zlibstat" | ||
6 | SccProjectName="" | ||
7 | SccLocalPath=""> | ||
8 | <Platforms> | ||
9 | <Platform | ||
10 | Name="Win32"/> | ||
11 | </Platforms> | ||
12 | <Configurations> | ||
13 | <Configuration | ||
14 | Name="Debug|Win32" | ||
15 | OutputDirectory=".\zlibstatDebug" | ||
16 | IntermediateDirectory=".\zlibstatDebug" | ||
17 | ConfigurationType="4" | ||
18 | UseOfMFC="0" | ||
19 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||
20 | <Tool | ||
21 | Name="VCCLCompilerTool" | ||
22 | Optimization="0" | ||
23 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
24 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" | ||
25 | ExceptionHandling="FALSE" | ||
26 | RuntimeLibrary="5" | ||
27 | PrecompiledHeaderFile=".\zlibstatDebug/zlibstat.pch" | ||
28 | AssemblerListingLocation=".\zlibstatDebug/" | ||
29 | ObjectFile=".\zlibstatDebug/" | ||
30 | ProgramDataBaseFileName=".\zlibstatDebug/" | ||
31 | WarningLevel="3" | ||
32 | SuppressStartupBanner="TRUE" | ||
33 | DebugInformationFormat="1"/> | ||
34 | <Tool | ||
35 | Name="VCCustomBuildTool"/> | ||
36 | <Tool | ||
37 | Name="VCLibrarianTool" | ||
38 | AdditionalOptions="/NODEFAULTLIB " | ||
39 | OutputFile=".\zlibstatDebug\zlibstat.lib" | ||
40 | SuppressStartupBanner="TRUE"/> | ||
41 | <Tool | ||
42 | Name="VCMIDLTool"/> | ||
43 | <Tool | ||
44 | Name="VCPostBuildEventTool"/> | ||
45 | <Tool | ||
46 | Name="VCPreBuildEventTool"/> | ||
47 | <Tool | ||
48 | Name="VCPreLinkEventTool"/> | ||
49 | <Tool | ||
50 | Name="VCResourceCompilerTool" | ||
51 | Culture="1036"/> | ||
52 | <Tool | ||
53 | Name="VCWebServiceProxyGeneratorTool"/> | ||
54 | </Configuration> | ||
55 | <Configuration | ||
56 | Name="ReleaseAxp|Win32" | ||
57 | OutputDirectory=".\zlibsta0" | ||
58 | IntermediateDirectory=".\zlibsta0" | ||
59 | ConfigurationType="4" | ||
60 | UseOfMFC="0" | ||
61 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||
62 | <Tool | ||
63 | Name="VCCLCompilerTool" | ||
64 | InlineFunctionExpansion="1" | ||
65 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
66 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" | ||
67 | StringPooling="TRUE" | ||
68 | ExceptionHandling="FALSE" | ||
69 | RuntimeLibrary="4" | ||
70 | EnableFunctionLevelLinking="TRUE" | ||
71 | PrecompiledHeaderFile=".\zlibsta0/zlibstat.pch" | ||
72 | AssemblerListingLocation=".\zlibsta0/" | ||
73 | ObjectFile=".\zlibsta0/" | ||
74 | ProgramDataBaseFileName=".\zlibsta0/" | ||
75 | WarningLevel="3" | ||
76 | SuppressStartupBanner="TRUE"/> | ||
77 | <Tool | ||
78 | Name="VCCustomBuildTool"/> | ||
79 | <Tool | ||
80 | Name="VCLibrarianTool" | ||
81 | AdditionalOptions="/NODEFAULTLIB " | ||
82 | OutputFile=".\zlibsta0\zlibstat.lib" | ||
83 | SuppressStartupBanner="TRUE"/> | ||
84 | <Tool | ||
85 | Name="VCMIDLTool"/> | ||
86 | <Tool | ||
87 | Name="VCPostBuildEventTool"/> | ||
88 | <Tool | ||
89 | Name="VCPreBuildEventTool"/> | ||
90 | <Tool | ||
91 | Name="VCPreLinkEventTool"/> | ||
92 | <Tool | ||
93 | Name="VCResourceCompilerTool"/> | ||
94 | <Tool | ||
95 | Name="VCWebServiceProxyGeneratorTool"/> | ||
96 | </Configuration> | ||
97 | <Configuration | ||
98 | Name="Release|Win32" | ||
99 | OutputDirectory=".\zlibstat" | ||
100 | IntermediateDirectory=".\zlibstat" | ||
101 | ConfigurationType="4" | ||
102 | UseOfMFC="0" | ||
103 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||
104 | <Tool | ||
105 | Name="VCCLCompilerTool" | ||
106 | InlineFunctionExpansion="1" | ||
107 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
108 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;ASMV;ASMINF" | ||
109 | StringPooling="TRUE" | ||
110 | ExceptionHandling="FALSE" | ||
111 | RuntimeLibrary="4" | ||
112 | EnableFunctionLevelLinking="TRUE" | ||
113 | PrecompiledHeaderFile=".\zlibstat/zlibstat.pch" | ||
114 | AssemblerListingLocation=".\zlibstat/" | ||
115 | ObjectFile=".\zlibstat/" | ||
116 | ProgramDataBaseFileName=".\zlibstat/" | ||
117 | WarningLevel="3" | ||
118 | SuppressStartupBanner="TRUE"/> | ||
119 | <Tool | ||
120 | Name="VCCustomBuildTool"/> | ||
121 | <Tool | ||
122 | Name="VCLibrarianTool" | ||
123 | AdditionalOptions="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj /NODEFAULTLIB " | ||
124 | OutputFile=".\zlibstat\zlibstat.lib" | ||
125 | SuppressStartupBanner="TRUE"/> | ||
126 | <Tool | ||
127 | Name="VCMIDLTool"/> | ||
128 | <Tool | ||
129 | Name="VCPostBuildEventTool"/> | ||
130 | <Tool | ||
131 | Name="VCPreBuildEventTool"/> | ||
132 | <Tool | ||
133 | Name="VCPreLinkEventTool"/> | ||
134 | <Tool | ||
135 | Name="VCResourceCompilerTool" | ||
136 | Culture="1036"/> | ||
137 | <Tool | ||
138 | Name="VCWebServiceProxyGeneratorTool"/> | ||
139 | </Configuration> | ||
140 | <Configuration | ||
141 | Name="ReleaseWithoutAsm|Win32" | ||
142 | OutputDirectory="zlibstatWithoutAsm" | ||
143 | IntermediateDirectory="zlibstatWithoutAsm" | ||
144 | ConfigurationType="4" | ||
145 | UseOfMFC="0" | ||
146 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||
147 | <Tool | ||
148 | Name="VCCLCompilerTool" | ||
149 | InlineFunctionExpansion="1" | ||
150 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
151 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" | ||
152 | StringPooling="TRUE" | ||
153 | ExceptionHandling="FALSE" | ||
154 | RuntimeLibrary="4" | ||
155 | EnableFunctionLevelLinking="TRUE" | ||
156 | PrecompiledHeaderFile=".\zlibstat/zlibstat.pch" | ||
157 | AssemblerListingLocation=".\zlibstatWithoutAsm/" | ||
158 | ObjectFile=".\zlibstatWithoutAsm/" | ||
159 | ProgramDataBaseFileName=".\zlibstatWithoutAsm/" | ||
160 | WarningLevel="3" | ||
161 | SuppressStartupBanner="TRUE"/> | ||
162 | <Tool | ||
163 | Name="VCCustomBuildTool"/> | ||
164 | <Tool | ||
165 | Name="VCLibrarianTool" | ||
166 | AdditionalOptions=" /NODEFAULTLIB " | ||
167 | OutputFile=".\zlibstatWithoutAsm\zlibstat.lib" | ||
168 | SuppressStartupBanner="TRUE"/> | ||
169 | <Tool | ||
170 | Name="VCMIDLTool"/> | ||
171 | <Tool | ||
172 | Name="VCPostBuildEventTool"/> | ||
173 | <Tool | ||
174 | Name="VCPreBuildEventTool"/> | ||
175 | <Tool | ||
176 | Name="VCPreLinkEventTool"/> | ||
177 | <Tool | ||
178 | Name="VCResourceCompilerTool" | ||
179 | Culture="1036"/> | ||
180 | <Tool | ||
181 | Name="VCWebServiceProxyGeneratorTool"/> | ||
182 | </Configuration> | ||
183 | </Configurations> | ||
184 | <Files> | ||
185 | <Filter | ||
186 | Name="Source Files" | ||
187 | Filter=""> | ||
188 | <File | ||
189 | RelativePath="..\..\..\adler32.c"> | ||
190 | </File> | ||
191 | <File | ||
192 | RelativePath="..\..\..\compress.c"> | ||
193 | </File> | ||
194 | <File | ||
195 | RelativePath="..\..\..\crc32.c"> | ||
196 | </File> | ||
197 | <File | ||
198 | RelativePath="..\..\..\deflate.c"> | ||
199 | </File> | ||
200 | <File | ||
201 | RelativePath="..\..\masmx86\gvmat32c.c"> | ||
202 | </File> | ||
203 | <File | ||
204 | RelativePath="..\..\..\gzclose.c"> | ||
205 | </File> | ||
206 | <File | ||
207 | RelativePath="..\..\..\gzio.c"> | ||
208 | </File> | ||
209 | <File | ||
210 | RelativePath="..\..\..\gzlib.c"> | ||
211 | </File> | ||
212 | <File | ||
213 | RelativePath="..\..\..\gzread.c"> | ||
214 | </File> | ||
215 | <File | ||
216 | RelativePath="..\..\..\gzwrite.c"> | ||
217 | </File> | ||
218 | <File | ||
219 | RelativePath="..\..\..\infback.c"> | ||
220 | </File> | ||
221 | <File | ||
222 | RelativePath="..\..\..\inffast.c"> | ||
223 | </File> | ||
224 | <File | ||
225 | RelativePath="..\..\..\inflate.c"> | ||
226 | </File> | ||
227 | <File | ||
228 | RelativePath="..\..\..\inftrees.c"> | ||
229 | </File> | ||
230 | <File | ||
231 | RelativePath="..\..\minizip\ioapi.c"> | ||
232 | </File> | ||
233 | <File | ||
234 | RelativePath="..\..\..\trees.c"> | ||
235 | </File> | ||
236 | <File | ||
237 | RelativePath="..\..\..\uncompr.c"> | ||
238 | </File> | ||
239 | <File | ||
240 | RelativePath="..\..\minizip\unzip.c"> | ||
241 | </File> | ||
242 | <File | ||
243 | RelativePath="..\..\minizip\zip.c"> | ||
244 | </File> | ||
245 | <File | ||
246 | RelativePath=".\zlib.rc"> | ||
247 | </File> | ||
248 | <File | ||
249 | RelativePath=".\zlibvc.def"> | ||
250 | </File> | ||
251 | <File | ||
252 | RelativePath="..\..\..\zutil.c"> | ||
253 | </File> | ||
254 | </Filter> | ||
255 | </Files> | ||
256 | <Globals> | ||
257 | </Globals> | ||
258 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc7/zlibvc.def b/contrib/vstudio/vc7/zlibvc.def index a40e715..0b6a9e9 100644 --- a/contrib/vstudio/vc7/zlibvc.def +++ b/contrib/vstudio/vc7/zlibvc.def | |||
@@ -90,3 +90,25 @@ EXPORTS | |||
90 | unzGoToFilePos @101 | 90 | unzGoToFilePos @101 |
91 | 91 | ||
92 | fill_win32_filefunc @110 | 92 | fill_win32_filefunc @110 |
93 | fill_win32_filefunc64 @111 | ||
94 | fill_win32_filefunc64A @112 | ||
95 | fill_win32_filefunc64W @113 | ||
96 | |||
97 | ; quick hack by hkuno@microhouse.co.jp | ||
98 | unzOpen64 @120 | ||
99 | unzOpen2_64 @121 | ||
100 | unzGetGlobalInfo64 @122 | ||
101 | unzGetCurrentFileInfo64 @124 | ||
102 | unzGetCurrentFileZStreamPos64 @125 | ||
103 | unztell64 @126 | ||
104 | unzGetFilePos64 @127 | ||
105 | unzGoToFilePos64 @128 | ||
106 | |||
107 | zipOpen64 @130 | ||
108 | zipOpen2_64 @131 | ||
109 | zipOpenNewFileInZip64 @132 | ||
110 | zipOpenNewFileInZip2_64 @133 | ||
111 | zipOpenNewFileInZip3_64 @134 | ||
112 | zipOpenNewFileInZip4_64 @135 | ||
113 | zipCloseFileInZipRaw64 @136 | ||
114 | ; end hack | ||
diff --git a/contrib/vstudio/vc7/zlibvc.sln b/contrib/vstudio/vc7/zlibvc.sln deleted file mode 100644 index 927b42b..0000000 --- a/contrib/vstudio/vc7/zlibvc.sln +++ /dev/null | |||
@@ -1,78 +0,0 @@ | |||
1 | Microsoft Visual Studio Solution File, Format Version 7.00 | ||
2 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" | ||
3 | EndProject | ||
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | ||
5 | EndProject | ||
6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minizip", "minizip.vcproj", "{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | ||
7 | EndProject | ||
8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | ||
9 | EndProject | ||
10 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testZlibDll", "testzlib.vcproj", "{AA6666AA-E09F-4135-9C0C-4FE50C3C654C}" | ||
11 | EndProject | ||
12 | Global | ||
13 | GlobalSection(SolutionConfiguration) = preSolution | ||
14 | ConfigName.0 = Debug | ||
15 | ConfigName.1 = Release | ||
16 | ConfigName.2 = ReleaseAxp | ||
17 | ConfigName.3 = ReleaseWithoutAsm | ||
18 | ConfigName.4 = ReleaseWithoutCrtdll | ||
19 | EndGlobalSection | ||
20 | GlobalSection(ProjectDependencies) = postSolution | ||
21 | EndGlobalSection | ||
22 | GlobalSection(ProjectConfiguration) = postSolution | ||
23 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug.ActiveCfg = Debug|Win32 | ||
24 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug.Build.0 = Debug|Win32 | ||
25 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release.ActiveCfg = Release|Win32 | ||
26 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release.Build.0 = Release|Win32 | ||
27 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseAxp.ActiveCfg = ReleaseAxp|Win32 | ||
28 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseAxp.Build.0 = ReleaseAxp|Win32 | ||
29 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm.ActiveCfg = ReleaseWithoutAsm|Win32 | ||
30 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm.Build.0 = ReleaseWithoutAsm|Win32 | ||
31 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutCrtdll.ActiveCfg = ReleaseAxp|Win32 | ||
32 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutCrtdll.Build.0 = ReleaseAxp|Win32 | ||
33 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug.ActiveCfg = Debug|Win32 | ||
34 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug.Build.0 = Debug|Win32 | ||
35 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release.ActiveCfg = Release|Win32 | ||
36 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release.Build.0 = Release|Win32 | ||
37 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseAxp.ActiveCfg = ReleaseAxp|Win32 | ||
38 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseAxp.Build.0 = ReleaseAxp|Win32 | ||
39 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm.ActiveCfg = ReleaseWithoutAsm|Win32 | ||
40 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm.Build.0 = ReleaseWithoutAsm|Win32 | ||
41 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutCrtdll.ActiveCfg = ReleaseWithoutCrtdll|Win32 | ||
42 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutCrtdll.Build.0 = ReleaseWithoutCrtdll|Win32 | ||
43 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug.ActiveCfg = Debug|Win32 | ||
44 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug.Build.0 = Debug|Win32 | ||
45 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release.ActiveCfg = Release|Win32 | ||
46 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release.Build.0 = Release|Win32 | ||
47 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseAxp.ActiveCfg = Release|Win32 | ||
48 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseAxp.Build.0 = Release|Win32 | ||
49 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 | ||
50 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm.Build.0 = Release|Win32 | ||
51 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutCrtdll.ActiveCfg = Release|Win32 | ||
52 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutCrtdll.Build.0 = Release|Win32 | ||
53 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug.ActiveCfg = Debug|Win32 | ||
54 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug.Build.0 = Debug|Win32 | ||
55 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release.ActiveCfg = Release|Win32 | ||
56 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release.Build.0 = Release|Win32 | ||
57 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseAxp.ActiveCfg = Release|Win32 | ||
58 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseAxp.Build.0 = Release|Win32 | ||
59 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 | ||
60 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm.Build.0 = Release|Win32 | ||
61 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutCrtdll.ActiveCfg = Release|Win32 | ||
62 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutCrtdll.Build.0 = Release|Win32 | ||
63 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.Debug.ActiveCfg = Debug|Win32 | ||
64 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.Debug.Build.0 = Debug|Win32 | ||
65 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.Release.ActiveCfg = Release|Win32 | ||
66 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.Release.Build.0 = Release|Win32 | ||
67 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.ReleaseAxp.ActiveCfg = Release|Win32 | ||
68 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.ReleaseAxp.Build.0 = Release|Win32 | ||
69 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 | ||
70 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.ReleaseWithoutAsm.Build.0 = Release|Win32 | ||
71 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.ReleaseWithoutCrtdll.ActiveCfg = Release|Win32 | ||
72 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654C}.ReleaseWithoutCrtdll.Build.0 = Release|Win32 | ||
73 | EndGlobalSection | ||
74 | GlobalSection(ExtensibilityGlobals) = postSolution | ||
75 | EndGlobalSection | ||
76 | GlobalSection(ExtensibilityAddIns) = postSolution | ||
77 | EndGlobalSection | ||
78 | EndGlobal | ||
diff --git a/contrib/vstudio/vc7/zlibvc.vcproj b/contrib/vstudio/vc7/zlibvc.vcproj deleted file mode 100644 index 2c66643..0000000 --- a/contrib/vstudio/vc7/zlibvc.vcproj +++ /dev/null | |||
@@ -1,457 +0,0 @@ | |||
1 | <?xml version="1.0" encoding = "Windows-1252"?> | ||
2 | <VisualStudioProject | ||
3 | ProjectType="Visual C++" | ||
4 | Version="7.00" | ||
5 | Name="zlibvc" | ||
6 | SccProjectName="" | ||
7 | SccLocalPath=""> | ||
8 | <Platforms> | ||
9 | <Platform | ||
10 | Name="Win32"/> | ||
11 | </Platforms> | ||
12 | <Configurations> | ||
13 | <Configuration | ||
14 | Name="Debug|Win32" | ||
15 | OutputDirectory=".\DebugDll" | ||
16 | IntermediateDirectory=".\DebugDll" | ||
17 | ConfigurationType="2" | ||
18 | UseOfMFC="0" | ||
19 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||
20 | <Tool | ||
21 | Name="VCCLCompilerTool" | ||
22 | Optimization="0" | ||
23 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
24 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" | ||
25 | ExceptionHandling="FALSE" | ||
26 | RuntimeLibrary="1" | ||
27 | PrecompiledHeaderFile=".\DebugDll/zlibvc.pch" | ||
28 | AssemblerListingLocation=".\DebugDll/" | ||
29 | ObjectFile=".\DebugDll/" | ||
30 | ProgramDataBaseFileName=".\DebugDll/" | ||
31 | WarningLevel="3" | ||
32 | SuppressStartupBanner="TRUE" | ||
33 | DebugInformationFormat="4"/> | ||
34 | <Tool | ||
35 | Name="VCCustomBuildTool"/> | ||
36 | <Tool | ||
37 | Name="VCLinkerTool" | ||
38 | AdditionalOptions="/MACHINE:I386" | ||
39 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj" | ||
40 | OutputFile=".\DebugDll\zlibwapi.dll" | ||
41 | LinkIncremental="2" | ||
42 | SuppressStartupBanner="TRUE" | ||
43 | ModuleDefinitionFile=".\zlibvc.def" | ||
44 | GenerateDebugInformation="TRUE" | ||
45 | ProgramDatabaseFile=".\DebugDll/zlibwapi.pdb" | ||
46 | SubSystem="2" | ||
47 | ImportLibrary=".\DebugDll/zlibwapi.lib"/> | ||
48 | <Tool | ||
49 | Name="VCMIDLTool" | ||
50 | PreprocessorDefinitions="_DEBUG" | ||
51 | MkTypLibCompatible="TRUE" | ||
52 | SuppressStartupBanner="TRUE" | ||
53 | TargetEnvironment="1" | ||
54 | TypeLibraryName=".\DebugDll/zlibvc.tlb"/> | ||
55 | <Tool | ||
56 | Name="VCPostBuildEventTool"/> | ||
57 | <Tool | ||
58 | Name="VCPreBuildEventTool"/> | ||
59 | <Tool | ||
60 | Name="VCPreLinkEventTool"/> | ||
61 | <Tool | ||
62 | Name="VCResourceCompilerTool" | ||
63 | PreprocessorDefinitions="_DEBUG" | ||
64 | Culture="1036"/> | ||
65 | <Tool | ||
66 | Name="VCWebServiceProxyGeneratorTool"/> | ||
67 | <Tool | ||
68 | Name="VCWebDeploymentTool"/> | ||
69 | </Configuration> | ||
70 | <Configuration | ||
71 | Name="ReleaseWithoutAsm|Win32" | ||
72 | OutputDirectory=".\zlibDllWithoutAsm" | ||
73 | IntermediateDirectory=".\zlibDllWithoutAsm" | ||
74 | ConfigurationType="2" | ||
75 | UseOfMFC="0" | ||
76 | ATLMinimizesCRunTimeLibraryUsage="FALSE" | ||
77 | WholeProgramOptimization="TRUE"> | ||
78 | <Tool | ||
79 | Name="VCCLCompilerTool" | ||
80 | InlineFunctionExpansion="1" | ||
81 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
82 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI" | ||
83 | StringPooling="TRUE" | ||
84 | ExceptionHandling="FALSE" | ||
85 | RuntimeLibrary="0" | ||
86 | EnableFunctionLevelLinking="TRUE" | ||
87 | PrecompiledHeaderFile=".\zlibDllWithoutAsm/zlibvc.pch" | ||
88 | AssemblerOutput="2" | ||
89 | AssemblerListingLocation=".\zlibDllWithoutAsm/" | ||
90 | ObjectFile=".\zlibDllWithoutAsm/" | ||
91 | ProgramDataBaseFileName=".\zlibDllWithoutAsm/" | ||
92 | BrowseInformation="1" | ||
93 | WarningLevel="3" | ||
94 | SuppressStartupBanner="TRUE"/> | ||
95 | <Tool | ||
96 | Name="VCCustomBuildTool"/> | ||
97 | <Tool | ||
98 | Name="VCLinkerTool" | ||
99 | AdditionalOptions="/MACHINE:I386" | ||
100 | AdditionalDependencies="crtdll.lib" | ||
101 | OutputFile=".\zlibDllWithoutAsm\zlibwapi.dll" | ||
102 | LinkIncremental="1" | ||
103 | SuppressStartupBanner="TRUE" | ||
104 | IgnoreAllDefaultLibraries="TRUE" | ||
105 | ModuleDefinitionFile=".\zlibvc.def" | ||
106 | ProgramDatabaseFile=".\zlibDllWithoutAsm/zlibwapi.pdb" | ||
107 | GenerateMapFile="TRUE" | ||
108 | MapFileName=".\zlibDllWithoutAsm/zlibwapi.map" | ||
109 | SubSystem="2" | ||
110 | OptimizeForWindows98="1" | ||
111 | ImportLibrary=".\zlibDllWithoutAsm/zlibwapi.lib"/> | ||
112 | <Tool | ||
113 | Name="VCMIDLTool" | ||
114 | PreprocessorDefinitions="NDEBUG" | ||
115 | MkTypLibCompatible="TRUE" | ||
116 | SuppressStartupBanner="TRUE" | ||
117 | TargetEnvironment="1" | ||
118 | TypeLibraryName=".\zlibDllWithoutAsm/zlibvc.tlb"/> | ||
119 | <Tool | ||
120 | Name="VCPostBuildEventTool"/> | ||
121 | <Tool | ||
122 | Name="VCPreBuildEventTool"/> | ||
123 | <Tool | ||
124 | Name="VCPreLinkEventTool"/> | ||
125 | <Tool | ||
126 | Name="VCResourceCompilerTool" | ||
127 | PreprocessorDefinitions="NDEBUG" | ||
128 | Culture="1036"/> | ||
129 | <Tool | ||
130 | Name="VCWebServiceProxyGeneratorTool"/> | ||
131 | <Tool | ||
132 | Name="VCWebDeploymentTool"/> | ||
133 | </Configuration> | ||
134 | <Configuration | ||
135 | Name="ReleaseWithoutCrtdll|Win32" | ||
136 | OutputDirectory=".\zlibDllWithoutCrtDll" | ||
137 | IntermediateDirectory=".\zlibDllWithoutCrtDll" | ||
138 | ConfigurationType="2" | ||
139 | UseOfMFC="0" | ||
140 | ATLMinimizesCRunTimeLibraryUsage="FALSE" | ||
141 | WholeProgramOptimization="TRUE"> | ||
142 | <Tool | ||
143 | Name="VCCLCompilerTool" | ||
144 | InlineFunctionExpansion="1" | ||
145 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
146 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" | ||
147 | StringPooling="TRUE" | ||
148 | ExceptionHandling="FALSE" | ||
149 | RuntimeLibrary="0" | ||
150 | EnableFunctionLevelLinking="TRUE" | ||
151 | PrecompiledHeaderFile=".\zlibDllWithoutCrtDll/zlibvc.pch" | ||
152 | AssemblerOutput="2" | ||
153 | AssemblerListingLocation=".\zlibDllWithoutCrtDll/" | ||
154 | ObjectFile=".\zlibDllWithoutCrtDll/" | ||
155 | ProgramDataBaseFileName=".\zlibDllWithoutCrtDll/" | ||
156 | BrowseInformation="1" | ||
157 | WarningLevel="3" | ||
158 | SuppressStartupBanner="TRUE"/> | ||
159 | <Tool | ||
160 | Name="VCCustomBuildTool"/> | ||
161 | <Tool | ||
162 | Name="VCLinkerTool" | ||
163 | AdditionalOptions="/MACHINE:I386" | ||
164 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj " | ||
165 | OutputFile=".\zlibDllWithoutCrtDll\zlibwapi.dll" | ||
166 | LinkIncremental="1" | ||
167 | SuppressStartupBanner="TRUE" | ||
168 | IgnoreAllDefaultLibraries="FALSE" | ||
169 | ModuleDefinitionFile=".\zlibvc.def" | ||
170 | ProgramDatabaseFile=".\zlibDllWithoutCrtDll/zlibwapi.pdb" | ||
171 | GenerateMapFile="TRUE" | ||
172 | MapFileName=".\zlibDllWithoutCrtDll/zlibwapi.map" | ||
173 | SubSystem="2" | ||
174 | OptimizeForWindows98="1" | ||
175 | ImportLibrary=".\zlibDllWithoutCrtDll/zlibwapi.lib"/> | ||
176 | <Tool | ||
177 | Name="VCMIDLTool" | ||
178 | PreprocessorDefinitions="NDEBUG" | ||
179 | MkTypLibCompatible="TRUE" | ||
180 | SuppressStartupBanner="TRUE" | ||
181 | TargetEnvironment="1" | ||
182 | TypeLibraryName=".\zlibDllWithoutCrtDll/zlibvc.tlb"/> | ||
183 | <Tool | ||
184 | Name="VCPostBuildEventTool"/> | ||
185 | <Tool | ||
186 | Name="VCPreBuildEventTool"/> | ||
187 | <Tool | ||
188 | Name="VCPreLinkEventTool"/> | ||
189 | <Tool | ||
190 | Name="VCResourceCompilerTool" | ||
191 | PreprocessorDefinitions="NDEBUG" | ||
192 | Culture="1036"/> | ||
193 | <Tool | ||
194 | Name="VCWebServiceProxyGeneratorTool"/> | ||
195 | <Tool | ||
196 | Name="VCWebDeploymentTool"/> | ||
197 | </Configuration> | ||
198 | <Configuration | ||
199 | Name="ReleaseAxp|Win32" | ||
200 | OutputDirectory=".\zlibvc__" | ||
201 | IntermediateDirectory=".\zlibvc__" | ||
202 | ConfigurationType="2" | ||
203 | UseOfMFC="0" | ||
204 | ATLMinimizesCRunTimeLibraryUsage="FALSE" | ||
205 | WholeProgramOptimization="TRUE"> | ||
206 | <Tool | ||
207 | Name="VCCLCompilerTool" | ||
208 | InlineFunctionExpansion="1" | ||
209 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
210 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI" | ||
211 | StringPooling="TRUE" | ||
212 | ExceptionHandling="FALSE" | ||
213 | RuntimeLibrary="0" | ||
214 | EnableFunctionLevelLinking="TRUE" | ||
215 | PrecompiledHeaderFile=".\zlibvc__/zlibvc.pch" | ||
216 | AssemblerOutput="2" | ||
217 | AssemblerListingLocation=".\zlibvc__/" | ||
218 | ObjectFile=".\zlibvc__/" | ||
219 | ProgramDataBaseFileName=".\zlibvc__/" | ||
220 | BrowseInformation="1" | ||
221 | WarningLevel="3" | ||
222 | SuppressStartupBanner="TRUE"/> | ||
223 | <Tool | ||
224 | Name="VCCustomBuildTool"/> | ||
225 | <Tool | ||
226 | Name="VCLinkerTool" | ||
227 | AdditionalDependencies="crtdll.lib" | ||
228 | OutputFile="zlibvc__\zlibwapi.dll" | ||
229 | LinkIncremental="1" | ||
230 | SuppressStartupBanner="TRUE" | ||
231 | IgnoreAllDefaultLibraries="TRUE" | ||
232 | ModuleDefinitionFile=".\zlibvc.def" | ||
233 | ProgramDatabaseFile=".\zlibvc__/zlibwapi.pdb" | ||
234 | GenerateMapFile="TRUE" | ||
235 | MapFileName=".\zlibvc__/zlibwapi.map" | ||
236 | SubSystem="2" | ||
237 | ImportLibrary=".\zlibvc__/zlibwapi.lib"/> | ||
238 | <Tool | ||
239 | Name="VCMIDLTool" | ||
240 | PreprocessorDefinitions="NDEBUG" | ||
241 | MkTypLibCompatible="TRUE" | ||
242 | SuppressStartupBanner="TRUE" | ||
243 | TargetEnvironment="1" | ||
244 | TypeLibraryName=".\zlibvc__/zlibvc.tlb"/> | ||
245 | <Tool | ||
246 | Name="VCPostBuildEventTool"/> | ||
247 | <Tool | ||
248 | Name="VCPreBuildEventTool"/> | ||
249 | <Tool | ||
250 | Name="VCPreLinkEventTool"/> | ||
251 | <Tool | ||
252 | Name="VCResourceCompilerTool" | ||
253 | PreprocessorDefinitions="NDEBUG" | ||
254 | Culture="1036"/> | ||
255 | <Tool | ||
256 | Name="VCWebServiceProxyGeneratorTool"/> | ||
257 | <Tool | ||
258 | Name="VCWebDeploymentTool"/> | ||
259 | </Configuration> | ||
260 | <Configuration | ||
261 | Name="Release|Win32" | ||
262 | OutputDirectory=".\ReleaseDll" | ||
263 | IntermediateDirectory=".\ReleaseDll" | ||
264 | ConfigurationType="2" | ||
265 | UseOfMFC="0" | ||
266 | ATLMinimizesCRunTimeLibraryUsage="FALSE" | ||
267 | WholeProgramOptimization="TRUE"> | ||
268 | <Tool | ||
269 | Name="VCCLCompilerTool" | ||
270 | InlineFunctionExpansion="1" | ||
271 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
272 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" | ||
273 | StringPooling="TRUE" | ||
274 | ExceptionHandling="FALSE" | ||
275 | RuntimeLibrary="0" | ||
276 | EnableFunctionLevelLinking="TRUE" | ||
277 | PrecompiledHeaderFile=".\ReleaseDll/zlibvc.pch" | ||
278 | AssemblerOutput="2" | ||
279 | AssemblerListingLocation=".\ReleaseDll/" | ||
280 | ObjectFile=".\ReleaseDll/" | ||
281 | ProgramDataBaseFileName=".\ReleaseDll/" | ||
282 | BrowseInformation="1" | ||
283 | WarningLevel="3" | ||
284 | SuppressStartupBanner="TRUE"/> | ||
285 | <Tool | ||
286 | Name="VCCustomBuildTool"/> | ||
287 | <Tool | ||
288 | Name="VCLinkerTool" | ||
289 | AdditionalOptions="/MACHINE:I386" | ||
290 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj crtdll.lib" | ||
291 | OutputFile=".\ReleaseDll\zlibwapi.dll" | ||
292 | LinkIncremental="1" | ||
293 | SuppressStartupBanner="TRUE" | ||
294 | IgnoreAllDefaultLibraries="TRUE" | ||
295 | ModuleDefinitionFile=".\zlibvc.def" | ||
296 | ProgramDatabaseFile=".\ReleaseDll/zlibwapi.pdb" | ||
297 | GenerateMapFile="TRUE" | ||
298 | MapFileName=".\ReleaseDll/zlibwapi.map" | ||
299 | SubSystem="2" | ||
300 | OptimizeForWindows98="1" | ||
301 | ImportLibrary=".\ReleaseDll/zlibwapi.lib"/> | ||
302 | <Tool | ||
303 | Name="VCMIDLTool" | ||
304 | PreprocessorDefinitions="NDEBUG" | ||
305 | MkTypLibCompatible="TRUE" | ||
306 | SuppressStartupBanner="TRUE" | ||
307 | TargetEnvironment="1" | ||
308 | TypeLibraryName=".\Release/zlibvc.tlb"/> | ||
309 | <Tool | ||
310 | Name="VCPostBuildEventTool"/> | ||
311 | <Tool | ||
312 | Name="VCPreBuildEventTool"/> | ||
313 | <Tool | ||
314 | Name="VCPreLinkEventTool"/> | ||
315 | <Tool | ||
316 | Name="VCResourceCompilerTool" | ||
317 | PreprocessorDefinitions="NDEBUG" | ||
318 | Culture="1036"/> | ||
319 | <Tool | ||
320 | Name="VCWebServiceProxyGeneratorTool"/> | ||
321 | <Tool | ||
322 | Name="VCWebDeploymentTool"/> | ||
323 | </Configuration> | ||
324 | </Configurations> | ||
325 | <Files> | ||
326 | <Filter | ||
327 | Name="Source Files" | ||
328 | Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"> | ||
329 | <File | ||
330 | RelativePath="..\..\..\adler32.c"> | ||
331 | </File> | ||
332 | <File | ||
333 | RelativePath="..\..\..\compress.c"> | ||
334 | </File> | ||
335 | <File | ||
336 | RelativePath="..\..\..\crc32.c"> | ||
337 | </File> | ||
338 | <File | ||
339 | RelativePath="..\..\..\deflate.c"> | ||
340 | </File> | ||
341 | <File | ||
342 | RelativePath="..\..\masmx86\gvmat32c.c"> | ||
343 | <FileConfiguration | ||
344 | Name="ReleaseWithoutAsm|Win32" | ||
345 | ExcludedFromBuild="TRUE"> | ||
346 | <Tool | ||
347 | Name="VCCLCompilerTool"/> | ||
348 | </FileConfiguration> | ||
349 | </File> | ||
350 | <File | ||
351 | RelativePath="..\..\..\gzclose.c"> | ||
352 | </File> | ||
353 | <File | ||
354 | RelativePath="..\..\..\gzio.c"> | ||
355 | </File> | ||
356 | <File | ||
357 | RelativePath="..\..\..\gzlib.c"> | ||
358 | </File> | ||
359 | <File | ||
360 | RelativePath="..\..\..\gzread.c"> | ||
361 | </File> | ||
362 | <File | ||
363 | RelativePath="..\..\..\gzwrite.c"> | ||
364 | </File> | ||
365 | <File | ||
366 | RelativePath="..\..\..\infback.c"> | ||
367 | </File> | ||
368 | <File | ||
369 | RelativePath="..\..\..\inffast.c"> | ||
370 | </File> | ||
371 | <File | ||
372 | RelativePath="..\..\..\inflate.c"> | ||
373 | </File> | ||
374 | <File | ||
375 | RelativePath="..\..\..\inftrees.c"> | ||
376 | </File> | ||
377 | <File | ||
378 | RelativePath="..\..\minizip\ioapi.c"> | ||
379 | </File> | ||
380 | <File | ||
381 | RelativePath="..\..\minizip\iowin32.c"> | ||
382 | </File> | ||
383 | <File | ||
384 | RelativePath="..\..\..\trees.c"> | ||
385 | </File> | ||
386 | <File | ||
387 | RelativePath="..\..\..\uncompr.c"> | ||
388 | </File> | ||
389 | <File | ||
390 | RelativePath="..\..\minizip\unzip.c"> | ||
391 | <FileConfiguration | ||
392 | Name="Release|Win32"> | ||
393 | <Tool | ||
394 | Name="VCCLCompilerTool" | ||
395 | AdditionalIncludeDirectories="" | ||
396 | PreprocessorDefinitions="ZLIB_INTERNAL"/> | ||
397 | </FileConfiguration> | ||
398 | </File> | ||
399 | <File | ||
400 | RelativePath="..\..\minizip\zip.c"> | ||
401 | <FileConfiguration | ||
402 | Name="Release|Win32"> | ||
403 | <Tool | ||
404 | Name="VCCLCompilerTool" | ||
405 | AdditionalIncludeDirectories="" | ||
406 | PreprocessorDefinitions="ZLIB_INTERNAL"/> | ||
407 | </FileConfiguration> | ||
408 | </File> | ||
409 | <File | ||
410 | RelativePath=".\zlib.rc"> | ||
411 | </File> | ||
412 | <File | ||
413 | RelativePath=".\zlibvc.def"> | ||
414 | </File> | ||
415 | <File | ||
416 | RelativePath="..\..\..\zutil.c"> | ||
417 | </File> | ||
418 | </Filter> | ||
419 | <Filter | ||
420 | Name="Header Files" | ||
421 | Filter="h;hpp;hxx;hm;inl;fi;fd"> | ||
422 | <File | ||
423 | RelativePath="..\..\..\deflate.h"> | ||
424 | </File> | ||
425 | <File | ||
426 | RelativePath="..\..\..\infblock.h"> | ||
427 | </File> | ||
428 | <File | ||
429 | RelativePath="..\..\..\infcodes.h"> | ||
430 | </File> | ||
431 | <File | ||
432 | RelativePath="..\..\..\inffast.h"> | ||
433 | </File> | ||
434 | <File | ||
435 | RelativePath="..\..\..\inftrees.h"> | ||
436 | </File> | ||
437 | <File | ||
438 | RelativePath="..\..\..\infutil.h"> | ||
439 | </File> | ||
440 | <File | ||
441 | RelativePath="..\..\..\zconf.h"> | ||
442 | </File> | ||
443 | <File | ||
444 | RelativePath="..\..\..\zlib.h"> | ||
445 | </File> | ||
446 | <File | ||
447 | RelativePath="..\..\..\zutil.h"> | ||
448 | </File> | ||
449 | </Filter> | ||
450 | <Filter | ||
451 | Name="Resource Files" | ||
452 | Filter="ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"> | ||
453 | </Filter> | ||
454 | </Files> | ||
455 | <Globals> | ||
456 | </Globals> | ||
457 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc8/zlibvc.def b/contrib/vstudio/vc8/zlibvc.def index a40e715..0b6a9e9 100644 --- a/contrib/vstudio/vc8/zlibvc.def +++ b/contrib/vstudio/vc8/zlibvc.def | |||
@@ -90,3 +90,25 @@ EXPORTS | |||
90 | unzGoToFilePos @101 | 90 | unzGoToFilePos @101 |
91 | 91 | ||
92 | fill_win32_filefunc @110 | 92 | fill_win32_filefunc @110 |
93 | fill_win32_filefunc64 @111 | ||
94 | fill_win32_filefunc64A @112 | ||
95 | fill_win32_filefunc64W @113 | ||
96 | |||
97 | ; quick hack by hkuno@microhouse.co.jp | ||
98 | unzOpen64 @120 | ||
99 | unzOpen2_64 @121 | ||
100 | unzGetGlobalInfo64 @122 | ||
101 | unzGetCurrentFileInfo64 @124 | ||
102 | unzGetCurrentFileZStreamPos64 @125 | ||
103 | unztell64 @126 | ||
104 | unzGetFilePos64 @127 | ||
105 | unzGoToFilePos64 @128 | ||
106 | |||
107 | zipOpen64 @130 | ||
108 | zipOpen2_64 @131 | ||
109 | zipOpenNewFileInZip64 @132 | ||
110 | zipOpenNewFileInZip2_64 @133 | ||
111 | zipOpenNewFileInZip3_64 @134 | ||
112 | zipOpenNewFileInZip4_64 @135 | ||
113 | zipCloseFileInZipRaw64 @136 | ||
114 | ; end hack | ||
diff --git a/contrib/vstudio/vc8/miniunz.vcproj b/contrib/vstudio/vc9/miniunz.vcproj index 4af53e8..7da32b9 100644 --- a/contrib/vstudio/vc8/miniunz.vcproj +++ b/contrib/vstudio/vc9/miniunz.vcproj | |||
@@ -1,10 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="Windows-1252"?> | 1 | <?xml version="1.0" encoding="Windows-1252"?> |
2 | <VisualStudioProject | 2 | <VisualStudioProject |
3 | ProjectType="Visual C++" | 3 | ProjectType="Visual C++" |
4 | Version="8,00" | 4 | Version="9.00" |
5 | Name="miniunz" | 5 | Name="miniunz" |
6 | ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | 6 | ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694382A}" |
7 | Keyword="Win32Proj" | 7 | Keyword="Win32Proj" |
8 | TargetFrameworkVersion="131072" | ||
8 | > | 9 | > |
9 | <Platforms> | 10 | <Platforms> |
10 | <Platform | 11 | <Platform |
@@ -76,6 +77,8 @@ | |||
76 | GenerateDebugInformation="true" | 77 | GenerateDebugInformation="true" |
77 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | 78 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" |
78 | SubSystem="1" | 79 | SubSystem="1" |
80 | RandomizedBaseAddress="1" | ||
81 | DataExecutionPrevention="0" | ||
79 | TargetMachine="1" | 82 | TargetMachine="1" |
80 | /> | 83 | /> |
81 | <Tool | 84 | <Tool |
@@ -97,16 +100,13 @@ | |||
97 | Name="VCAppVerifierTool" | 100 | Name="VCAppVerifierTool" |
98 | /> | 101 | /> |
99 | <Tool | 102 | <Tool |
100 | Name="VCWebDeploymentTool" | ||
101 | /> | ||
102 | <Tool | ||
103 | Name="VCPostBuildEventTool" | 103 | Name="VCPostBuildEventTool" |
104 | /> | 104 | /> |
105 | </Configuration> | 105 | </Configuration> |
106 | <Configuration | 106 | <Configuration |
107 | Name="Debug|x64" | 107 | Name="Release|Win32" |
108 | OutputDirectory="x64\MiniUnzip$(ConfigurationName)" | 108 | OutputDirectory="x86\MiniUnzip$(ConfigurationName)" |
109 | IntermediateDirectory="x64\MiniUnzip$(ConfigurationName)\Tmp" | 109 | IntermediateDirectory="x86\MiniUnzip$(ConfigurationName)\Tmp" |
110 | ConfigurationType="1" | 110 | ConfigurationType="1" |
111 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 111 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
112 | CharacterSet="2" | 112 | CharacterSet="2" |
@@ -125,17 +125,19 @@ | |||
125 | /> | 125 | /> |
126 | <Tool | 126 | <Tool |
127 | Name="VCMIDLTool" | 127 | Name="VCMIDLTool" |
128 | TargetEnvironment="3" | ||
129 | /> | 128 | /> |
130 | <Tool | 129 | <Tool |
131 | Name="VCCLCompilerTool" | 130 | Name="VCCLCompilerTool" |
132 | Optimization="0" | 131 | Optimization="2" |
132 | InlineFunctionExpansion="1" | ||
133 | OmitFramePointers="true" | ||
133 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | 134 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" |
134 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | 135 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" |
135 | MinimalRebuild="true" | 136 | StringPooling="true" |
136 | BasicRuntimeChecks="0" | 137 | BasicRuntimeChecks="0" |
137 | RuntimeLibrary="3" | 138 | RuntimeLibrary="0" |
138 | BufferSecurityCheck="false" | 139 | BufferSecurityCheck="false" |
140 | EnableFunctionLevelLinking="true" | ||
139 | UsePrecompiledHeader="0" | 141 | UsePrecompiledHeader="0" |
140 | AssemblerListingLocation="$(IntDir)\" | 142 | AssemblerListingLocation="$(IntDir)\" |
141 | WarningLevel="3" | 143 | WarningLevel="3" |
@@ -153,14 +155,18 @@ | |||
153 | /> | 155 | /> |
154 | <Tool | 156 | <Tool |
155 | Name="VCLinkerTool" | 157 | Name="VCLinkerTool" |
156 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" | 158 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" |
157 | OutputFile="$(OutDir)/miniunz.exe" | 159 | OutputFile="$(OutDir)/miniunz.exe" |
158 | LinkIncremental="2" | 160 | LinkIncremental="1" |
159 | GenerateManifest="false" | 161 | GenerateManifest="false" |
160 | GenerateDebugInformation="true" | 162 | GenerateDebugInformation="true" |
161 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | ||
162 | SubSystem="1" | 163 | SubSystem="1" |
163 | TargetMachine="17" | 164 | OptimizeReferences="2" |
165 | EnableCOMDATFolding="2" | ||
166 | OptimizeForWindows98="1" | ||
167 | RandomizedBaseAddress="1" | ||
168 | DataExecutionPrevention="0" | ||
169 | TargetMachine="1" | ||
164 | /> | 170 | /> |
165 | <Tool | 171 | <Tool |
166 | Name="VCALinkTool" | 172 | Name="VCALinkTool" |
@@ -181,16 +187,13 @@ | |||
181 | Name="VCAppVerifierTool" | 187 | Name="VCAppVerifierTool" |
182 | /> | 188 | /> |
183 | <Tool | 189 | <Tool |
184 | Name="VCWebDeploymentTool" | ||
185 | /> | ||
186 | <Tool | ||
187 | Name="VCPostBuildEventTool" | 190 | Name="VCPostBuildEventTool" |
188 | /> | 191 | /> |
189 | </Configuration> | 192 | </Configuration> |
190 | <Configuration | 193 | <Configuration |
191 | Name="Debug|Itanium" | 194 | Name="Debug|x64" |
192 | OutputDirectory="ia64\MiniUnzip$(ConfigurationName)" | 195 | OutputDirectory="x64\MiniUnzip$(ConfigurationName)" |
193 | IntermediateDirectory="ia64\MiniUnzip$(ConfigurationName)\Tmp" | 196 | IntermediateDirectory="x64\MiniUnzip$(ConfigurationName)\Tmp" |
194 | ConfigurationType="1" | 197 | ConfigurationType="1" |
195 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 198 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
196 | CharacterSet="2" | 199 | CharacterSet="2" |
@@ -209,7 +212,7 @@ | |||
209 | /> | 212 | /> |
210 | <Tool | 213 | <Tool |
211 | Name="VCMIDLTool" | 214 | Name="VCMIDLTool" |
212 | TargetEnvironment="2" | 215 | TargetEnvironment="3" |
213 | /> | 216 | /> |
214 | <Tool | 217 | <Tool |
215 | Name="VCCLCompilerTool" | 218 | Name="VCCLCompilerTool" |
@@ -237,14 +240,14 @@ | |||
237 | /> | 240 | /> |
238 | <Tool | 241 | <Tool |
239 | Name="VCLinkerTool" | 242 | Name="VCLinkerTool" |
240 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" | 243 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" |
241 | OutputFile="$(OutDir)/miniunz.exe" | 244 | OutputFile="$(OutDir)/miniunz.exe" |
242 | LinkIncremental="2" | 245 | LinkIncremental="2" |
243 | GenerateManifest="false" | 246 | GenerateManifest="false" |
244 | GenerateDebugInformation="true" | 247 | GenerateDebugInformation="true" |
245 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | 248 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" |
246 | SubSystem="1" | 249 | SubSystem="1" |
247 | TargetMachine="5" | 250 | TargetMachine="17" |
248 | /> | 251 | /> |
249 | <Tool | 252 | <Tool |
250 | Name="VCALinkTool" | 253 | Name="VCALinkTool" |
@@ -272,9 +275,9 @@ | |||
272 | /> | 275 | /> |
273 | </Configuration> | 276 | </Configuration> |
274 | <Configuration | 277 | <Configuration |
275 | Name="Release|Win32" | 278 | Name="Debug|Itanium" |
276 | OutputDirectory="x86\MiniUnzip$(ConfigurationName)" | 279 | OutputDirectory="ia64\MiniUnzip$(ConfigurationName)" |
277 | IntermediateDirectory="x86\MiniUnzip$(ConfigurationName)\Tmp" | 280 | IntermediateDirectory="ia64\MiniUnzip$(ConfigurationName)\Tmp" |
278 | ConfigurationType="1" | 281 | ConfigurationType="1" |
279 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 282 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
280 | CharacterSet="2" | 283 | CharacterSet="2" |
@@ -293,19 +296,17 @@ | |||
293 | /> | 296 | /> |
294 | <Tool | 297 | <Tool |
295 | Name="VCMIDLTool" | 298 | Name="VCMIDLTool" |
299 | TargetEnvironment="2" | ||
296 | /> | 300 | /> |
297 | <Tool | 301 | <Tool |
298 | Name="VCCLCompilerTool" | 302 | Name="VCCLCompilerTool" |
299 | Optimization="2" | 303 | Optimization="0" |
300 | InlineFunctionExpansion="1" | ||
301 | OmitFramePointers="true" | ||
302 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | 304 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" |
303 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" | 305 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" |
304 | StringPooling="true" | 306 | MinimalRebuild="true" |
305 | BasicRuntimeChecks="0" | 307 | BasicRuntimeChecks="0" |
306 | RuntimeLibrary="0" | 308 | RuntimeLibrary="3" |
307 | BufferSecurityCheck="false" | 309 | BufferSecurityCheck="false" |
308 | EnableFunctionLevelLinking="true" | ||
309 | UsePrecompiledHeader="0" | 310 | UsePrecompiledHeader="0" |
310 | AssemblerListingLocation="$(IntDir)\" | 311 | AssemblerListingLocation="$(IntDir)\" |
311 | WarningLevel="3" | 312 | WarningLevel="3" |
@@ -323,16 +324,14 @@ | |||
323 | /> | 324 | /> |
324 | <Tool | 325 | <Tool |
325 | Name="VCLinkerTool" | 326 | Name="VCLinkerTool" |
326 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" | 327 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" |
327 | OutputFile="$(OutDir)/miniunz.exe" | 328 | OutputFile="$(OutDir)/miniunz.exe" |
328 | LinkIncremental="1" | 329 | LinkIncremental="2" |
329 | GenerateManifest="false" | 330 | GenerateManifest="false" |
330 | GenerateDebugInformation="true" | 331 | GenerateDebugInformation="true" |
332 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | ||
331 | SubSystem="1" | 333 | SubSystem="1" |
332 | OptimizeReferences="2" | 334 | TargetMachine="5" |
333 | EnableCOMDATFolding="2" | ||
334 | OptimizeForWindows98="1" | ||
335 | TargetMachine="1" | ||
336 | /> | 335 | /> |
337 | <Tool | 336 | <Tool |
338 | Name="VCALinkTool" | 337 | Name="VCALinkTool" |
diff --git a/contrib/vstudio/vc8/minizip.vcproj b/contrib/vstudio/vc9/minizip.vcproj index 85f64c4..e57e07d 100644 --- a/contrib/vstudio/vc8/minizip.vcproj +++ b/contrib/vstudio/vc9/minizip.vcproj | |||
@@ -1,10 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="Windows-1252"?> | 1 | <?xml version="1.0" encoding="Windows-1252"?> |
2 | <VisualStudioProject | 2 | <VisualStudioProject |
3 | ProjectType="Visual C++" | 3 | ProjectType="Visual C++" |
4 | Version="8,00" | 4 | Version="9.00" |
5 | Name="minizip" | 5 | Name="minizip" |
6 | ProjectGUID="{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | 6 | ProjectGUID="{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" |
7 | Keyword="Win32Proj" | 7 | Keyword="Win32Proj" |
8 | TargetFrameworkVersion="131072" | ||
8 | > | 9 | > |
9 | <Platforms> | 10 | <Platforms> |
10 | <Platform | 11 | <Platform |
@@ -76,6 +77,8 @@ | |||
76 | GenerateDebugInformation="true" | 77 | GenerateDebugInformation="true" |
77 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" | 78 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" |
78 | SubSystem="1" | 79 | SubSystem="1" |
80 | RandomizedBaseAddress="1" | ||
81 | DataExecutionPrevention="0" | ||
79 | TargetMachine="1" | 82 | TargetMachine="1" |
80 | /> | 83 | /> |
81 | <Tool | 84 | <Tool |
@@ -97,16 +100,13 @@ | |||
97 | Name="VCAppVerifierTool" | 100 | Name="VCAppVerifierTool" |
98 | /> | 101 | /> |
99 | <Tool | 102 | <Tool |
100 | Name="VCWebDeploymentTool" | ||
101 | /> | ||
102 | <Tool | ||
103 | Name="VCPostBuildEventTool" | 103 | Name="VCPostBuildEventTool" |
104 | /> | 104 | /> |
105 | </Configuration> | 105 | </Configuration> |
106 | <Configuration | 106 | <Configuration |
107 | Name="Debug|x64" | 107 | Name="Release|Win32" |
108 | OutputDirectory="x64\$(ConfigurationName)" | 108 | OutputDirectory="x86\MiniZip$(ConfigurationName)" |
109 | IntermediateDirectory="x64\$(ConfigurationName)" | 109 | IntermediateDirectory="x86\MiniZip$(ConfigurationName)\Tmp" |
110 | ConfigurationType="1" | 110 | ConfigurationType="1" |
111 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 111 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
112 | CharacterSet="2" | 112 | CharacterSet="2" |
@@ -125,17 +125,19 @@ | |||
125 | /> | 125 | /> |
126 | <Tool | 126 | <Tool |
127 | Name="VCMIDLTool" | 127 | Name="VCMIDLTool" |
128 | TargetEnvironment="3" | ||
129 | /> | 128 | /> |
130 | <Tool | 129 | <Tool |
131 | Name="VCCLCompilerTool" | 130 | Name="VCCLCompilerTool" |
132 | Optimization="0" | 131 | Optimization="2" |
132 | InlineFunctionExpansion="1" | ||
133 | OmitFramePointers="true" | ||
133 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | 134 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" |
134 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | 135 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" |
135 | MinimalRebuild="true" | 136 | StringPooling="true" |
136 | BasicRuntimeChecks="0" | 137 | BasicRuntimeChecks="0" |
137 | RuntimeLibrary="3" | 138 | RuntimeLibrary="0" |
138 | BufferSecurityCheck="false" | 139 | BufferSecurityCheck="false" |
140 | EnableFunctionLevelLinking="true" | ||
139 | UsePrecompiledHeader="0" | 141 | UsePrecompiledHeader="0" |
140 | AssemblerListingLocation="$(IntDir)\" | 142 | AssemblerListingLocation="$(IntDir)\" |
141 | WarningLevel="3" | 143 | WarningLevel="3" |
@@ -153,14 +155,17 @@ | |||
153 | /> | 155 | /> |
154 | <Tool | 156 | <Tool |
155 | Name="VCLinkerTool" | 157 | Name="VCLinkerTool" |
156 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" | 158 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" |
157 | OutputFile="$(OutDir)/minizip.exe" | 159 | OutputFile="$(OutDir)/minizip.exe" |
158 | LinkIncremental="2" | 160 | LinkIncremental="1" |
159 | GenerateManifest="false" | ||
160 | GenerateDebugInformation="true" | 161 | GenerateDebugInformation="true" |
161 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" | ||
162 | SubSystem="1" | 162 | SubSystem="1" |
163 | TargetMachine="17" | 163 | OptimizeReferences="2" |
164 | EnableCOMDATFolding="2" | ||
165 | OptimizeForWindows98="1" | ||
166 | RandomizedBaseAddress="1" | ||
167 | DataExecutionPrevention="0" | ||
168 | TargetMachine="1" | ||
164 | /> | 169 | /> |
165 | <Tool | 170 | <Tool |
166 | Name="VCALinkTool" | 171 | Name="VCALinkTool" |
@@ -181,16 +186,13 @@ | |||
181 | Name="VCAppVerifierTool" | 186 | Name="VCAppVerifierTool" |
182 | /> | 187 | /> |
183 | <Tool | 188 | <Tool |
184 | Name="VCWebDeploymentTool" | ||
185 | /> | ||
186 | <Tool | ||
187 | Name="VCPostBuildEventTool" | 189 | Name="VCPostBuildEventTool" |
188 | /> | 190 | /> |
189 | </Configuration> | 191 | </Configuration> |
190 | <Configuration | 192 | <Configuration |
191 | Name="Debug|Itanium" | 193 | Name="Debug|x64" |
192 | OutputDirectory="ia64\$(ConfigurationName)" | 194 | OutputDirectory="x64\$(ConfigurationName)" |
193 | IntermediateDirectory="ia64\$(ConfigurationName)" | 195 | IntermediateDirectory="x64\$(ConfigurationName)" |
194 | ConfigurationType="1" | 196 | ConfigurationType="1" |
195 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 197 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
196 | CharacterSet="2" | 198 | CharacterSet="2" |
@@ -209,7 +211,7 @@ | |||
209 | /> | 211 | /> |
210 | <Tool | 212 | <Tool |
211 | Name="VCMIDLTool" | 213 | Name="VCMIDLTool" |
212 | TargetEnvironment="2" | 214 | TargetEnvironment="3" |
213 | /> | 215 | /> |
214 | <Tool | 216 | <Tool |
215 | Name="VCCLCompilerTool" | 217 | Name="VCCLCompilerTool" |
@@ -237,14 +239,14 @@ | |||
237 | /> | 239 | /> |
238 | <Tool | 240 | <Tool |
239 | Name="VCLinkerTool" | 241 | Name="VCLinkerTool" |
240 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" | 242 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" |
241 | OutputFile="$(OutDir)/minizip.exe" | 243 | OutputFile="$(OutDir)/minizip.exe" |
242 | LinkIncremental="2" | 244 | LinkIncremental="2" |
243 | GenerateManifest="false" | 245 | GenerateManifest="false" |
244 | GenerateDebugInformation="true" | 246 | GenerateDebugInformation="true" |
245 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" | 247 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" |
246 | SubSystem="1" | 248 | SubSystem="1" |
247 | TargetMachine="5" | 249 | TargetMachine="17" |
248 | /> | 250 | /> |
249 | <Tool | 251 | <Tool |
250 | Name="VCALinkTool" | 252 | Name="VCALinkTool" |
@@ -272,9 +274,9 @@ | |||
272 | /> | 274 | /> |
273 | </Configuration> | 275 | </Configuration> |
274 | <Configuration | 276 | <Configuration |
275 | Name="Release|Win32" | 277 | Name="Debug|Itanium" |
276 | OutputDirectory="x86\MiniZip$(ConfigurationName)" | 278 | OutputDirectory="ia64\$(ConfigurationName)" |
277 | IntermediateDirectory="x86\MiniZip$(ConfigurationName)\Tmp" | 279 | IntermediateDirectory="ia64\$(ConfigurationName)" |
278 | ConfigurationType="1" | 280 | ConfigurationType="1" |
279 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 281 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
280 | CharacterSet="2" | 282 | CharacterSet="2" |
@@ -293,19 +295,17 @@ | |||
293 | /> | 295 | /> |
294 | <Tool | 296 | <Tool |
295 | Name="VCMIDLTool" | 297 | Name="VCMIDLTool" |
298 | TargetEnvironment="2" | ||
296 | /> | 299 | /> |
297 | <Tool | 300 | <Tool |
298 | Name="VCCLCompilerTool" | 301 | Name="VCCLCompilerTool" |
299 | Optimization="2" | 302 | Optimization="0" |
300 | InlineFunctionExpansion="1" | ||
301 | OmitFramePointers="true" | ||
302 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | 303 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" |
303 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" | 304 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" |
304 | StringPooling="true" | 305 | MinimalRebuild="true" |
305 | BasicRuntimeChecks="0" | 306 | BasicRuntimeChecks="0" |
306 | RuntimeLibrary="0" | 307 | RuntimeLibrary="3" |
307 | BufferSecurityCheck="false" | 308 | BufferSecurityCheck="false" |
308 | EnableFunctionLevelLinking="true" | ||
309 | UsePrecompiledHeader="0" | 309 | UsePrecompiledHeader="0" |
310 | AssemblerListingLocation="$(IntDir)\" | 310 | AssemblerListingLocation="$(IntDir)\" |
311 | WarningLevel="3" | 311 | WarningLevel="3" |
@@ -323,15 +323,14 @@ | |||
323 | /> | 323 | /> |
324 | <Tool | 324 | <Tool |
325 | Name="VCLinkerTool" | 325 | Name="VCLinkerTool" |
326 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" | 326 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" |
327 | OutputFile="$(OutDir)/minizip.exe" | 327 | OutputFile="$(OutDir)/minizip.exe" |
328 | LinkIncremental="1" | 328 | LinkIncremental="2" |
329 | GenerateManifest="false" | ||
329 | GenerateDebugInformation="true" | 330 | GenerateDebugInformation="true" |
331 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" | ||
330 | SubSystem="1" | 332 | SubSystem="1" |
331 | OptimizeReferences="2" | 333 | TargetMachine="5" |
332 | EnableCOMDATFolding="2" | ||
333 | OptimizeForWindows98="1" | ||
334 | TargetMachine="1" | ||
335 | /> | 334 | /> |
336 | <Tool | 335 | <Tool |
337 | Name="VCALinkTool" | 336 | Name="VCALinkTool" |
diff --git a/contrib/vstudio/vc8/testzlib.vcproj b/contrib/vstudio/vc9/testzlib.vcproj index 68c3539..9ad07ae 100644 --- a/contrib/vstudio/vc8/testzlib.vcproj +++ b/contrib/vstudio/vc9/testzlib.vcproj | |||
@@ -1,11 +1,12 @@ | |||
1 | <?xml version="1.0" encoding="Windows-1252"?> | 1 | <?xml version="1.0" encoding="Windows-1252"?> |
2 | <VisualStudioProject | 2 | <VisualStudioProject |
3 | ProjectType="Visual C++" | 3 | ProjectType="Visual C++" |
4 | Version="8,00" | 4 | Version="9.00" |
5 | Name="testzlib" | 5 | Name="testzlib" |
6 | ProjectGUID="{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" | 6 | ProjectGUID="{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" |
7 | RootNamespace="testzlib" | 7 | RootNamespace="testzlib" |
8 | Keyword="Win32Proj" | 8 | Keyword="Win32Proj" |
9 | TargetFrameworkVersion="131072" | ||
9 | > | 10 | > |
10 | <Platforms> | 11 | <Platforms> |
11 | <Platform | 12 | <Platform |
@@ -47,7 +48,7 @@ | |||
47 | Name="VCCLCompilerTool" | 48 | Name="VCCLCompilerTool" |
48 | Optimization="0" | 49 | Optimization="0" |
49 | AdditionalIncludeDirectories="..\..\.." | 50 | AdditionalIncludeDirectories="..\..\.." |
50 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | 51 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS" |
51 | MinimalRebuild="true" | 52 | MinimalRebuild="true" |
52 | BasicRuntimeChecks="0" | 53 | BasicRuntimeChecks="0" |
53 | RuntimeLibrary="1" | 54 | RuntimeLibrary="1" |
@@ -77,6 +78,8 @@ | |||
77 | GenerateDebugInformation="true" | 78 | GenerateDebugInformation="true" |
78 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | 79 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" |
79 | SubSystem="1" | 80 | SubSystem="1" |
81 | RandomizedBaseAddress="1" | ||
82 | DataExecutionPrevention="0" | ||
80 | TargetMachine="1" | 83 | TargetMachine="1" |
81 | /> | 84 | /> |
82 | <Tool | 85 | <Tool |
@@ -98,17 +101,16 @@ | |||
98 | Name="VCAppVerifierTool" | 101 | Name="VCAppVerifierTool" |
99 | /> | 102 | /> |
100 | <Tool | 103 | <Tool |
101 | Name="VCWebDeploymentTool" | ||
102 | /> | ||
103 | <Tool | ||
104 | Name="VCPostBuildEventTool" | 104 | Name="VCPostBuildEventTool" |
105 | /> | 105 | /> |
106 | </Configuration> | 106 | </Configuration> |
107 | <Configuration | 107 | <Configuration |
108 | Name="Debug|x64" | 108 | Name="ReleaseWithoutAsm|Win32" |
109 | OutputDirectory="x64\TestZlib$(ConfigurationName)" | 109 | OutputDirectory="x86\TestZlib$(ConfigurationName)" |
110 | IntermediateDirectory="x64\TestZlib$(ConfigurationName)\Tmp" | 110 | IntermediateDirectory="x86\TestZlib$(ConfigurationName)\Tmp" |
111 | ConfigurationType="1" | 111 | ConfigurationType="1" |
112 | CharacterSet="2" | ||
113 | WholeProgramOptimization="1" | ||
112 | > | 114 | > |
113 | <Tool | 115 | <Tool |
114 | Name="VCPreBuildEventTool" | 116 | Name="VCPreBuildEventTool" |
@@ -127,12 +129,21 @@ | |||
127 | /> | 129 | /> |
128 | <Tool | 130 | <Tool |
129 | Name="VCCLCompilerTool" | 131 | Name="VCCLCompilerTool" |
132 | Optimization="2" | ||
133 | InlineFunctionExpansion="1" | ||
134 | OmitFramePointers="true" | ||
130 | AdditionalIncludeDirectories="..\..\.." | 135 | AdditionalIncludeDirectories="..\..\.." |
131 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | 136 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS" |
137 | StringPooling="true" | ||
132 | BasicRuntimeChecks="0" | 138 | BasicRuntimeChecks="0" |
133 | RuntimeLibrary="3" | 139 | RuntimeLibrary="0" |
134 | BufferSecurityCheck="false" | 140 | BufferSecurityCheck="false" |
141 | EnableFunctionLevelLinking="true" | ||
142 | UsePrecompiledHeader="0" | ||
135 | AssemblerListingLocation="$(IntDir)\" | 143 | AssemblerListingLocation="$(IntDir)\" |
144 | WarningLevel="3" | ||
145 | Detect64BitPortabilityProblems="true" | ||
146 | DebugInformationFormat="3" | ||
136 | /> | 147 | /> |
137 | <Tool | 148 | <Tool |
138 | Name="VCManagedResourceCompilerTool" | 149 | Name="VCManagedResourceCompilerTool" |
@@ -145,8 +156,17 @@ | |||
145 | /> | 156 | /> |
146 | <Tool | 157 | <Tool |
147 | Name="VCLinkerTool" | 158 | Name="VCLinkerTool" |
148 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj" | 159 | OutputFile="$(OutDir)/testzlib.exe" |
160 | LinkIncremental="1" | ||
149 | GenerateManifest="false" | 161 | GenerateManifest="false" |
162 | GenerateDebugInformation="true" | ||
163 | SubSystem="1" | ||
164 | OptimizeReferences="2" | ||
165 | EnableCOMDATFolding="2" | ||
166 | OptimizeForWindows98="1" | ||
167 | RandomizedBaseAddress="1" | ||
168 | DataExecutionPrevention="0" | ||
169 | TargetMachine="1" | ||
150 | /> | 170 | /> |
151 | <Tool | 171 | <Tool |
152 | Name="VCALinkTool" | 172 | Name="VCALinkTool" |
@@ -167,18 +187,16 @@ | |||
167 | Name="VCAppVerifierTool" | 187 | Name="VCAppVerifierTool" |
168 | /> | 188 | /> |
169 | <Tool | 189 | <Tool |
170 | Name="VCWebDeploymentTool" | ||
171 | /> | ||
172 | <Tool | ||
173 | Name="VCPostBuildEventTool" | 190 | Name="VCPostBuildEventTool" |
174 | /> | 191 | /> |
175 | </Configuration> | 192 | </Configuration> |
176 | <Configuration | 193 | <Configuration |
177 | Name="Debug|Itanium" | 194 | Name="Release|Win32" |
178 | OutputDirectory="ia64\TestZlib$(ConfigurationName)" | 195 | OutputDirectory="x86\TestZlib$(ConfigurationName)" |
179 | IntermediateDirectory="ia64\TestZlib$(ConfigurationName)\Tmp" | 196 | IntermediateDirectory="x86\TestZlib$(ConfigurationName)\Tmp" |
180 | ConfigurationType="1" | 197 | ConfigurationType="1" |
181 | CharacterSet="2" | 198 | CharacterSet="2" |
199 | WholeProgramOptimization="1" | ||
182 | > | 200 | > |
183 | <Tool | 201 | <Tool |
184 | Name="VCPreBuildEventTool" | 202 | Name="VCPreBuildEventTool" |
@@ -194,19 +212,20 @@ | |||
194 | /> | 212 | /> |
195 | <Tool | 213 | <Tool |
196 | Name="VCMIDLTool" | 214 | Name="VCMIDLTool" |
197 | TargetEnvironment="2" | ||
198 | /> | 215 | /> |
199 | <Tool | 216 | <Tool |
200 | Name="VCCLCompilerTool" | 217 | Name="VCCLCompilerTool" |
201 | Optimization="0" | 218 | Optimization="2" |
219 | InlineFunctionExpansion="1" | ||
220 | OmitFramePointers="true" | ||
202 | AdditionalIncludeDirectories="..\..\.." | 221 | AdditionalIncludeDirectories="..\..\.." |
203 | PreprocessorDefinitions="ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | 222 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS" |
204 | MinimalRebuild="true" | 223 | StringPooling="true" |
205 | BasicRuntimeChecks="0" | 224 | BasicRuntimeChecks="0" |
206 | RuntimeLibrary="3" | 225 | RuntimeLibrary="0" |
207 | BufferSecurityCheck="false" | 226 | BufferSecurityCheck="false" |
227 | EnableFunctionLevelLinking="true" | ||
208 | UsePrecompiledHeader="0" | 228 | UsePrecompiledHeader="0" |
209 | AssemblerOutput="4" | ||
210 | AssemblerListingLocation="$(IntDir)\" | 229 | AssemblerListingLocation="$(IntDir)\" |
211 | WarningLevel="3" | 230 | WarningLevel="3" |
212 | Detect64BitPortabilityProblems="true" | 231 | Detect64BitPortabilityProblems="true" |
@@ -223,13 +242,18 @@ | |||
223 | /> | 242 | /> |
224 | <Tool | 243 | <Tool |
225 | Name="VCLinkerTool" | 244 | Name="VCLinkerTool" |
245 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj" | ||
226 | OutputFile="$(OutDir)/testzlib.exe" | 246 | OutputFile="$(OutDir)/testzlib.exe" |
227 | LinkIncremental="2" | 247 | LinkIncremental="1" |
228 | GenerateManifest="false" | 248 | GenerateManifest="false" |
229 | GenerateDebugInformation="true" | 249 | GenerateDebugInformation="true" |
230 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
231 | SubSystem="1" | 250 | SubSystem="1" |
232 | TargetMachine="5" | 251 | OptimizeReferences="2" |
252 | EnableCOMDATFolding="2" | ||
253 | OptimizeForWindows98="1" | ||
254 | RandomizedBaseAddress="1" | ||
255 | DataExecutionPrevention="0" | ||
256 | TargetMachine="1" | ||
233 | /> | 257 | /> |
234 | <Tool | 258 | <Tool |
235 | Name="VCALinkTool" | 259 | Name="VCALinkTool" |
@@ -250,19 +274,14 @@ | |||
250 | Name="VCAppVerifierTool" | 274 | Name="VCAppVerifierTool" |
251 | /> | 275 | /> |
252 | <Tool | 276 | <Tool |
253 | Name="VCWebDeploymentTool" | ||
254 | /> | ||
255 | <Tool | ||
256 | Name="VCPostBuildEventTool" | 277 | Name="VCPostBuildEventTool" |
257 | /> | 278 | /> |
258 | </Configuration> | 279 | </Configuration> |
259 | <Configuration | 280 | <Configuration |
260 | Name="ReleaseWithoutAsm|Win32" | 281 | Name="Debug|x64" |
261 | OutputDirectory="x86\TestZlib$(ConfigurationName)" | 282 | OutputDirectory="x64\TestZlib$(ConfigurationName)" |
262 | IntermediateDirectory="x86\TestZlib$(ConfigurationName)\Tmp" | 283 | IntermediateDirectory="x64\TestZlib$(ConfigurationName)\Tmp" |
263 | ConfigurationType="1" | 284 | ConfigurationType="1" |
264 | CharacterSet="2" | ||
265 | WholeProgramOptimization="1" | ||
266 | > | 285 | > |
267 | <Tool | 286 | <Tool |
268 | Name="VCPreBuildEventTool" | 287 | Name="VCPreBuildEventTool" |
@@ -281,21 +300,12 @@ | |||
281 | /> | 300 | /> |
282 | <Tool | 301 | <Tool |
283 | Name="VCCLCompilerTool" | 302 | Name="VCCLCompilerTool" |
284 | Optimization="2" | ||
285 | InlineFunctionExpansion="1" | ||
286 | OmitFramePointers="true" | ||
287 | AdditionalIncludeDirectories="..\..\.." | 303 | AdditionalIncludeDirectories="..\..\.." |
288 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | 304 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS" |
289 | StringPooling="true" | ||
290 | BasicRuntimeChecks="0" | 305 | BasicRuntimeChecks="0" |
291 | RuntimeLibrary="0" | 306 | RuntimeLibrary="3" |
292 | BufferSecurityCheck="false" | 307 | BufferSecurityCheck="false" |
293 | EnableFunctionLevelLinking="true" | ||
294 | UsePrecompiledHeader="0" | ||
295 | AssemblerListingLocation="$(IntDir)\" | 308 | AssemblerListingLocation="$(IntDir)\" |
296 | WarningLevel="3" | ||
297 | Detect64BitPortabilityProblems="true" | ||
298 | DebugInformationFormat="3" | ||
299 | /> | 309 | /> |
300 | <Tool | 310 | <Tool |
301 | Name="VCManagedResourceCompilerTool" | 311 | Name="VCManagedResourceCompilerTool" |
@@ -308,15 +318,8 @@ | |||
308 | /> | 318 | /> |
309 | <Tool | 319 | <Tool |
310 | Name="VCLinkerTool" | 320 | Name="VCLinkerTool" |
311 | OutputFile="$(OutDir)/testzlib.exe" | 321 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj" |
312 | LinkIncremental="1" | ||
313 | GenerateManifest="false" | 322 | GenerateManifest="false" |
314 | GenerateDebugInformation="true" | ||
315 | SubSystem="1" | ||
316 | OptimizeReferences="2" | ||
317 | EnableCOMDATFolding="2" | ||
318 | OptimizeForWindows98="1" | ||
319 | TargetMachine="1" | ||
320 | /> | 323 | /> |
321 | <Tool | 324 | <Tool |
322 | Name="VCALinkTool" | 325 | Name="VCALinkTool" |
@@ -344,11 +347,11 @@ | |||
344 | /> | 347 | /> |
345 | </Configuration> | 348 | </Configuration> |
346 | <Configuration | 349 | <Configuration |
347 | Name="ReleaseWithoutAsm|x64" | 350 | Name="Debug|Itanium" |
348 | OutputDirectory="x64\TestZlib$(ConfigurationName)" | 351 | OutputDirectory="ia64\TestZlib$(ConfigurationName)" |
349 | IntermediateDirectory="x64\TestZlib$(ConfigurationName)\Tmp" | 352 | IntermediateDirectory="ia64\TestZlib$(ConfigurationName)\Tmp" |
350 | ConfigurationType="1" | 353 | ConfigurationType="1" |
351 | WholeProgramOptimization="1" | 354 | CharacterSet="2" |
352 | > | 355 | > |
353 | <Tool | 356 | <Tool |
354 | Name="VCPreBuildEventTool" | 357 | Name="VCPreBuildEventTool" |
@@ -364,15 +367,23 @@ | |||
364 | /> | 367 | /> |
365 | <Tool | 368 | <Tool |
366 | Name="VCMIDLTool" | 369 | Name="VCMIDLTool" |
370 | TargetEnvironment="2" | ||
367 | /> | 371 | /> |
368 | <Tool | 372 | <Tool |
369 | Name="VCCLCompilerTool" | 373 | Name="VCCLCompilerTool" |
374 | Optimization="0" | ||
370 | AdditionalIncludeDirectories="..\..\.." | 375 | AdditionalIncludeDirectories="..\..\.." |
371 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | 376 | PreprocessorDefinitions="ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64" |
377 | MinimalRebuild="true" | ||
372 | BasicRuntimeChecks="0" | 378 | BasicRuntimeChecks="0" |
373 | RuntimeLibrary="2" | 379 | RuntimeLibrary="3" |
374 | BufferSecurityCheck="false" | 380 | BufferSecurityCheck="false" |
381 | UsePrecompiledHeader="0" | ||
382 | AssemblerOutput="4" | ||
375 | AssemblerListingLocation="$(IntDir)\" | 383 | AssemblerListingLocation="$(IntDir)\" |
384 | WarningLevel="3" | ||
385 | Detect64BitPortabilityProblems="true" | ||
386 | DebugInformationFormat="3" | ||
376 | /> | 387 | /> |
377 | <Tool | 388 | <Tool |
378 | Name="VCManagedResourceCompilerTool" | 389 | Name="VCManagedResourceCompilerTool" |
@@ -385,8 +396,13 @@ | |||
385 | /> | 396 | /> |
386 | <Tool | 397 | <Tool |
387 | Name="VCLinkerTool" | 398 | Name="VCLinkerTool" |
388 | AdditionalDependencies="" | 399 | OutputFile="$(OutDir)/testzlib.exe" |
400 | LinkIncremental="2" | ||
389 | GenerateManifest="false" | 401 | GenerateManifest="false" |
402 | GenerateDebugInformation="true" | ||
403 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
404 | SubSystem="1" | ||
405 | TargetMachine="5" | ||
390 | /> | 406 | /> |
391 | <Tool | 407 | <Tool |
392 | Name="VCALinkTool" | 408 | Name="VCALinkTool" |
@@ -414,11 +430,10 @@ | |||
414 | /> | 430 | /> |
415 | </Configuration> | 431 | </Configuration> |
416 | <Configuration | 432 | <Configuration |
417 | Name="ReleaseWithoutAsm|Itanium" | 433 | Name="ReleaseWithoutAsm|x64" |
418 | OutputDirectory="ia64\TestZlib$(ConfigurationName)" | 434 | OutputDirectory="x64\TestZlib$(ConfigurationName)" |
419 | IntermediateDirectory="ia64\TestZlib$(ConfigurationName)\Tmp" | 435 | IntermediateDirectory="x64\TestZlib$(ConfigurationName)\Tmp" |
420 | ConfigurationType="1" | 436 | ConfigurationType="1" |
421 | CharacterSet="2" | ||
422 | WholeProgramOptimization="1" | 437 | WholeProgramOptimization="1" |
423 | > | 438 | > |
424 | <Tool | 439 | <Tool |
@@ -435,25 +450,15 @@ | |||
435 | /> | 450 | /> |
436 | <Tool | 451 | <Tool |
437 | Name="VCMIDLTool" | 452 | Name="VCMIDLTool" |
438 | TargetEnvironment="2" | ||
439 | /> | 453 | /> |
440 | <Tool | 454 | <Tool |
441 | Name="VCCLCompilerTool" | 455 | Name="VCCLCompilerTool" |
442 | Optimization="2" | ||
443 | InlineFunctionExpansion="1" | ||
444 | OmitFramePointers="true" | ||
445 | AdditionalIncludeDirectories="..\..\.." | 456 | AdditionalIncludeDirectories="..\..\.." |
446 | PreprocessorDefinitions="ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | 457 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS" |
447 | StringPooling="true" | ||
448 | BasicRuntimeChecks="0" | 458 | BasicRuntimeChecks="0" |
449 | RuntimeLibrary="2" | 459 | RuntimeLibrary="2" |
450 | BufferSecurityCheck="false" | 460 | BufferSecurityCheck="false" |
451 | EnableFunctionLevelLinking="true" | ||
452 | UsePrecompiledHeader="0" | ||
453 | AssemblerListingLocation="$(IntDir)\" | 461 | AssemblerListingLocation="$(IntDir)\" |
454 | WarningLevel="3" | ||
455 | Detect64BitPortabilityProblems="true" | ||
456 | DebugInformationFormat="3" | ||
457 | /> | 462 | /> |
458 | <Tool | 463 | <Tool |
459 | Name="VCManagedResourceCompilerTool" | 464 | Name="VCManagedResourceCompilerTool" |
@@ -466,15 +471,8 @@ | |||
466 | /> | 471 | /> |
467 | <Tool | 472 | <Tool |
468 | Name="VCLinkerTool" | 473 | Name="VCLinkerTool" |
469 | OutputFile="$(OutDir)/testzlib.exe" | 474 | AdditionalDependencies="" |
470 | LinkIncremental="1" | ||
471 | GenerateManifest="false" | 475 | GenerateManifest="false" |
472 | GenerateDebugInformation="true" | ||
473 | SubSystem="1" | ||
474 | OptimizeReferences="2" | ||
475 | EnableCOMDATFolding="2" | ||
476 | OptimizeForWindows98="1" | ||
477 | TargetMachine="5" | ||
478 | /> | 476 | /> |
479 | <Tool | 477 | <Tool |
480 | Name="VCALinkTool" | 478 | Name="VCALinkTool" |
@@ -502,9 +500,9 @@ | |||
502 | /> | 500 | /> |
503 | </Configuration> | 501 | </Configuration> |
504 | <Configuration | 502 | <Configuration |
505 | Name="Release|Win32" | 503 | Name="ReleaseWithoutAsm|Itanium" |
506 | OutputDirectory="x86\TestZlib$(ConfigurationName)" | 504 | OutputDirectory="ia64\TestZlib$(ConfigurationName)" |
507 | IntermediateDirectory="x86\TestZlib$(ConfigurationName)\Tmp" | 505 | IntermediateDirectory="ia64\TestZlib$(ConfigurationName)\Tmp" |
508 | ConfigurationType="1" | 506 | ConfigurationType="1" |
509 | CharacterSet="2" | 507 | CharacterSet="2" |
510 | WholeProgramOptimization="1" | 508 | WholeProgramOptimization="1" |
@@ -523,6 +521,7 @@ | |||
523 | /> | 521 | /> |
524 | <Tool | 522 | <Tool |
525 | Name="VCMIDLTool" | 523 | Name="VCMIDLTool" |
524 | TargetEnvironment="2" | ||
526 | /> | 525 | /> |
527 | <Tool | 526 | <Tool |
528 | Name="VCCLCompilerTool" | 527 | Name="VCCLCompilerTool" |
@@ -530,10 +529,10 @@ | |||
530 | InlineFunctionExpansion="1" | 529 | InlineFunctionExpansion="1" |
531 | OmitFramePointers="true" | 530 | OmitFramePointers="true" |
532 | AdditionalIncludeDirectories="..\..\.." | 531 | AdditionalIncludeDirectories="..\..\.." |
533 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | 532 | PreprocessorDefinitions="ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64" |
534 | StringPooling="true" | 533 | StringPooling="true" |
535 | BasicRuntimeChecks="0" | 534 | BasicRuntimeChecks="0" |
536 | RuntimeLibrary="0" | 535 | RuntimeLibrary="2" |
537 | BufferSecurityCheck="false" | 536 | BufferSecurityCheck="false" |
538 | EnableFunctionLevelLinking="true" | 537 | EnableFunctionLevelLinking="true" |
539 | UsePrecompiledHeader="0" | 538 | UsePrecompiledHeader="0" |
@@ -553,7 +552,6 @@ | |||
553 | /> | 552 | /> |
554 | <Tool | 553 | <Tool |
555 | Name="VCLinkerTool" | 554 | Name="VCLinkerTool" |
556 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj" | ||
557 | OutputFile="$(OutDir)/testzlib.exe" | 555 | OutputFile="$(OutDir)/testzlib.exe" |
558 | LinkIncremental="1" | 556 | LinkIncremental="1" |
559 | GenerateManifest="false" | 557 | GenerateManifest="false" |
@@ -562,7 +560,7 @@ | |||
562 | OptimizeReferences="2" | 560 | OptimizeReferences="2" |
563 | EnableCOMDATFolding="2" | 561 | EnableCOMDATFolding="2" |
564 | OptimizeForWindows98="1" | 562 | OptimizeForWindows98="1" |
565 | TargetMachine="1" | 563 | TargetMachine="5" |
566 | /> | 564 | /> |
567 | <Tool | 565 | <Tool |
568 | Name="VCALinkTool" | 566 | Name="VCALinkTool" |
@@ -614,7 +612,7 @@ | |||
614 | <Tool | 612 | <Tool |
615 | Name="VCCLCompilerTool" | 613 | Name="VCCLCompilerTool" |
616 | AdditionalIncludeDirectories="..\..\.." | 614 | AdditionalIncludeDirectories="..\..\.." |
617 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | 615 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS" |
618 | BasicRuntimeChecks="0" | 616 | BasicRuntimeChecks="0" |
619 | RuntimeLibrary="2" | 617 | RuntimeLibrary="2" |
620 | BufferSecurityCheck="false" | 618 | BufferSecurityCheck="false" |
@@ -689,7 +687,7 @@ | |||
689 | InlineFunctionExpansion="1" | 687 | InlineFunctionExpansion="1" |
690 | OmitFramePointers="true" | 688 | OmitFramePointers="true" |
691 | AdditionalIncludeDirectories="..\..\.." | 689 | AdditionalIncludeDirectories="..\..\.." |
692 | PreprocessorDefinitions="ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | 690 | PreprocessorDefinitions="ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64" |
693 | StringPooling="true" | 691 | StringPooling="true" |
694 | BasicRuntimeChecks="0" | 692 | BasicRuntimeChecks="0" |
695 | RuntimeLibrary="2" | 693 | RuntimeLibrary="2" |
@@ -863,7 +861,7 @@ | |||
863 | /> | 861 | /> |
864 | </FileConfiguration> | 862 | </FileConfiguration> |
865 | <FileConfiguration | 863 | <FileConfiguration |
866 | Name="Debug|Itanium" | 864 | Name="ReleaseWithoutAsm|Win32" |
867 | ExcludedFromBuild="true" | 865 | ExcludedFromBuild="true" |
868 | > | 866 | > |
869 | <Tool | 867 | <Tool |
@@ -871,7 +869,7 @@ | |||
871 | /> | 869 | /> |
872 | </FileConfiguration> | 870 | </FileConfiguration> |
873 | <FileConfiguration | 871 | <FileConfiguration |
874 | Name="ReleaseWithoutAsm|Win32" | 872 | Name="Release|Win32" |
875 | ExcludedFromBuild="true" | 873 | ExcludedFromBuild="true" |
876 | > | 874 | > |
877 | <Tool | 875 | <Tool |
@@ -879,7 +877,7 @@ | |||
879 | /> | 877 | /> |
880 | </FileConfiguration> | 878 | </FileConfiguration> |
881 | <FileConfiguration | 879 | <FileConfiguration |
882 | Name="ReleaseWithoutAsm|Itanium" | 880 | Name="Debug|Itanium" |
883 | ExcludedFromBuild="true" | 881 | ExcludedFromBuild="true" |
884 | > | 882 | > |
885 | <Tool | 883 | <Tool |
@@ -887,7 +885,7 @@ | |||
887 | /> | 885 | /> |
888 | </FileConfiguration> | 886 | </FileConfiguration> |
889 | <FileConfiguration | 887 | <FileConfiguration |
890 | Name="Release|Win32" | 888 | Name="ReleaseWithoutAsm|Itanium" |
891 | ExcludedFromBuild="true" | 889 | ExcludedFromBuild="true" |
892 | > | 890 | > |
893 | <Tool | 891 | <Tool |
diff --git a/contrib/vstudio/vc8/testzlibdll.vcproj b/contrib/vstudio/vc9/testzlibdll.vcproj index f38ab5e..b1ddde0 100644 --- a/contrib/vstudio/vc8/testzlibdll.vcproj +++ b/contrib/vstudio/vc9/testzlibdll.vcproj | |||
@@ -1,11 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="Windows-1252"?> | 1 | <?xml version="1.0" encoding="Windows-1252"?> |
2 | <VisualStudioProject | 2 | <VisualStudioProject |
3 | ProjectType="Visual C++" | 3 | ProjectType="Visual C++" |
4 | Version="8,00" | 4 | Version="9.00" |
5 | Name="TestZlibDll" | 5 | Name="TestZlibDll" |
6 | ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694366A}" | 6 | ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694366A}" |
7 | Keyword="Win32Proj" | 7 | Keyword="Win32Proj" |
8 | SignManifests="true" | 8 | TargetFrameworkVersion="131072" |
9 | > | 9 | > |
10 | <Platforms> | 10 | <Platforms> |
11 | <Platform | 11 | <Platform |
@@ -77,6 +77,8 @@ | |||
77 | GenerateDebugInformation="true" | 77 | GenerateDebugInformation="true" |
78 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | 78 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" |
79 | SubSystem="1" | 79 | SubSystem="1" |
80 | RandomizedBaseAddress="1" | ||
81 | DataExecutionPrevention="0" | ||
80 | TargetMachine="1" | 82 | TargetMachine="1" |
81 | /> | 83 | /> |
82 | <Tool | 84 | <Tool |
@@ -98,16 +100,13 @@ | |||
98 | Name="VCAppVerifierTool" | 100 | Name="VCAppVerifierTool" |
99 | /> | 101 | /> |
100 | <Tool | 102 | <Tool |
101 | Name="VCWebDeploymentTool" | ||
102 | /> | ||
103 | <Tool | ||
104 | Name="VCPostBuildEventTool" | 103 | Name="VCPostBuildEventTool" |
105 | /> | 104 | /> |
106 | </Configuration> | 105 | </Configuration> |
107 | <Configuration | 106 | <Configuration |
108 | Name="Debug|x64" | 107 | Name="Release|Win32" |
109 | OutputDirectory="x64\TestZlibDll$(ConfigurationName)" | 108 | OutputDirectory="x86\TestZlibDll$(ConfigurationName)" |
110 | IntermediateDirectory="x64\TestZlibDll$(ConfigurationName)\Tmp" | 109 | IntermediateDirectory="x86\TestZlibDll$(ConfigurationName)\Tmp" |
111 | ConfigurationType="1" | 110 | ConfigurationType="1" |
112 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 111 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
113 | CharacterSet="2" | 112 | CharacterSet="2" |
@@ -126,17 +125,19 @@ | |||
126 | /> | 125 | /> |
127 | <Tool | 126 | <Tool |
128 | Name="VCMIDLTool" | 127 | Name="VCMIDLTool" |
129 | TargetEnvironment="3" | ||
130 | /> | 128 | /> |
131 | <Tool | 129 | <Tool |
132 | Name="VCCLCompilerTool" | 130 | Name="VCCLCompilerTool" |
133 | Optimization="0" | 131 | Optimization="2" |
132 | InlineFunctionExpansion="1" | ||
133 | OmitFramePointers="true" | ||
134 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | 134 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" |
135 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | 135 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" |
136 | MinimalRebuild="true" | 136 | StringPooling="true" |
137 | BasicRuntimeChecks="0" | 137 | BasicRuntimeChecks="0" |
138 | RuntimeLibrary="3" | 138 | RuntimeLibrary="0" |
139 | BufferSecurityCheck="false" | 139 | BufferSecurityCheck="false" |
140 | EnableFunctionLevelLinking="true" | ||
140 | UsePrecompiledHeader="0" | 141 | UsePrecompiledHeader="0" |
141 | AssemblerListingLocation="$(IntDir)\" | 142 | AssemblerListingLocation="$(IntDir)\" |
142 | WarningLevel="3" | 143 | WarningLevel="3" |
@@ -154,14 +155,18 @@ | |||
154 | /> | 155 | /> |
155 | <Tool | 156 | <Tool |
156 | Name="VCLinkerTool" | 157 | Name="VCLinkerTool" |
157 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" | 158 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" |
158 | OutputFile="$(OutDir)/testzlib.exe" | 159 | OutputFile="$(OutDir)/testzlib.exe" |
159 | LinkIncremental="2" | 160 | LinkIncremental="1" |
160 | GenerateManifest="false" | 161 | GenerateManifest="false" |
161 | GenerateDebugInformation="true" | 162 | GenerateDebugInformation="true" |
162 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
163 | SubSystem="1" | 163 | SubSystem="1" |
164 | TargetMachine="17" | 164 | OptimizeReferences="2" |
165 | EnableCOMDATFolding="2" | ||
166 | OptimizeForWindows98="1" | ||
167 | RandomizedBaseAddress="1" | ||
168 | DataExecutionPrevention="0" | ||
169 | TargetMachine="1" | ||
165 | /> | 170 | /> |
166 | <Tool | 171 | <Tool |
167 | Name="VCALinkTool" | 172 | Name="VCALinkTool" |
@@ -182,16 +187,13 @@ | |||
182 | Name="VCAppVerifierTool" | 187 | Name="VCAppVerifierTool" |
183 | /> | 188 | /> |
184 | <Tool | 189 | <Tool |
185 | Name="VCWebDeploymentTool" | ||
186 | /> | ||
187 | <Tool | ||
188 | Name="VCPostBuildEventTool" | 190 | Name="VCPostBuildEventTool" |
189 | /> | 191 | /> |
190 | </Configuration> | 192 | </Configuration> |
191 | <Configuration | 193 | <Configuration |
192 | Name="Debug|Itanium" | 194 | Name="Debug|x64" |
193 | OutputDirectory="ia64\TestZlibDll$(ConfigurationName)" | 195 | OutputDirectory="x64\TestZlibDll$(ConfigurationName)" |
194 | IntermediateDirectory="ia64\TestZlibDll$(ConfigurationName)\Tmp" | 196 | IntermediateDirectory="x64\TestZlibDll$(ConfigurationName)\Tmp" |
195 | ConfigurationType="1" | 197 | ConfigurationType="1" |
196 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 198 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
197 | CharacterSet="2" | 199 | CharacterSet="2" |
@@ -210,7 +212,7 @@ | |||
210 | /> | 212 | /> |
211 | <Tool | 213 | <Tool |
212 | Name="VCMIDLTool" | 214 | Name="VCMIDLTool" |
213 | TargetEnvironment="2" | 215 | TargetEnvironment="3" |
214 | /> | 216 | /> |
215 | <Tool | 217 | <Tool |
216 | Name="VCCLCompilerTool" | 218 | Name="VCCLCompilerTool" |
@@ -238,14 +240,14 @@ | |||
238 | /> | 240 | /> |
239 | <Tool | 241 | <Tool |
240 | Name="VCLinkerTool" | 242 | Name="VCLinkerTool" |
241 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" | 243 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" |
242 | OutputFile="$(OutDir)/testzlib.exe" | 244 | OutputFile="$(OutDir)/testzlib.exe" |
243 | LinkIncremental="2" | 245 | LinkIncremental="2" |
244 | GenerateManifest="false" | 246 | GenerateManifest="false" |
245 | GenerateDebugInformation="true" | 247 | GenerateDebugInformation="true" |
246 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | 248 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" |
247 | SubSystem="1" | 249 | SubSystem="1" |
248 | TargetMachine="5" | 250 | TargetMachine="17" |
249 | /> | 251 | /> |
250 | <Tool | 252 | <Tool |
251 | Name="VCALinkTool" | 253 | Name="VCALinkTool" |
@@ -273,9 +275,9 @@ | |||
273 | /> | 275 | /> |
274 | </Configuration> | 276 | </Configuration> |
275 | <Configuration | 277 | <Configuration |
276 | Name="Release|Win32" | 278 | Name="Debug|Itanium" |
277 | OutputDirectory="x86\TestZlibDll$(ConfigurationName)" | 279 | OutputDirectory="ia64\TestZlibDll$(ConfigurationName)" |
278 | IntermediateDirectory="x86\TestZlibDll$(ConfigurationName)\Tmp" | 280 | IntermediateDirectory="ia64\TestZlibDll$(ConfigurationName)\Tmp" |
279 | ConfigurationType="1" | 281 | ConfigurationType="1" |
280 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 282 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
281 | CharacterSet="2" | 283 | CharacterSet="2" |
@@ -294,19 +296,17 @@ | |||
294 | /> | 296 | /> |
295 | <Tool | 297 | <Tool |
296 | Name="VCMIDLTool" | 298 | Name="VCMIDLTool" |
299 | TargetEnvironment="2" | ||
297 | /> | 300 | /> |
298 | <Tool | 301 | <Tool |
299 | Name="VCCLCompilerTool" | 302 | Name="VCCLCompilerTool" |
300 | Optimization="2" | 303 | Optimization="0" |
301 | InlineFunctionExpansion="1" | ||
302 | OmitFramePointers="true" | ||
303 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | 304 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" |
304 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" | 305 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" |
305 | StringPooling="true" | 306 | MinimalRebuild="true" |
306 | BasicRuntimeChecks="0" | 307 | BasicRuntimeChecks="0" |
307 | RuntimeLibrary="0" | 308 | RuntimeLibrary="3" |
308 | BufferSecurityCheck="false" | 309 | BufferSecurityCheck="false" |
309 | EnableFunctionLevelLinking="true" | ||
310 | UsePrecompiledHeader="0" | 310 | UsePrecompiledHeader="0" |
311 | AssemblerListingLocation="$(IntDir)\" | 311 | AssemblerListingLocation="$(IntDir)\" |
312 | WarningLevel="3" | 312 | WarningLevel="3" |
@@ -324,16 +324,14 @@ | |||
324 | /> | 324 | /> |
325 | <Tool | 325 | <Tool |
326 | Name="VCLinkerTool" | 326 | Name="VCLinkerTool" |
327 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" | 327 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" |
328 | OutputFile="$(OutDir)/testzlib.exe" | 328 | OutputFile="$(OutDir)/testzlib.exe" |
329 | LinkIncremental="1" | 329 | LinkIncremental="2" |
330 | GenerateManifest="false" | 330 | GenerateManifest="false" |
331 | GenerateDebugInformation="true" | 331 | GenerateDebugInformation="true" |
332 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
332 | SubSystem="1" | 333 | SubSystem="1" |
333 | OptimizeReferences="2" | 334 | TargetMachine="5" |
334 | EnableCOMDATFolding="2" | ||
335 | OptimizeForWindows98="1" | ||
336 | TargetMachine="1" | ||
337 | /> | 335 | /> |
338 | <Tool | 336 | <Tool |
339 | Name="VCALinkTool" | 337 | Name="VCALinkTool" |
diff --git a/contrib/vstudio/vc7/zlib.rc b/contrib/vstudio/vc9/zlib.rc index 266fb83..72cb8b4 100644 --- a/contrib/vstudio/vc7/zlib.rc +++ b/contrib/vstudio/vc9/zlib.rc | |||
@@ -2,8 +2,8 @@ | |||
2 | 2 | ||
3 | #define IDR_VERSION1 1 | 3 | #define IDR_VERSION1 1 |
4 | IDR_VERSION1 VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE | 4 | IDR_VERSION1 VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE |
5 | FILEVERSION 1,2,3,8 | 5 | FILEVERSION 1,2,3,0 |
6 | PRODUCTVERSION 1,2,3,8 | 6 | PRODUCTVERSION 1,2,3,0 |
7 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | 7 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK |
8 | FILEFLAGS 0 | 8 | FILEFLAGS 0 |
9 | FILEOS VOS_DOS_WINDOWS32 | 9 | FILEOS VOS_DOS_WINDOWS32 |
@@ -17,12 +17,12 @@ BEGIN | |||
17 | 17 | ||
18 | BEGIN | 18 | BEGIN |
19 | VALUE "FileDescription", "zlib data compression library\0" | 19 | VALUE "FileDescription", "zlib data compression library\0" |
20 | VALUE "FileVersion", "1.2.3.8\0" | 20 | VALUE "FileVersion", "1.2.3.0\0" |
21 | VALUE "InternalName", "zlib\0" | 21 | VALUE "InternalName", "zlib\0" |
22 | VALUE "OriginalFilename", "zlib.dll\0" | 22 | VALUE "OriginalFilename", "zlib.dll\0" |
23 | VALUE "ProductName", "ZLib.DLL\0" | 23 | VALUE "ProductName", "ZLib.DLL\0" |
24 | VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | 24 | VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" |
25 | VALUE "LegalCopyright", "(C) 1995-2010 Jean-loup Gailly & Mark Adler\0" | 25 | VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0" |
26 | END | 26 | END |
27 | END | 27 | END |
28 | BLOCK "VarFileInfo" | 28 | BLOCK "VarFileInfo" |
diff --git a/contrib/vstudio/vc8/zlibstat.vcproj b/contrib/vstudio/vc9/zlibstat.vcproj index 51a4073..ff9813a 100644 --- a/contrib/vstudio/vc8/zlibstat.vcproj +++ b/contrib/vstudio/vc9/zlibstat.vcproj | |||
@@ -1,9 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="Windows-1252"?> | 1 | <?xml version="1.0" encoding="Windows-1252"?> |
2 | <VisualStudioProject | 2 | <VisualStudioProject |
3 | ProjectType="Visual C++" | 3 | ProjectType="Visual C++" |
4 | Version="8,00" | 4 | Version="9.00" |
5 | Name="zlibstat" | 5 | Name="zlibstat" |
6 | ProjectGUID="{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" | 6 | ProjectGUID="{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" |
7 | TargetFrameworkVersion="131072" | ||
7 | > | 8 | > |
8 | <Platforms> | 9 | <Platforms> |
9 | <Platform | 10 | <Platform |
@@ -47,7 +48,7 @@ | |||
47 | Name="VCCLCompilerTool" | 48 | Name="VCCLCompilerTool" |
48 | Optimization="0" | 49 | Optimization="0" |
49 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 50 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
50 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | 51 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS" |
51 | ExceptionHandling="0" | 52 | ExceptionHandling="0" |
52 | RuntimeLibrary="1" | 53 | RuntimeLibrary="1" |
53 | BufferSecurityCheck="false" | 54 | BufferSecurityCheck="false" |
@@ -93,9 +94,9 @@ | |||
93 | /> | 94 | /> |
94 | </Configuration> | 95 | </Configuration> |
95 | <Configuration | 96 | <Configuration |
96 | Name="Debug|x64" | 97 | Name="Release|Win32" |
97 | OutputDirectory="x64\ZlibStat$(ConfigurationName)" | 98 | OutputDirectory="x86\ZlibStat$(ConfigurationName)" |
98 | IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp" | 99 | IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp" |
99 | ConfigurationType="4" | 100 | ConfigurationType="4" |
100 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 101 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
101 | UseOfMFC="0" | 102 | UseOfMFC="0" |
@@ -115,24 +116,23 @@ | |||
115 | /> | 116 | /> |
116 | <Tool | 117 | <Tool |
117 | Name="VCMIDLTool" | 118 | Name="VCMIDLTool" |
118 | TargetEnvironment="3" | ||
119 | /> | 119 | /> |
120 | <Tool | 120 | <Tool |
121 | Name="VCCLCompilerTool" | 121 | Name="VCCLCompilerTool" |
122 | Optimization="0" | 122 | InlineFunctionExpansion="1" |
123 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 123 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
124 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | 124 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ASMV;ASMINF" |
125 | StringPooling="true" | ||
125 | ExceptionHandling="0" | 126 | ExceptionHandling="0" |
126 | RuntimeLibrary="3" | 127 | RuntimeLibrary="0" |
127 | BufferSecurityCheck="false" | 128 | BufferSecurityCheck="false" |
129 | EnableFunctionLevelLinking="true" | ||
128 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | 130 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" |
129 | AssemblerListingLocation="$(IntDir)\" | 131 | AssemblerListingLocation="$(IntDir)\" |
130 | ObjectFile="$(IntDir)\" | 132 | ObjectFile="$(IntDir)\" |
131 | ProgramDataBaseFileName="$(OutDir)\" | 133 | ProgramDataBaseFileName="$(OutDir)\" |
132 | WarningLevel="3" | 134 | WarningLevel="3" |
133 | SuppressStartupBanner="true" | 135 | SuppressStartupBanner="true" |
134 | Detect64BitPortabilityProblems="true" | ||
135 | DebugInformationFormat="1" | ||
136 | /> | 136 | /> |
137 | <Tool | 137 | <Tool |
138 | Name="VCManagedResourceCompilerTool" | 138 | Name="VCManagedResourceCompilerTool" |
@@ -146,7 +146,8 @@ | |||
146 | /> | 146 | /> |
147 | <Tool | 147 | <Tool |
148 | Name="VCLibrarianTool" | 148 | Name="VCLibrarianTool" |
149 | AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB" | 149 | AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB" |
150 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj " | ||
150 | OutputFile="$(OutDir)\zlibstat.lib" | 151 | OutputFile="$(OutDir)\zlibstat.lib" |
151 | SuppressStartupBanner="true" | 152 | SuppressStartupBanner="true" |
152 | /> | 153 | /> |
@@ -167,9 +168,9 @@ | |||
167 | /> | 168 | /> |
168 | </Configuration> | 169 | </Configuration> |
169 | <Configuration | 170 | <Configuration |
170 | Name="Debug|Itanium" | 171 | Name="ReleaseWithoutAsm|Win32" |
171 | OutputDirectory="ia64\ZlibStat$(ConfigurationName)" | 172 | OutputDirectory="x86\ZlibStat$(ConfigurationName)" |
172 | IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp" | 173 | IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp" |
173 | ConfigurationType="4" | 174 | ConfigurationType="4" |
174 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 175 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
175 | UseOfMFC="0" | 176 | UseOfMFC="0" |
@@ -189,24 +190,23 @@ | |||
189 | /> | 190 | /> |
190 | <Tool | 191 | <Tool |
191 | Name="VCMIDLTool" | 192 | Name="VCMIDLTool" |
192 | TargetEnvironment="2" | ||
193 | /> | 193 | /> |
194 | <Tool | 194 | <Tool |
195 | Name="VCCLCompilerTool" | 195 | Name="VCCLCompilerTool" |
196 | Optimization="0" | 196 | InlineFunctionExpansion="1" |
197 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 197 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
198 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | 198 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS" |
199 | StringPooling="true" | ||
199 | ExceptionHandling="0" | 200 | ExceptionHandling="0" |
200 | RuntimeLibrary="3" | 201 | RuntimeLibrary="0" |
201 | BufferSecurityCheck="false" | 202 | BufferSecurityCheck="false" |
203 | EnableFunctionLevelLinking="true" | ||
202 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | 204 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" |
203 | AssemblerListingLocation="$(IntDir)\" | 205 | AssemblerListingLocation="$(IntDir)\" |
204 | ObjectFile="$(IntDir)\" | 206 | ObjectFile="$(IntDir)\" |
205 | ProgramDataBaseFileName="$(OutDir)\" | 207 | ProgramDataBaseFileName="$(OutDir)\" |
206 | WarningLevel="3" | 208 | WarningLevel="3" |
207 | SuppressStartupBanner="true" | 209 | SuppressStartupBanner="true" |
208 | Detect64BitPortabilityProblems="true" | ||
209 | DebugInformationFormat="1" | ||
210 | /> | 210 | /> |
211 | <Tool | 211 | <Tool |
212 | Name="VCManagedResourceCompilerTool" | 212 | Name="VCManagedResourceCompilerTool" |
@@ -220,7 +220,7 @@ | |||
220 | /> | 220 | /> |
221 | <Tool | 221 | <Tool |
222 | Name="VCLibrarianTool" | 222 | Name="VCLibrarianTool" |
223 | AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB" | 223 | AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB" |
224 | OutputFile="$(OutDir)\zlibstat.lib" | 224 | OutputFile="$(OutDir)\zlibstat.lib" |
225 | SuppressStartupBanner="true" | 225 | SuppressStartupBanner="true" |
226 | /> | 226 | /> |
@@ -241,9 +241,9 @@ | |||
241 | /> | 241 | /> |
242 | </Configuration> | 242 | </Configuration> |
243 | <Configuration | 243 | <Configuration |
244 | Name="Release|Win32" | 244 | Name="Debug|x64" |
245 | OutputDirectory="x86\ZlibStat$(ConfigurationName)" | 245 | OutputDirectory="x64\ZlibStat$(ConfigurationName)" |
246 | IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp" | 246 | IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp" |
247 | ConfigurationType="4" | 247 | ConfigurationType="4" |
248 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 248 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
249 | UseOfMFC="0" | 249 | UseOfMFC="0" |
@@ -263,23 +263,24 @@ | |||
263 | /> | 263 | /> |
264 | <Tool | 264 | <Tool |
265 | Name="VCMIDLTool" | 265 | Name="VCMIDLTool" |
266 | TargetEnvironment="3" | ||
266 | /> | 267 | /> |
267 | <Tool | 268 | <Tool |
268 | Name="VCCLCompilerTool" | 269 | Name="VCCLCompilerTool" |
269 | InlineFunctionExpansion="1" | 270 | Optimization="0" |
270 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 271 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
271 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ASMV;ASMINF" | 272 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64" |
272 | StringPooling="true" | ||
273 | ExceptionHandling="0" | 273 | ExceptionHandling="0" |
274 | RuntimeLibrary="0" | 274 | RuntimeLibrary="3" |
275 | BufferSecurityCheck="false" | 275 | BufferSecurityCheck="false" |
276 | EnableFunctionLevelLinking="true" | ||
277 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | 276 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" |
278 | AssemblerListingLocation="$(IntDir)\" | 277 | AssemblerListingLocation="$(IntDir)\" |
279 | ObjectFile="$(IntDir)\" | 278 | ObjectFile="$(IntDir)\" |
280 | ProgramDataBaseFileName="$(OutDir)\" | 279 | ProgramDataBaseFileName="$(OutDir)\" |
281 | WarningLevel="3" | 280 | WarningLevel="3" |
282 | SuppressStartupBanner="true" | 281 | SuppressStartupBanner="true" |
282 | Detect64BitPortabilityProblems="true" | ||
283 | DebugInformationFormat="1" | ||
283 | /> | 284 | /> |
284 | <Tool | 285 | <Tool |
285 | Name="VCManagedResourceCompilerTool" | 286 | Name="VCManagedResourceCompilerTool" |
@@ -293,8 +294,7 @@ | |||
293 | /> | 294 | /> |
294 | <Tool | 295 | <Tool |
295 | Name="VCLibrarianTool" | 296 | Name="VCLibrarianTool" |
296 | AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB" | 297 | AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB" |
297 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj " | ||
298 | OutputFile="$(OutDir)\zlibstat.lib" | 298 | OutputFile="$(OutDir)\zlibstat.lib" |
299 | SuppressStartupBanner="true" | 299 | SuppressStartupBanner="true" |
300 | /> | 300 | /> |
@@ -315,9 +315,9 @@ | |||
315 | /> | 315 | /> |
316 | </Configuration> | 316 | </Configuration> |
317 | <Configuration | 317 | <Configuration |
318 | Name="Release|x64" | 318 | Name="Debug|Itanium" |
319 | OutputDirectory="x64\ZlibStat$(ConfigurationName)" | 319 | OutputDirectory="ia64\ZlibStat$(ConfigurationName)" |
320 | IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp" | 320 | IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp" |
321 | ConfigurationType="4" | 321 | ConfigurationType="4" |
322 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 322 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
323 | UseOfMFC="0" | 323 | UseOfMFC="0" |
@@ -337,24 +337,24 @@ | |||
337 | /> | 337 | /> |
338 | <Tool | 338 | <Tool |
339 | Name="VCMIDLTool" | 339 | Name="VCMIDLTool" |
340 | TargetEnvironment="3" | 340 | TargetEnvironment="2" |
341 | /> | 341 | /> |
342 | <Tool | 342 | <Tool |
343 | Name="VCCLCompilerTool" | 343 | Name="VCCLCompilerTool" |
344 | InlineFunctionExpansion="1" | 344 | Optimization="0" |
345 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 345 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
346 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ASMV;ASMINF;WIN64" | 346 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64" |
347 | StringPooling="true" | ||
348 | ExceptionHandling="0" | 347 | ExceptionHandling="0" |
349 | RuntimeLibrary="2" | 348 | RuntimeLibrary="3" |
350 | BufferSecurityCheck="false" | 349 | BufferSecurityCheck="false" |
351 | EnableFunctionLevelLinking="true" | ||
352 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | 350 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" |
353 | AssemblerListingLocation="$(IntDir)\" | 351 | AssemblerListingLocation="$(IntDir)\" |
354 | ObjectFile="$(IntDir)\" | 352 | ObjectFile="$(IntDir)\" |
355 | ProgramDataBaseFileName="$(OutDir)\" | 353 | ProgramDataBaseFileName="$(OutDir)\" |
356 | WarningLevel="3" | 354 | WarningLevel="3" |
357 | SuppressStartupBanner="true" | 355 | SuppressStartupBanner="true" |
356 | Detect64BitPortabilityProblems="true" | ||
357 | DebugInformationFormat="1" | ||
358 | /> | 358 | /> |
359 | <Tool | 359 | <Tool |
360 | Name="VCManagedResourceCompilerTool" | 360 | Name="VCManagedResourceCompilerTool" |
@@ -368,8 +368,7 @@ | |||
368 | /> | 368 | /> |
369 | <Tool | 369 | <Tool |
370 | Name="VCLibrarianTool" | 370 | Name="VCLibrarianTool" |
371 | AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB" | 371 | AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB" |
372 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj " | ||
373 | OutputFile="$(OutDir)\zlibstat.lib" | 372 | OutputFile="$(OutDir)\zlibstat.lib" |
374 | SuppressStartupBanner="true" | 373 | SuppressStartupBanner="true" |
375 | /> | 374 | /> |
@@ -390,9 +389,9 @@ | |||
390 | /> | 389 | /> |
391 | </Configuration> | 390 | </Configuration> |
392 | <Configuration | 391 | <Configuration |
393 | Name="Release|Itanium" | 392 | Name="Release|x64" |
394 | OutputDirectory="ia64\ZlibStat$(ConfigurationName)" | 393 | OutputDirectory="x64\ZlibStat$(ConfigurationName)" |
395 | IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp" | 394 | IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp" |
396 | ConfigurationType="4" | 395 | ConfigurationType="4" |
397 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 396 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
398 | UseOfMFC="0" | 397 | UseOfMFC="0" |
@@ -412,13 +411,13 @@ | |||
412 | /> | 411 | /> |
413 | <Tool | 412 | <Tool |
414 | Name="VCMIDLTool" | 413 | Name="VCMIDLTool" |
415 | TargetEnvironment="2" | 414 | TargetEnvironment="3" |
416 | /> | 415 | /> |
417 | <Tool | 416 | <Tool |
418 | Name="VCCLCompilerTool" | 417 | Name="VCCLCompilerTool" |
419 | InlineFunctionExpansion="1" | 418 | InlineFunctionExpansion="1" |
420 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 419 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
421 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | 420 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ASMV;ASMINF;WIN64" |
422 | StringPooling="true" | 421 | StringPooling="true" |
423 | ExceptionHandling="0" | 422 | ExceptionHandling="0" |
424 | RuntimeLibrary="2" | 423 | RuntimeLibrary="2" |
@@ -443,7 +442,8 @@ | |||
443 | /> | 442 | /> |
444 | <Tool | 443 | <Tool |
445 | Name="VCLibrarianTool" | 444 | Name="VCLibrarianTool" |
446 | AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB" | 445 | AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB" |
446 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj " | ||
447 | OutputFile="$(OutDir)\zlibstat.lib" | 447 | OutputFile="$(OutDir)\zlibstat.lib" |
448 | SuppressStartupBanner="true" | 448 | SuppressStartupBanner="true" |
449 | /> | 449 | /> |
@@ -464,9 +464,9 @@ | |||
464 | /> | 464 | /> |
465 | </Configuration> | 465 | </Configuration> |
466 | <Configuration | 466 | <Configuration |
467 | Name="ReleaseWithoutAsm|Win32" | 467 | Name="Release|Itanium" |
468 | OutputDirectory="x86\ZlibStat$(ConfigurationName)" | 468 | OutputDirectory="ia64\ZlibStat$(ConfigurationName)" |
469 | IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp" | 469 | IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp" |
470 | ConfigurationType="4" | 470 | ConfigurationType="4" |
471 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 471 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
472 | UseOfMFC="0" | 472 | UseOfMFC="0" |
@@ -486,15 +486,16 @@ | |||
486 | /> | 486 | /> |
487 | <Tool | 487 | <Tool |
488 | Name="VCMIDLTool" | 488 | Name="VCMIDLTool" |
489 | TargetEnvironment="2" | ||
489 | /> | 490 | /> |
490 | <Tool | 491 | <Tool |
491 | Name="VCCLCompilerTool" | 492 | Name="VCCLCompilerTool" |
492 | InlineFunctionExpansion="1" | 493 | InlineFunctionExpansion="1" |
493 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 494 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
494 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | 495 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64" |
495 | StringPooling="true" | 496 | StringPooling="true" |
496 | ExceptionHandling="0" | 497 | ExceptionHandling="0" |
497 | RuntimeLibrary="0" | 498 | RuntimeLibrary="2" |
498 | BufferSecurityCheck="false" | 499 | BufferSecurityCheck="false" |
499 | EnableFunctionLevelLinking="true" | 500 | EnableFunctionLevelLinking="true" |
500 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | 501 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" |
@@ -516,7 +517,7 @@ | |||
516 | /> | 517 | /> |
517 | <Tool | 518 | <Tool |
518 | Name="VCLibrarianTool" | 519 | Name="VCLibrarianTool" |
519 | AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB" | 520 | AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB" |
520 | OutputFile="$(OutDir)\zlibstat.lib" | 521 | OutputFile="$(OutDir)\zlibstat.lib" |
521 | SuppressStartupBanner="true" | 522 | SuppressStartupBanner="true" |
522 | /> | 523 | /> |
@@ -565,7 +566,7 @@ | |||
565 | Name="VCCLCompilerTool" | 566 | Name="VCCLCompilerTool" |
566 | InlineFunctionExpansion="1" | 567 | InlineFunctionExpansion="1" |
567 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 568 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
568 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | 569 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64" |
569 | StringPooling="true" | 570 | StringPooling="true" |
570 | ExceptionHandling="0" | 571 | ExceptionHandling="0" |
571 | RuntimeLibrary="2" | 572 | RuntimeLibrary="2" |
@@ -639,7 +640,7 @@ | |||
639 | Name="VCCLCompilerTool" | 640 | Name="VCCLCompilerTool" |
640 | InlineFunctionExpansion="1" | 641 | InlineFunctionExpansion="1" |
641 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 642 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
642 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | 643 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN64" |
643 | StringPooling="true" | 644 | StringPooling="true" |
644 | ExceptionHandling="0" | 645 | ExceptionHandling="0" |
645 | RuntimeLibrary="2" | 646 | RuntimeLibrary="2" |
@@ -760,19 +761,24 @@ | |||
760 | </FileConfiguration> | 761 | </FileConfiguration> |
761 | </File> | 762 | </File> |
762 | <File | 763 | <File |
763 | RelativePath="..\..\..\gzclose.c"> | 764 | RelativePath="..\..\..\gzclose.c" |
765 | > | ||
764 | </File> | 766 | </File> |
765 | <File | 767 | <File |
766 | RelativePath="..\..\..\gzio.c"> | 768 | RelativePath="..\..\..\gzio.c" |
769 | > | ||
767 | </File> | 770 | </File> |
768 | <File | 771 | <File |
769 | RelativePath="..\..\..\gzlib.c"> | 772 | RelativePath="..\..\..\gzlib.c" |
773 | > | ||
770 | </File> | 774 | </File> |
771 | <File | 775 | <File |
772 | RelativePath="..\..\..\gzread.c"> | 776 | RelativePath="..\..\..\gzread.c" |
777 | > | ||
773 | </File> | 778 | </File> |
774 | <File | 779 | <File |
775 | RelativePath="..\..\..\gzwrite.c"> | 780 | RelativePath="..\..\..\gzwrite.c" |
781 | > | ||
776 | </File> | 782 | </File> |
777 | <File | 783 | <File |
778 | RelativePath="..\..\..\infback.c" | 784 | RelativePath="..\..\..\infback.c" |
@@ -790,7 +796,7 @@ | |||
790 | /> | 796 | /> |
791 | </FileConfiguration> | 797 | </FileConfiguration> |
792 | <FileConfiguration | 798 | <FileConfiguration |
793 | Name="Debug|Itanium" | 799 | Name="Release|Win32" |
794 | ExcludedFromBuild="true" | 800 | ExcludedFromBuild="true" |
795 | > | 801 | > |
796 | <Tool | 802 | <Tool |
@@ -798,7 +804,7 @@ | |||
798 | /> | 804 | /> |
799 | </FileConfiguration> | 805 | </FileConfiguration> |
800 | <FileConfiguration | 806 | <FileConfiguration |
801 | Name="Release|Win32" | 807 | Name="ReleaseWithoutAsm|Win32" |
802 | ExcludedFromBuild="true" | 808 | ExcludedFromBuild="true" |
803 | > | 809 | > |
804 | <Tool | 810 | <Tool |
@@ -806,7 +812,7 @@ | |||
806 | /> | 812 | /> |
807 | </FileConfiguration> | 813 | </FileConfiguration> |
808 | <FileConfiguration | 814 | <FileConfiguration |
809 | Name="Release|Itanium" | 815 | Name="Debug|Itanium" |
810 | ExcludedFromBuild="true" | 816 | ExcludedFromBuild="true" |
811 | > | 817 | > |
812 | <Tool | 818 | <Tool |
@@ -814,7 +820,7 @@ | |||
814 | /> | 820 | /> |
815 | </FileConfiguration> | 821 | </FileConfiguration> |
816 | <FileConfiguration | 822 | <FileConfiguration |
817 | Name="ReleaseWithoutAsm|Win32" | 823 | Name="Release|Itanium" |
818 | ExcludedFromBuild="true" | 824 | ExcludedFromBuild="true" |
819 | > | 825 | > |
820 | <Tool | 826 | <Tool |
diff --git a/contrib/vstudio/vc9/zlibvc.def b/contrib/vstudio/vc9/zlibvc.def new file mode 100644 index 0000000..0b6a9e9 --- /dev/null +++ b/contrib/vstudio/vc9/zlibvc.def | |||
@@ -0,0 +1,114 @@ | |||
1 | |||
2 | VERSION 1.23 | ||
3 | |||
4 | HEAPSIZE 1048576,8192 | ||
5 | |||
6 | EXPORTS | ||
7 | adler32 @1 | ||
8 | compress @2 | ||
9 | crc32 @3 | ||
10 | deflate @4 | ||
11 | deflateCopy @5 | ||
12 | deflateEnd @6 | ||
13 | deflateInit2_ @7 | ||
14 | deflateInit_ @8 | ||
15 | deflateParams @9 | ||
16 | deflateReset @10 | ||
17 | deflateSetDictionary @11 | ||
18 | gzclose @12 | ||
19 | gzdopen @13 | ||
20 | gzerror @14 | ||
21 | gzflush @15 | ||
22 | gzopen @16 | ||
23 | gzread @17 | ||
24 | gzwrite @18 | ||
25 | inflate @19 | ||
26 | inflateEnd @20 | ||
27 | inflateInit2_ @21 | ||
28 | inflateInit_ @22 | ||
29 | inflateReset @23 | ||
30 | inflateSetDictionary @24 | ||
31 | inflateSync @25 | ||
32 | uncompress @26 | ||
33 | zlibVersion @27 | ||
34 | gzprintf @28 | ||
35 | gzputc @29 | ||
36 | gzgetc @30 | ||
37 | gzseek @31 | ||
38 | gzrewind @32 | ||
39 | gztell @33 | ||
40 | gzeof @34 | ||
41 | gzsetparams @35 | ||
42 | zError @36 | ||
43 | inflateSyncPoint @37 | ||
44 | get_crc_table @38 | ||
45 | compress2 @39 | ||
46 | gzputs @40 | ||
47 | gzgets @41 | ||
48 | inflateCopy @42 | ||
49 | inflateBackInit_ @43 | ||
50 | inflateBack @44 | ||
51 | inflateBackEnd @45 | ||
52 | compressBound @46 | ||
53 | deflateBound @47 | ||
54 | gzclearerr @48 | ||
55 | gzungetc @49 | ||
56 | zlibCompileFlags @50 | ||
57 | deflatePrime @51 | ||
58 | |||
59 | unzOpen @61 | ||
60 | unzClose @62 | ||
61 | unzGetGlobalInfo @63 | ||
62 | unzGetCurrentFileInfo @64 | ||
63 | unzGoToFirstFile @65 | ||
64 | unzGoToNextFile @66 | ||
65 | unzOpenCurrentFile @67 | ||
66 | unzReadCurrentFile @68 | ||
67 | unzOpenCurrentFile3 @69 | ||
68 | unztell @70 | ||
69 | unzeof @71 | ||
70 | unzCloseCurrentFile @72 | ||
71 | unzGetGlobalComment @73 | ||
72 | unzStringFileNameCompare @74 | ||
73 | unzLocateFile @75 | ||
74 | unzGetLocalExtrafield @76 | ||
75 | unzOpen2 @77 | ||
76 | unzOpenCurrentFile2 @78 | ||
77 | unzOpenCurrentFilePassword @79 | ||
78 | |||
79 | zipOpen @80 | ||
80 | zipOpenNewFileInZip @81 | ||
81 | zipWriteInFileInZip @82 | ||
82 | zipCloseFileInZip @83 | ||
83 | zipClose @84 | ||
84 | zipOpenNewFileInZip2 @86 | ||
85 | zipCloseFileInZipRaw @87 | ||
86 | zipOpen2 @88 | ||
87 | zipOpenNewFileInZip3 @89 | ||
88 | |||
89 | unzGetFilePos @100 | ||
90 | unzGoToFilePos @101 | ||
91 | |||
92 | fill_win32_filefunc @110 | ||
93 | fill_win32_filefunc64 @111 | ||
94 | fill_win32_filefunc64A @112 | ||
95 | fill_win32_filefunc64W @113 | ||
96 | |||
97 | ; quick hack by hkuno@microhouse.co.jp | ||
98 | unzOpen64 @120 | ||
99 | unzOpen2_64 @121 | ||
100 | unzGetGlobalInfo64 @122 | ||
101 | unzGetCurrentFileInfo64 @124 | ||
102 | unzGetCurrentFileZStreamPos64 @125 | ||
103 | unztell64 @126 | ||
104 | unzGetFilePos64 @127 | ||
105 | unzGoToFilePos64 @128 | ||
106 | |||
107 | zipOpen64 @130 | ||
108 | zipOpen2_64 @131 | ||
109 | zipOpenNewFileInZip64 @132 | ||
110 | zipOpenNewFileInZip2_64 @133 | ||
111 | zipOpenNewFileInZip3_64 @134 | ||
112 | zipOpenNewFileInZip4_64 @135 | ||
113 | zipCloseFileInZipRaw64 @136 | ||
114 | ; end hack | ||
diff --git a/contrib/vstudio/vc8/zlibvc.sln b/contrib/vstudio/vc9/zlibvc.sln index a815a55..c7f1b0b 100644 --- a/contrib/vstudio/vc8/zlibvc.sln +++ b/contrib/vstudio/vc9/zlibvc.sln | |||
@@ -1,6 +1,6 @@ | |||
1 | | 1 | |
2 | Microsoft Visual Studio Solution File, Format Version 9.00 | 2 | Microsoft Visual Studio Solution File, Format Version 10.00 |
3 | # Visual Studio 2005 | 3 | # Visual Studio 2008 |
4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" |
5 | EndProject | 5 | EndProject |
6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" | 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" |
diff --git a/contrib/vstudio/vc8/zlibvc.vcproj b/contrib/vstudio/vc9/zlibvc.vcproj index f06273b..ee86786 100644 --- a/contrib/vstudio/vc8/zlibvc.vcproj +++ b/contrib/vstudio/vc9/zlibvc.vcproj | |||
@@ -1,9 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="Windows-1252"?> | 1 | <?xml version="1.0" encoding="Windows-1252"?> |
2 | <VisualStudioProject | 2 | <VisualStudioProject |
3 | ProjectType="Visual C++" | 3 | ProjectType="Visual C++" |
4 | Version="8,00" | 4 | Version="9.00" |
5 | Name="zlibvc" | 5 | Name="zlibvc" |
6 | ProjectGUID="{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | 6 | ProjectGUID="{8FD826F8-3739-44E6-8CC8-997122E53B8D}" |
7 | TargetFrameworkVersion="131072" | ||
7 | > | 8 | > |
8 | <Platforms> | 9 | <Platforms> |
9 | <Platform | 10 | <Platform |
@@ -52,7 +53,7 @@ | |||
52 | Name="VCCLCompilerTool" | 53 | Name="VCCLCompilerTool" |
53 | Optimization="0" | 54 | Optimization="0" |
54 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 55 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
55 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI,ASMV,ASMINF" | 56 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF" |
56 | ExceptionHandling="0" | 57 | ExceptionHandling="0" |
57 | RuntimeLibrary="1" | 58 | RuntimeLibrary="1" |
58 | BufferSecurityCheck="false" | 59 | BufferSecurityCheck="false" |
@@ -90,6 +91,8 @@ | |||
90 | GenerateMapFile="true" | 91 | GenerateMapFile="true" |
91 | MapFileName="$(OutDir)/zlibwapi.map" | 92 | MapFileName="$(OutDir)/zlibwapi.map" |
92 | SubSystem="2" | 93 | SubSystem="2" |
94 | RandomizedBaseAddress="1" | ||
95 | DataExecutionPrevention="0" | ||
93 | ImportLibrary="$(OutDir)/zlibwapi.lib" | 96 | ImportLibrary="$(OutDir)/zlibwapi.lib" |
94 | /> | 97 | /> |
95 | <Tool | 98 | <Tool |
@@ -111,20 +114,18 @@ | |||
111 | Name="VCAppVerifierTool" | 114 | Name="VCAppVerifierTool" |
112 | /> | 115 | /> |
113 | <Tool | 116 | <Tool |
114 | Name="VCWebDeploymentTool" | ||
115 | /> | ||
116 | <Tool | ||
117 | Name="VCPostBuildEventTool" | 117 | Name="VCPostBuildEventTool" |
118 | /> | 118 | /> |
119 | </Configuration> | 119 | </Configuration> |
120 | <Configuration | 120 | <Configuration |
121 | Name="Debug|x64" | 121 | Name="ReleaseWithoutAsm|Win32" |
122 | OutputDirectory="x64\ZlibDll$(ConfigurationName)" | 122 | OutputDirectory="x86\ZlibDll$(ConfigurationName)" |
123 | IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp" | 123 | IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp" |
124 | ConfigurationType="2" | 124 | ConfigurationType="2" |
125 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 125 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
126 | UseOfMFC="0" | 126 | UseOfMFC="0" |
127 | ATLMinimizesCRunTimeLibraryUsage="false" | 127 | ATLMinimizesCRunTimeLibraryUsage="false" |
128 | WholeProgramOptimization="1" | ||
128 | > | 129 | > |
129 | <Tool | 130 | <Tool |
130 | Name="VCPreBuildEventTool" | 131 | Name="VCPreBuildEventTool" |
@@ -140,35 +141,37 @@ | |||
140 | /> | 141 | /> |
141 | <Tool | 142 | <Tool |
142 | Name="VCMIDLTool" | 143 | Name="VCMIDLTool" |
143 | PreprocessorDefinitions="_DEBUG" | 144 | PreprocessorDefinitions="NDEBUG" |
144 | MkTypLibCompatible="true" | 145 | MkTypLibCompatible="true" |
145 | SuppressStartupBanner="true" | 146 | SuppressStartupBanner="true" |
146 | TargetEnvironment="3" | 147 | TargetEnvironment="1" |
147 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | 148 | TypeLibraryName="$(OutDir)/zlibvc.tlb" |
148 | /> | 149 | /> |
149 | <Tool | 150 | <Tool |
150 | Name="VCCLCompilerTool" | 151 | Name="VCCLCompilerTool" |
151 | Optimization="0" | 152 | InlineFunctionExpansion="1" |
152 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 153 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
153 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI,ASMV,ASMINF;WIN64" | 154 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI" |
155 | StringPooling="true" | ||
154 | ExceptionHandling="0" | 156 | ExceptionHandling="0" |
155 | RuntimeLibrary="3" | 157 | RuntimeLibrary="2" |
156 | BufferSecurityCheck="false" | 158 | BufferSecurityCheck="false" |
159 | EnableFunctionLevelLinking="true" | ||
157 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | 160 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" |
161 | AssemblerOutput="2" | ||
158 | AssemblerListingLocation="$(IntDir)\" | 162 | AssemblerListingLocation="$(IntDir)\" |
159 | ObjectFile="$(IntDir)\" | 163 | ObjectFile="$(IntDir)\" |
160 | ProgramDataBaseFileName="$(OutDir)\" | 164 | ProgramDataBaseFileName="$(OutDir)\" |
161 | BrowseInformation="0" | 165 | BrowseInformation="0" |
162 | WarningLevel="3" | 166 | WarningLevel="3" |
163 | SuppressStartupBanner="true" | 167 | SuppressStartupBanner="true" |
164 | DebugInformationFormat="3" | ||
165 | /> | 168 | /> |
166 | <Tool | 169 | <Tool |
167 | Name="VCManagedResourceCompilerTool" | 170 | Name="VCManagedResourceCompilerTool" |
168 | /> | 171 | /> |
169 | <Tool | 172 | <Tool |
170 | Name="VCResourceCompilerTool" | 173 | Name="VCResourceCompilerTool" |
171 | PreprocessorDefinitions="_DEBUG" | 174 | PreprocessorDefinitions="NDEBUG" |
172 | Culture="1036" | 175 | Culture="1036" |
173 | /> | 176 | /> |
174 | <Tool | 177 | <Tool |
@@ -176,19 +179,21 @@ | |||
176 | /> | 179 | /> |
177 | <Tool | 180 | <Tool |
178 | Name="VCLinkerTool" | 181 | Name="VCLinkerTool" |
179 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj " | 182 | AdditionalOptions="/MACHINE:I386" |
180 | OutputFile="$(OutDir)\zlibwapi.dll" | 183 | OutputFile="$(OutDir)\zlibwapi.dll" |
181 | LinkIncremental="2" | 184 | LinkIncremental="1" |
182 | SuppressStartupBanner="true" | 185 | SuppressStartupBanner="true" |
183 | GenerateManifest="false" | 186 | GenerateManifest="false" |
187 | IgnoreAllDefaultLibraries="false" | ||
184 | ModuleDefinitionFile=".\zlibvc.def" | 188 | ModuleDefinitionFile=".\zlibvc.def" |
185 | GenerateDebugInformation="true" | ||
186 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | 189 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" |
187 | GenerateMapFile="true" | 190 | GenerateMapFile="true" |
188 | MapFileName="$(OutDir)/zlibwapi.map" | 191 | MapFileName="$(OutDir)/zlibwapi.map" |
189 | SubSystem="2" | 192 | SubSystem="2" |
193 | OptimizeForWindows98="1" | ||
194 | RandomizedBaseAddress="1" | ||
195 | DataExecutionPrevention="0" | ||
190 | ImportLibrary="$(OutDir)/zlibwapi.lib" | 196 | ImportLibrary="$(OutDir)/zlibwapi.lib" |
191 | TargetMachine="17" | ||
192 | /> | 197 | /> |
193 | <Tool | 198 | <Tool |
194 | Name="VCALinkTool" | 199 | Name="VCALinkTool" |
@@ -209,20 +214,18 @@ | |||
209 | Name="VCAppVerifierTool" | 214 | Name="VCAppVerifierTool" |
210 | /> | 215 | /> |
211 | <Tool | 216 | <Tool |
212 | Name="VCWebDeploymentTool" | ||
213 | /> | ||
214 | <Tool | ||
215 | Name="VCPostBuildEventTool" | 217 | Name="VCPostBuildEventTool" |
216 | /> | 218 | /> |
217 | </Configuration> | 219 | </Configuration> |
218 | <Configuration | 220 | <Configuration |
219 | Name="Debug|Itanium" | 221 | Name="Release|Win32" |
220 | OutputDirectory="ia64\ZlibDll$(ConfigurationName)" | 222 | OutputDirectory="x86\ZlibDll$(ConfigurationName)" |
221 | IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp" | 223 | IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp" |
222 | ConfigurationType="2" | 224 | ConfigurationType="2" |
223 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 225 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
224 | UseOfMFC="0" | 226 | UseOfMFC="0" |
225 | ATLMinimizesCRunTimeLibraryUsage="false" | 227 | ATLMinimizesCRunTimeLibraryUsage="false" |
228 | WholeProgramOptimization="1" | ||
226 | > | 229 | > |
227 | <Tool | 230 | <Tool |
228 | Name="VCPreBuildEventTool" | 231 | Name="VCPreBuildEventTool" |
@@ -238,35 +241,37 @@ | |||
238 | /> | 241 | /> |
239 | <Tool | 242 | <Tool |
240 | Name="VCMIDLTool" | 243 | Name="VCMIDLTool" |
241 | PreprocessorDefinitions="_DEBUG" | 244 | PreprocessorDefinitions="NDEBUG" |
242 | MkTypLibCompatible="true" | 245 | MkTypLibCompatible="true" |
243 | SuppressStartupBanner="true" | 246 | SuppressStartupBanner="true" |
244 | TargetEnvironment="2" | 247 | TargetEnvironment="1" |
245 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | 248 | TypeLibraryName="$(OutDir)/zlibvc.tlb" |
246 | /> | 249 | /> |
247 | <Tool | 250 | <Tool |
248 | Name="VCCLCompilerTool" | 251 | Name="VCCLCompilerTool" |
249 | Optimization="0" | 252 | InlineFunctionExpansion="1" |
250 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 253 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
251 | PreprocessorDefinitions="WIN32;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;WIN64" | 254 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF" |
255 | StringPooling="true" | ||
252 | ExceptionHandling="0" | 256 | ExceptionHandling="0" |
253 | RuntimeLibrary="3" | 257 | RuntimeLibrary="2" |
254 | BufferSecurityCheck="false" | 258 | BufferSecurityCheck="false" |
259 | EnableFunctionLevelLinking="true" | ||
255 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | 260 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" |
261 | AssemblerOutput="2" | ||
256 | AssemblerListingLocation="$(IntDir)\" | 262 | AssemblerListingLocation="$(IntDir)\" |
257 | ObjectFile="$(IntDir)\" | 263 | ObjectFile="$(IntDir)\" |
258 | ProgramDataBaseFileName="$(OutDir)\" | 264 | ProgramDataBaseFileName="$(OutDir)\" |
259 | BrowseInformation="0" | 265 | BrowseInformation="0" |
260 | WarningLevel="3" | 266 | WarningLevel="3" |
261 | SuppressStartupBanner="true" | 267 | SuppressStartupBanner="true" |
262 | DebugInformationFormat="3" | ||
263 | /> | 268 | /> |
264 | <Tool | 269 | <Tool |
265 | Name="VCManagedResourceCompilerTool" | 270 | Name="VCManagedResourceCompilerTool" |
266 | /> | 271 | /> |
267 | <Tool | 272 | <Tool |
268 | Name="VCResourceCompilerTool" | 273 | Name="VCResourceCompilerTool" |
269 | PreprocessorDefinitions="_DEBUG" | 274 | PreprocessorDefinitions="NDEBUG" |
270 | Culture="1036" | 275 | Culture="1036" |
271 | /> | 276 | /> |
272 | <Tool | 277 | <Tool |
@@ -274,18 +279,22 @@ | |||
274 | /> | 279 | /> |
275 | <Tool | 280 | <Tool |
276 | Name="VCLinkerTool" | 281 | Name="VCLinkerTool" |
282 | AdditionalOptions="/MACHINE:I386" | ||
283 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj " | ||
277 | OutputFile="$(OutDir)\zlibwapi.dll" | 284 | OutputFile="$(OutDir)\zlibwapi.dll" |
278 | LinkIncremental="2" | 285 | LinkIncremental="1" |
279 | SuppressStartupBanner="true" | 286 | SuppressStartupBanner="true" |
280 | GenerateManifest="false" | 287 | GenerateManifest="false" |
288 | IgnoreAllDefaultLibraries="false" | ||
281 | ModuleDefinitionFile=".\zlibvc.def" | 289 | ModuleDefinitionFile=".\zlibvc.def" |
282 | GenerateDebugInformation="true" | ||
283 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | 290 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" |
284 | GenerateMapFile="true" | 291 | GenerateMapFile="true" |
285 | MapFileName="$(OutDir)/zlibwapi.map" | 292 | MapFileName="$(OutDir)/zlibwapi.map" |
286 | SubSystem="2" | 293 | SubSystem="2" |
294 | OptimizeForWindows98="1" | ||
295 | RandomizedBaseAddress="1" | ||
296 | DataExecutionPrevention="0" | ||
287 | ImportLibrary="$(OutDir)/zlibwapi.lib" | 297 | ImportLibrary="$(OutDir)/zlibwapi.lib" |
288 | TargetMachine="5" | ||
289 | /> | 298 | /> |
290 | <Tool | 299 | <Tool |
291 | Name="VCALinkTool" | 300 | Name="VCALinkTool" |
@@ -306,21 +315,17 @@ | |||
306 | Name="VCAppVerifierTool" | 315 | Name="VCAppVerifierTool" |
307 | /> | 316 | /> |
308 | <Tool | 317 | <Tool |
309 | Name="VCWebDeploymentTool" | ||
310 | /> | ||
311 | <Tool | ||
312 | Name="VCPostBuildEventTool" | 318 | Name="VCPostBuildEventTool" |
313 | /> | 319 | /> |
314 | </Configuration> | 320 | </Configuration> |
315 | <Configuration | 321 | <Configuration |
316 | Name="ReleaseWithoutAsm|Win32" | 322 | Name="Debug|x64" |
317 | OutputDirectory="x86\ZlibDll$(ConfigurationName)" | 323 | OutputDirectory="x64\ZlibDll$(ConfigurationName)" |
318 | IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp" | 324 | IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp" |
319 | ConfigurationType="2" | 325 | ConfigurationType="2" |
320 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 326 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
321 | UseOfMFC="0" | 327 | UseOfMFC="0" |
322 | ATLMinimizesCRunTimeLibraryUsage="false" | 328 | ATLMinimizesCRunTimeLibraryUsage="false" |
323 | WholeProgramOptimization="1" | ||
324 | > | 329 | > |
325 | <Tool | 330 | <Tool |
326 | Name="VCPreBuildEventTool" | 331 | Name="VCPreBuildEventTool" |
@@ -336,37 +341,35 @@ | |||
336 | /> | 341 | /> |
337 | <Tool | 342 | <Tool |
338 | Name="VCMIDLTool" | 343 | Name="VCMIDLTool" |
339 | PreprocessorDefinitions="NDEBUG" | 344 | PreprocessorDefinitions="_DEBUG" |
340 | MkTypLibCompatible="true" | 345 | MkTypLibCompatible="true" |
341 | SuppressStartupBanner="true" | 346 | SuppressStartupBanner="true" |
342 | TargetEnvironment="1" | 347 | TargetEnvironment="3" |
343 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | 348 | TypeLibraryName="$(OutDir)/zlibvc.tlb" |
344 | /> | 349 | /> |
345 | <Tool | 350 | <Tool |
346 | Name="VCCLCompilerTool" | 351 | Name="VCCLCompilerTool" |
347 | InlineFunctionExpansion="1" | 352 | Optimization="0" |
348 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 353 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
349 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI" | 354 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;WIN64" |
350 | StringPooling="true" | ||
351 | ExceptionHandling="0" | 355 | ExceptionHandling="0" |
352 | RuntimeLibrary="2" | 356 | RuntimeLibrary="3" |
353 | BufferSecurityCheck="false" | 357 | BufferSecurityCheck="false" |
354 | EnableFunctionLevelLinking="true" | ||
355 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | 358 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" |
356 | AssemblerOutput="2" | ||
357 | AssemblerListingLocation="$(IntDir)\" | 359 | AssemblerListingLocation="$(IntDir)\" |
358 | ObjectFile="$(IntDir)\" | 360 | ObjectFile="$(IntDir)\" |
359 | ProgramDataBaseFileName="$(OutDir)\" | 361 | ProgramDataBaseFileName="$(OutDir)\" |
360 | BrowseInformation="0" | 362 | BrowseInformation="0" |
361 | WarningLevel="3" | 363 | WarningLevel="3" |
362 | SuppressStartupBanner="true" | 364 | SuppressStartupBanner="true" |
365 | DebugInformationFormat="3" | ||
363 | /> | 366 | /> |
364 | <Tool | 367 | <Tool |
365 | Name="VCManagedResourceCompilerTool" | 368 | Name="VCManagedResourceCompilerTool" |
366 | /> | 369 | /> |
367 | <Tool | 370 | <Tool |
368 | Name="VCResourceCompilerTool" | 371 | Name="VCResourceCompilerTool" |
369 | PreprocessorDefinitions="NDEBUG" | 372 | PreprocessorDefinitions="_DEBUG" |
370 | Culture="1036" | 373 | Culture="1036" |
371 | /> | 374 | /> |
372 | <Tool | 375 | <Tool |
@@ -374,19 +377,19 @@ | |||
374 | /> | 377 | /> |
375 | <Tool | 378 | <Tool |
376 | Name="VCLinkerTool" | 379 | Name="VCLinkerTool" |
377 | AdditionalOptions="/MACHINE:I386" | 380 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj " |
378 | OutputFile="$(OutDir)\zlibwapi.dll" | 381 | OutputFile="$(OutDir)\zlibwapi.dll" |
379 | LinkIncremental="1" | 382 | LinkIncremental="2" |
380 | SuppressStartupBanner="true" | 383 | SuppressStartupBanner="true" |
381 | GenerateManifest="false" | 384 | GenerateManifest="false" |
382 | IgnoreAllDefaultLibraries="false" | ||
383 | ModuleDefinitionFile=".\zlibvc.def" | 385 | ModuleDefinitionFile=".\zlibvc.def" |
386 | GenerateDebugInformation="true" | ||
384 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | 387 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" |
385 | GenerateMapFile="true" | 388 | GenerateMapFile="true" |
386 | MapFileName="$(OutDir)/zlibwapi.map" | 389 | MapFileName="$(OutDir)/zlibwapi.map" |
387 | SubSystem="2" | 390 | SubSystem="2" |
388 | OptimizeForWindows98="1" | ||
389 | ImportLibrary="$(OutDir)/zlibwapi.lib" | 391 | ImportLibrary="$(OutDir)/zlibwapi.lib" |
392 | TargetMachine="17" | ||
390 | /> | 393 | /> |
391 | <Tool | 394 | <Tool |
392 | Name="VCALinkTool" | 395 | Name="VCALinkTool" |
@@ -414,14 +417,13 @@ | |||
414 | /> | 417 | /> |
415 | </Configuration> | 418 | </Configuration> |
416 | <Configuration | 419 | <Configuration |
417 | Name="ReleaseWithoutAsm|x64" | 420 | Name="Debug|Itanium" |
418 | OutputDirectory="x64\ZlibDll$(ConfigurationName)" | 421 | OutputDirectory="ia64\ZlibDll$(ConfigurationName)" |
419 | IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp" | 422 | IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp" |
420 | ConfigurationType="2" | 423 | ConfigurationType="2" |
421 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 424 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
422 | UseOfMFC="0" | 425 | UseOfMFC="0" |
423 | ATLMinimizesCRunTimeLibraryUsage="false" | 426 | ATLMinimizesCRunTimeLibraryUsage="false" |
424 | WholeProgramOptimization="1" | ||
425 | > | 427 | > |
426 | <Tool | 428 | <Tool |
427 | Name="VCPreBuildEventTool" | 429 | Name="VCPreBuildEventTool" |
@@ -437,37 +439,35 @@ | |||
437 | /> | 439 | /> |
438 | <Tool | 440 | <Tool |
439 | Name="VCMIDLTool" | 441 | Name="VCMIDLTool" |
440 | PreprocessorDefinitions="NDEBUG" | 442 | PreprocessorDefinitions="_DEBUG" |
441 | MkTypLibCompatible="true" | 443 | MkTypLibCompatible="true" |
442 | SuppressStartupBanner="true" | 444 | SuppressStartupBanner="true" |
443 | TargetEnvironment="3" | 445 | TargetEnvironment="2" |
444 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | 446 | TypeLibraryName="$(OutDir)/zlibvc.tlb" |
445 | /> | 447 | /> |
446 | <Tool | 448 | <Tool |
447 | Name="VCCLCompilerTool" | 449 | Name="VCCLCompilerTool" |
448 | InlineFunctionExpansion="1" | 450 | Optimization="0" |
449 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 451 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
450 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI;WIN64" | 452 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64" |
451 | StringPooling="true" | ||
452 | ExceptionHandling="0" | 453 | ExceptionHandling="0" |
453 | RuntimeLibrary="2" | 454 | RuntimeLibrary="3" |
454 | BufferSecurityCheck="false" | 455 | BufferSecurityCheck="false" |
455 | EnableFunctionLevelLinking="true" | ||
456 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | 456 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" |
457 | AssemblerOutput="2" | ||
458 | AssemblerListingLocation="$(IntDir)\" | 457 | AssemblerListingLocation="$(IntDir)\" |
459 | ObjectFile="$(IntDir)\" | 458 | ObjectFile="$(IntDir)\" |
460 | ProgramDataBaseFileName="$(OutDir)\" | 459 | ProgramDataBaseFileName="$(OutDir)\" |
461 | BrowseInformation="0" | 460 | BrowseInformation="0" |
462 | WarningLevel="3" | 461 | WarningLevel="3" |
463 | SuppressStartupBanner="true" | 462 | SuppressStartupBanner="true" |
463 | DebugInformationFormat="3" | ||
464 | /> | 464 | /> |
465 | <Tool | 465 | <Tool |
466 | Name="VCManagedResourceCompilerTool" | 466 | Name="VCManagedResourceCompilerTool" |
467 | /> | 467 | /> |
468 | <Tool | 468 | <Tool |
469 | Name="VCResourceCompilerTool" | 469 | Name="VCResourceCompilerTool" |
470 | PreprocessorDefinitions="NDEBUG" | 470 | PreprocessorDefinitions="_DEBUG" |
471 | Culture="1036" | 471 | Culture="1036" |
472 | /> | 472 | /> |
473 | <Tool | 473 | <Tool |
@@ -476,18 +476,17 @@ | |||
476 | <Tool | 476 | <Tool |
477 | Name="VCLinkerTool" | 477 | Name="VCLinkerTool" |
478 | OutputFile="$(OutDir)\zlibwapi.dll" | 478 | OutputFile="$(OutDir)\zlibwapi.dll" |
479 | LinkIncremental="1" | 479 | LinkIncremental="2" |
480 | SuppressStartupBanner="true" | 480 | SuppressStartupBanner="true" |
481 | GenerateManifest="false" | 481 | GenerateManifest="false" |
482 | IgnoreAllDefaultLibraries="false" | ||
483 | ModuleDefinitionFile=".\zlibvc.def" | 482 | ModuleDefinitionFile=".\zlibvc.def" |
483 | GenerateDebugInformation="true" | ||
484 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | 484 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" |
485 | GenerateMapFile="true" | 485 | GenerateMapFile="true" |
486 | MapFileName="$(OutDir)/zlibwapi.map" | 486 | MapFileName="$(OutDir)/zlibwapi.map" |
487 | SubSystem="2" | 487 | SubSystem="2" |
488 | OptimizeForWindows98="1" | ||
489 | ImportLibrary="$(OutDir)/zlibwapi.lib" | 488 | ImportLibrary="$(OutDir)/zlibwapi.lib" |
490 | TargetMachine="17" | 489 | TargetMachine="5" |
491 | /> | 490 | /> |
492 | <Tool | 491 | <Tool |
493 | Name="VCALinkTool" | 492 | Name="VCALinkTool" |
@@ -515,9 +514,9 @@ | |||
515 | /> | 514 | /> |
516 | </Configuration> | 515 | </Configuration> |
517 | <Configuration | 516 | <Configuration |
518 | Name="ReleaseWithoutAsm|Itanium" | 517 | Name="ReleaseWithoutAsm|x64" |
519 | OutputDirectory="ia64\ZlibDll$(ConfigurationName)" | 518 | OutputDirectory="x64\ZlibDll$(ConfigurationName)" |
520 | IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp" | 519 | IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp" |
521 | ConfigurationType="2" | 520 | ConfigurationType="2" |
522 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 521 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
523 | UseOfMFC="0" | 522 | UseOfMFC="0" |
@@ -541,14 +540,14 @@ | |||
541 | PreprocessorDefinitions="NDEBUG" | 540 | PreprocessorDefinitions="NDEBUG" |
542 | MkTypLibCompatible="true" | 541 | MkTypLibCompatible="true" |
543 | SuppressStartupBanner="true" | 542 | SuppressStartupBanner="true" |
544 | TargetEnvironment="2" | 543 | TargetEnvironment="3" |
545 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | 544 | TypeLibraryName="$(OutDir)/zlibvc.tlb" |
546 | /> | 545 | /> |
547 | <Tool | 546 | <Tool |
548 | Name="VCCLCompilerTool" | 547 | Name="VCCLCompilerTool" |
549 | InlineFunctionExpansion="1" | 548 | InlineFunctionExpansion="1" |
550 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 549 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
551 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI;WIN64" | 550 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64" |
552 | StringPooling="true" | 551 | StringPooling="true" |
553 | ExceptionHandling="0" | 552 | ExceptionHandling="0" |
554 | RuntimeLibrary="2" | 553 | RuntimeLibrary="2" |
@@ -588,7 +587,7 @@ | |||
588 | SubSystem="2" | 587 | SubSystem="2" |
589 | OptimizeForWindows98="1" | 588 | OptimizeForWindows98="1" |
590 | ImportLibrary="$(OutDir)/zlibwapi.lib" | 589 | ImportLibrary="$(OutDir)/zlibwapi.lib" |
591 | TargetMachine="5" | 590 | TargetMachine="17" |
592 | /> | 591 | /> |
593 | <Tool | 592 | <Tool |
594 | Name="VCALinkTool" | 593 | Name="VCALinkTool" |
@@ -616,9 +615,9 @@ | |||
616 | /> | 615 | /> |
617 | </Configuration> | 616 | </Configuration> |
618 | <Configuration | 617 | <Configuration |
619 | Name="Release|Win32" | 618 | Name="ReleaseWithoutAsm|Itanium" |
620 | OutputDirectory="x86\ZlibDll$(ConfigurationName)" | 619 | OutputDirectory="ia64\ZlibDll$(ConfigurationName)" |
621 | IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp" | 620 | IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp" |
622 | ConfigurationType="2" | 621 | ConfigurationType="2" |
623 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | 622 | InheritedPropertySheets="UpgradeFromVC70.vsprops" |
624 | UseOfMFC="0" | 623 | UseOfMFC="0" |
@@ -642,14 +641,14 @@ | |||
642 | PreprocessorDefinitions="NDEBUG" | 641 | PreprocessorDefinitions="NDEBUG" |
643 | MkTypLibCompatible="true" | 642 | MkTypLibCompatible="true" |
644 | SuppressStartupBanner="true" | 643 | SuppressStartupBanner="true" |
645 | TargetEnvironment="1" | 644 | TargetEnvironment="2" |
646 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | 645 | TypeLibraryName="$(OutDir)/zlibvc.tlb" |
647 | /> | 646 | /> |
648 | <Tool | 647 | <Tool |
649 | Name="VCCLCompilerTool" | 648 | Name="VCCLCompilerTool" |
650 | InlineFunctionExpansion="1" | 649 | InlineFunctionExpansion="1" |
651 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 650 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
652 | PreprocessorDefinitions="WIN32;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;ASMV;ASMINF" | 651 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64" |
653 | StringPooling="true" | 652 | StringPooling="true" |
654 | ExceptionHandling="0" | 653 | ExceptionHandling="0" |
655 | RuntimeLibrary="2" | 654 | RuntimeLibrary="2" |
@@ -677,8 +676,6 @@ | |||
677 | /> | 676 | /> |
678 | <Tool | 677 | <Tool |
679 | Name="VCLinkerTool" | 678 | Name="VCLinkerTool" |
680 | AdditionalOptions="/MACHINE:I386" | ||
681 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj " | ||
682 | OutputFile="$(OutDir)\zlibwapi.dll" | 679 | OutputFile="$(OutDir)\zlibwapi.dll" |
683 | LinkIncremental="1" | 680 | LinkIncremental="1" |
684 | SuppressStartupBanner="true" | 681 | SuppressStartupBanner="true" |
@@ -691,6 +688,7 @@ | |||
691 | SubSystem="2" | 688 | SubSystem="2" |
692 | OptimizeForWindows98="1" | 689 | OptimizeForWindows98="1" |
693 | ImportLibrary="$(OutDir)/zlibwapi.lib" | 690 | ImportLibrary="$(OutDir)/zlibwapi.lib" |
691 | TargetMachine="5" | ||
694 | /> | 692 | /> |
695 | <Tool | 693 | <Tool |
696 | Name="VCALinkTool" | 694 | Name="VCALinkTool" |
@@ -751,7 +749,7 @@ | |||
751 | Name="VCCLCompilerTool" | 749 | Name="VCCLCompilerTool" |
752 | InlineFunctionExpansion="1" | 750 | InlineFunctionExpansion="1" |
753 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 751 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
754 | PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;ASMV;ASMINF;WIN64" | 752 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;WIN64" |
755 | StringPooling="true" | 753 | StringPooling="true" |
756 | ExceptionHandling="0" | 754 | ExceptionHandling="0" |
757 | RuntimeLibrary="2" | 755 | RuntimeLibrary="2" |
@@ -853,7 +851,7 @@ | |||
853 | Name="VCCLCompilerTool" | 851 | Name="VCCLCompilerTool" |
854 | InlineFunctionExpansion="1" | 852 | InlineFunctionExpansion="1" |
855 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | 853 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" |
856 | PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;WIN64" | 854 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64" |
857 | StringPooling="true" | 855 | StringPooling="true" |
858 | ExceptionHandling="0" | 856 | ExceptionHandling="0" |
859 | RuntimeLibrary="2" | 857 | RuntimeLibrary="2" |
@@ -948,7 +946,7 @@ | |||
948 | RelativePath="..\..\masmx86\gvmat32c.c" | 946 | RelativePath="..\..\masmx86\gvmat32c.c" |
949 | > | 947 | > |
950 | <FileConfiguration | 948 | <FileConfiguration |
951 | Name="Debug|x64" | 949 | Name="ReleaseWithoutAsm|Win32" |
952 | ExcludedFromBuild="true" | 950 | ExcludedFromBuild="true" |
953 | > | 951 | > |
954 | <Tool | 952 | <Tool |
@@ -956,7 +954,7 @@ | |||
956 | /> | 954 | /> |
957 | </FileConfiguration> | 955 | </FileConfiguration> |
958 | <FileConfiguration | 956 | <FileConfiguration |
959 | Name="Debug|Itanium" | 957 | Name="Debug|x64" |
960 | ExcludedFromBuild="true" | 958 | ExcludedFromBuild="true" |
961 | > | 959 | > |
962 | <Tool | 960 | <Tool |
@@ -964,7 +962,7 @@ | |||
964 | /> | 962 | /> |
965 | </FileConfiguration> | 963 | </FileConfiguration> |
966 | <FileConfiguration | 964 | <FileConfiguration |
967 | Name="ReleaseWithoutAsm|Win32" | 965 | Name="Debug|Itanium" |
968 | ExcludedFromBuild="true" | 966 | ExcludedFromBuild="true" |
969 | > | 967 | > |
970 | <Tool | 968 | <Tool |
@@ -1005,19 +1003,24 @@ | |||
1005 | </FileConfiguration> | 1003 | </FileConfiguration> |
1006 | </File> | 1004 | </File> |
1007 | <File | 1005 | <File |
1008 | RelativePath="..\..\..\gzclose.c"> | 1006 | RelativePath="..\..\..\gzclose.c" |
1007 | > | ||
1009 | </File> | 1008 | </File> |
1010 | <File | 1009 | <File |
1011 | RelativePath="..\..\..\gzio.c"> | 1010 | RelativePath="..\..\..\gzio.c" |
1011 | > | ||
1012 | </File> | 1012 | </File> |
1013 | <File | 1013 | <File |
1014 | RelativePath="..\..\..\gzlib.c"> | 1014 | RelativePath="..\..\..\gzlib.c" |
1015 | > | ||
1015 | </File> | 1016 | </File> |
1016 | <File | 1017 | <File |
1017 | RelativePath="..\..\..\gzread.c"> | 1018 | RelativePath="..\..\..\gzread.c" |
1019 | > | ||
1018 | </File> | 1020 | </File> |
1019 | <File | 1021 | <File |
1020 | RelativePath="..\..\..\gzwrite.c"> | 1022 | RelativePath="..\..\..\gzwrite.c" |
1023 | > | ||
1021 | </File> | 1024 | </File> |
1022 | <File | 1025 | <File |
1023 | RelativePath="..\..\..\infback.c" | 1026 | RelativePath="..\..\..\infback.c" |
@@ -1035,7 +1038,7 @@ | |||
1035 | /> | 1038 | /> |
1036 | </FileConfiguration> | 1039 | </FileConfiguration> |
1037 | <FileConfiguration | 1040 | <FileConfiguration |
1038 | Name="Debug|Itanium" | 1041 | Name="ReleaseWithoutAsm|Win32" |
1039 | ExcludedFromBuild="true" | 1042 | ExcludedFromBuild="true" |
1040 | > | 1043 | > |
1041 | <Tool | 1044 | <Tool |
@@ -1043,7 +1046,7 @@ | |||
1043 | /> | 1046 | /> |
1044 | </FileConfiguration> | 1047 | </FileConfiguration> |
1045 | <FileConfiguration | 1048 | <FileConfiguration |
1046 | Name="ReleaseWithoutAsm|Win32" | 1049 | Name="Release|Win32" |
1047 | ExcludedFromBuild="true" | 1050 | ExcludedFromBuild="true" |
1048 | > | 1051 | > |
1049 | <Tool | 1052 | <Tool |
@@ -1051,7 +1054,7 @@ | |||
1051 | /> | 1054 | /> |
1052 | </FileConfiguration> | 1055 | </FileConfiguration> |
1053 | <FileConfiguration | 1056 | <FileConfiguration |
1054 | Name="ReleaseWithoutAsm|Itanium" | 1057 | Name="Debug|Itanium" |
1055 | ExcludedFromBuild="true" | 1058 | ExcludedFromBuild="true" |
1056 | > | 1059 | > |
1057 | <Tool | 1060 | <Tool |
@@ -1059,7 +1062,7 @@ | |||
1059 | /> | 1062 | /> |
1060 | </FileConfiguration> | 1063 | </FileConfiguration> |
1061 | <FileConfiguration | 1064 | <FileConfiguration |
1062 | Name="Release|Win32" | 1065 | Name="ReleaseWithoutAsm|Itanium" |
1063 | ExcludedFromBuild="true" | 1066 | ExcludedFromBuild="true" |
1064 | > | 1067 | > |
1065 | <Tool | 1068 | <Tool |