diff options
Diffstat (limited to 'contrib/vstudio')
| -rw-r--r-- | contrib/vstudio/readme.txt | 40 | ||||
| -rw-r--r-- | contrib/vstudio/vc7/gvmat32.obj | bin | 10241 -> 0 bytes | |||
| -rw-r--r-- | contrib/vstudio/vc7/inffas32.obj | bin | 14893 -> 0 bytes | |||
| -rw-r--r-- | contrib/vstudio/vc7/miniunz.vcproj | 6 | ||||
| -rw-r--r-- | contrib/vstudio/vc7/minizip.vcproj | 6 | ||||
| -rw-r--r-- | contrib/vstudio/vc7/testzlib.vcproj | 126 | ||||
| -rw-r--r-- | contrib/vstudio/vc7/zlib.rc | 6 | ||||
| -rw-r--r-- | contrib/vstudio/vc7/zlibstat.vcproj | 38 | ||||
| -rw-r--r-- | contrib/vstudio/vc7/zlibvc.def | 4 | ||||
| -rw-r--r-- | contrib/vstudio/vc7/zlibvc.sln | 12 | ||||
| -rw-r--r-- | contrib/vstudio/vc7/zlibvc.vcproj | 75 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/miniunz.vcproj | 566 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/minizip.vcproj | 563 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/testzlib.vcproj | 948 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/testzlibdll.vcproj | 567 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/zlib.rc | 32 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/zlibstat.vcproj | 870 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/zlibvc.def | 92 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/zlibvc.sln | 144 | ||||
| -rw-r--r-- | contrib/vstudio/vc8/zlibvc.vcproj | 1219 |
20 files changed, 5244 insertions, 70 deletions
diff --git a/contrib/vstudio/readme.txt b/contrib/vstudio/readme.txt index e709d1b9..16159f9c 100644 --- a/contrib/vstudio/readme.txt +++ b/contrib/vstudio/readme.txt | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | Building instructions for the DLL versions of Zlib 1.2.x | 1 | 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. | 5 | Microsoft Visual C++ 7.0/7.1, 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: |
| @@ -11,18 +11,36 @@ binaries from: | |||
| 11 | More information can be found at this site. | 11 | More information can be found at this site. |
| 12 | 12 | ||
| 13 | 13 | ||
| 14 | Build instructions | 14 | Build instructions for Visual Studio 7.x (32 bits) |
| 15 | ------------------ | 15 | -------------------------------------------------- |
| 16 | - Unzip zlib*.zip and copy the files from contrib\vstudio\vc7, | 16 | - Uncompress current zlib, including all contrib/* files |
| 17 | from contrib\vstudio\masmx86 and from contrib\minizip into the same | ||
| 18 | directory. | ||
| 19 | - Download the crtdll library from | 17 | - Download the crtdll library from |
| 20 | http://www.winimage.com/zLibDll/crtdll.zip | 18 | http://www.winimage.com/zLibDll/crtdll.zip |
| 21 | Unzip crtdll.zip to extract crtdll.lib. | 19 | Unzip crtdll.zip to extract crtdll.lib on contrib\vstudio\vc7. |
| 22 | - If you are using x86, use the Release target. | 20 | - Open contrib\vstudio\vc7\zlibvc.sln with Microsoft Visual C++ 7.x |
| 23 | - Open zlibvc.sln with Microsoft Visual C++ 7.0 or 7.1 | ||
| 24 | (Visual Studio .Net 2002 or 2003). | 21 | (Visual Studio .Net 2002 or 2003). |
| 25 | 22 | ||
| 23 | Build instructions for Visual Studio 2005 (32 bits or 64 bits) | ||
| 24 | -------------------------------------------------------------- | ||
| 25 | - Uncompress current zlib, including all contrib/* files | ||
| 26 | - For 32 bits only: download the crtdll library from | ||
| 27 | http://www.winimage.com/zLibDll/crtdll.zip | ||
| 28 | Unzip crtdll.zip to extract crtdll.lib on contrib\vstudio\vc8. | ||
| 29 | - Open contrib\vstudio\vc8\zlibvc.sln with Microsoft Visual C++ 8.0 | ||
| 30 | |||
| 31 | Build instructions for Visual Studio 2005 64 bits, PSDK compiler | ||
| 32 | ---------------------------------------------------------------- | ||
| 33 | at the time of writing this text file, Visual Studio 2005 (and | ||
| 34 | Microsoft Visual C++ 8.0) is on the beta 2 stage. | ||
| 35 | Using you can get the free 64 bits compiler from Platform SDK, | ||
| 36 | which is NOT a beta, and compile using the Visual studio 2005 IDE | ||
| 37 | see http://www.winimage.com/misc/sdk64onvs2005/ for instruction | ||
| 38 | |||
| 39 | - Uncompress current zlib, including all contrib/* files | ||
| 40 | - start Visual Studio 2005 from a platform SDK command prompt, using | ||
| 41 | the /useenv switch | ||
| 42 | - Open contrib\vstudio\vc8\zlibvc.sln with Microsoft Visual C++ 8.0 | ||
| 43 | |||
| 26 | 44 | ||
| 27 | Important | 45 | Important |
| 28 | --------- | 46 | --------- |
diff --git a/contrib/vstudio/vc7/gvmat32.obj b/contrib/vstudio/vc7/gvmat32.obj deleted file mode 100644 index ebb32623..00000000 --- a/contrib/vstudio/vc7/gvmat32.obj +++ /dev/null | |||
| Binary files differ | |||
diff --git a/contrib/vstudio/vc7/inffas32.obj b/contrib/vstudio/vc7/inffas32.obj deleted file mode 100644 index bd6664d1..00000000 --- a/contrib/vstudio/vc7/inffas32.obj +++ /dev/null | |||
| Binary files differ | |||
diff --git a/contrib/vstudio/vc7/miniunz.vcproj b/contrib/vstudio/vc7/miniunz.vcproj index 935c250e..ad5117c8 100644 --- a/contrib/vstudio/vc7/miniunz.vcproj +++ b/contrib/vstudio/vc7/miniunz.vcproj | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | <Tool | 19 | <Tool |
| 20 | Name="VCCLCompilerTool" | 20 | Name="VCCLCompilerTool" |
| 21 | Optimization="0" | 21 | Optimization="0" |
| 22 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 22 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE" | 23 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE" |
| 23 | MinimalRebuild="TRUE" | 24 | MinimalRebuild="TRUE" |
| 24 | BasicRuntimeChecks="3" | 25 | BasicRuntimeChecks="3" |
| @@ -63,6 +64,7 @@ | |||
| 63 | Optimization="2" | 64 | Optimization="2" |
| 64 | InlineFunctionExpansion="1" | 65 | InlineFunctionExpansion="1" |
| 65 | OmitFramePointers="TRUE" | 66 | OmitFramePointers="TRUE" |
| 67 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 66 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE" | 68 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE" |
| 67 | StringPooling="TRUE" | 69 | StringPooling="TRUE" |
| 68 | RuntimeLibrary="4" | 70 | RuntimeLibrary="4" |
| @@ -104,7 +106,7 @@ | |||
| 104 | Name="Source Files" | 106 | Name="Source Files" |
| 105 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> | 107 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> |
| 106 | <File | 108 | <File |
| 107 | RelativePath="miniunz.c"> | 109 | RelativePath="..\..\minizip\miniunz.c"> |
| 108 | </File> | 110 | </File> |
| 109 | </Filter> | 111 | </Filter> |
| 110 | <Filter | 112 | <Filter |
| @@ -116,7 +118,7 @@ | |||
| 116 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> | 118 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> |
| 117 | </Filter> | 119 | </Filter> |
| 118 | <File | 120 | <File |
| 119 | RelativePath="zlibwapi.lib"> | 121 | RelativePath="ReleaseDll\zlibwapi.lib"> |
| 120 | </File> | 122 | </File> |
| 121 | </Files> | 123 | </Files> |
| 122 | <Globals> | 124 | <Globals> |
diff --git a/contrib/vstudio/vc7/minizip.vcproj b/contrib/vstudio/vc7/minizip.vcproj index e6f91074..fb5b6320 100644 --- a/contrib/vstudio/vc7/minizip.vcproj +++ b/contrib/vstudio/vc7/minizip.vcproj | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | <Tool | 19 | <Tool |
| 20 | Name="VCCLCompilerTool" | 20 | Name="VCCLCompilerTool" |
| 21 | Optimization="0" | 21 | Optimization="0" |
| 22 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 22 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE" | 23 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE" |
| 23 | MinimalRebuild="TRUE" | 24 | MinimalRebuild="TRUE" |
| 24 | BasicRuntimeChecks="3" | 25 | BasicRuntimeChecks="3" |
| @@ -63,6 +64,7 @@ | |||
| 63 | Optimization="2" | 64 | Optimization="2" |
| 64 | InlineFunctionExpansion="1" | 65 | InlineFunctionExpansion="1" |
| 65 | OmitFramePointers="TRUE" | 66 | OmitFramePointers="TRUE" |
| 67 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 66 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE" | 68 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE" |
| 67 | StringPooling="TRUE" | 69 | StringPooling="TRUE" |
| 68 | RuntimeLibrary="4" | 70 | RuntimeLibrary="4" |
| @@ -104,7 +106,7 @@ | |||
| 104 | Name="Source Files" | 106 | Name="Source Files" |
| 105 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> | 107 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> |
| 106 | <File | 108 | <File |
| 107 | RelativePath="minizip.c"> | 109 | RelativePath="..\..\minizip\minizip.c"> |
| 108 | </File> | 110 | </File> |
| 109 | </Filter> | 111 | </Filter> |
| 110 | <Filter | 112 | <Filter |
| @@ -116,7 +118,7 @@ | |||
| 116 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> | 118 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> |
| 117 | </Filter> | 119 | </Filter> |
| 118 | <File | 120 | <File |
| 119 | RelativePath="zlibwapi.lib"> | 121 | RelativePath="ReleaseDll\zlibwapi.lib"> |
| 120 | </File> | 122 | </File> |
| 121 | </Files> | 123 | </Files> |
| 122 | <Globals> | 124 | <Globals> |
diff --git a/contrib/vstudio/vc7/testzlib.vcproj b/contrib/vstudio/vc7/testzlib.vcproj new file mode 100644 index 00000000..97bc3e8c --- /dev/null +++ b/contrib/vstudio/vc7/testzlib.vcproj | |||
| @@ -0,0 +1,126 @@ | |||
| 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/zlib.rc b/contrib/vstudio/vc7/zlib.rc index e9d748f4..72cb8b4c 100644 --- a/contrib/vstudio/vc7/zlib.rc +++ b/contrib/vstudio/vc7/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,2,4 | 5 | FILEVERSION 1,2,3,0 |
| 6 | PRODUCTVERSION 1,2,2,4 | 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,7 +17,7 @@ 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.2.4\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" |
diff --git a/contrib/vstudio/vc7/zlibstat.vcproj b/contrib/vstudio/vc7/zlibstat.vcproj index eb182f7a..766d7a4d 100644 --- a/contrib/vstudio/vc7/zlibstat.vcproj +++ b/contrib/vstudio/vc7/zlibstat.vcproj | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | <Tool | 20 | <Tool |
| 21 | Name="VCCLCompilerTool" | 21 | Name="VCCLCompilerTool" |
| 22 | Optimization="0" | 22 | Optimization="0" |
| 23 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 23 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" | 24 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" |
| 24 | ExceptionHandling="FALSE" | 25 | ExceptionHandling="FALSE" |
| 25 | RuntimeLibrary="5" | 26 | RuntimeLibrary="5" |
| @@ -61,6 +62,7 @@ | |||
| 61 | <Tool | 62 | <Tool |
| 62 | Name="VCCLCompilerTool" | 63 | Name="VCCLCompilerTool" |
| 63 | InlineFunctionExpansion="1" | 64 | InlineFunctionExpansion="1" |
| 65 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 64 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" | 66 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" |
| 65 | StringPooling="TRUE" | 67 | StringPooling="TRUE" |
| 66 | ExceptionHandling="FALSE" | 68 | ExceptionHandling="FALSE" |
| @@ -102,6 +104,7 @@ | |||
| 102 | <Tool | 104 | <Tool |
| 103 | Name="VCCLCompilerTool" | 105 | Name="VCCLCompilerTool" |
| 104 | InlineFunctionExpansion="1" | 106 | InlineFunctionExpansion="1" |
| 107 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 105 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;ASMV;ASMINF" | 108 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;ASMV;ASMINF" |
| 106 | StringPooling="TRUE" | 109 | StringPooling="TRUE" |
| 107 | ExceptionHandling="FALSE" | 110 | ExceptionHandling="FALSE" |
| @@ -117,7 +120,7 @@ | |||
| 117 | Name="VCCustomBuildTool"/> | 120 | Name="VCCustomBuildTool"/> |
| 118 | <Tool | 121 | <Tool |
| 119 | Name="VCLibrarianTool" | 122 | Name="VCLibrarianTool" |
| 120 | AdditionalOptions="gvmat32.obj inffas32.obj /NODEFAULTLIB " | 123 | AdditionalOptions="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj /NODEFAULTLIB " |
| 121 | OutputFile=".\zlibstat\zlibstat.lib" | 124 | OutputFile=".\zlibstat\zlibstat.lib" |
| 122 | SuppressStartupBanner="TRUE"/> | 125 | SuppressStartupBanner="TRUE"/> |
| 123 | <Tool | 126 | <Tool |
| @@ -144,6 +147,7 @@ | |||
| 144 | <Tool | 147 | <Tool |
| 145 | Name="VCCLCompilerTool" | 148 | Name="VCCLCompilerTool" |
| 146 | InlineFunctionExpansion="1" | 149 | InlineFunctionExpansion="1" |
| 150 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 147 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" | 151 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI" |
| 148 | StringPooling="TRUE" | 152 | StringPooling="TRUE" |
| 149 | ExceptionHandling="FALSE" | 153 | ExceptionHandling="FALSE" |
| @@ -182,49 +186,49 @@ | |||
| 182 | Name="Source Files" | 186 | Name="Source Files" |
| 183 | Filter=""> | 187 | Filter=""> |
| 184 | <File | 188 | <File |
| 185 | RelativePath=".\adler32.c"> | 189 | RelativePath="..\..\..\adler32.c"> |
| 186 | </File> | 190 | </File> |
| 187 | <File | 191 | <File |
| 188 | RelativePath=".\compress.c"> | 192 | RelativePath="..\..\..\compress.c"> |
| 189 | </File> | 193 | </File> |
| 190 | <File | 194 | <File |
| 191 | RelativePath=".\crc32.c"> | 195 | RelativePath="..\..\..\crc32.c"> |
| 192 | </File> | 196 | </File> |
| 193 | <File | 197 | <File |
| 194 | RelativePath=".\deflate.c"> | 198 | RelativePath="..\..\..\deflate.c"> |
| 195 | </File> | 199 | </File> |
| 196 | <File | 200 | <File |
| 197 | RelativePath=".\gvmat32c.c"> | 201 | RelativePath="..\..\masmx86\gvmat32c.c"> |
| 198 | </File> | 202 | </File> |
| 199 | <File | 203 | <File |
| 200 | RelativePath=".\gzio.c"> | 204 | RelativePath="..\..\..\gzio.c"> |
| 201 | </File> | 205 | </File> |
| 202 | <File | 206 | <File |
| 203 | RelativePath=".\infback.c"> | 207 | RelativePath="..\..\..\infback.c"> |
| 204 | </File> | 208 | </File> |
| 205 | <File | 209 | <File |
| 206 | RelativePath=".\inffast.c"> | 210 | RelativePath="..\..\..\inffast.c"> |
| 207 | </File> | 211 | </File> |
| 208 | <File | 212 | <File |
| 209 | RelativePath=".\inflate.c"> | 213 | RelativePath="..\..\..\inflate.c"> |
| 210 | </File> | 214 | </File> |
| 211 | <File | 215 | <File |
| 212 | RelativePath=".\inftrees.c"> | 216 | RelativePath="..\..\..\inftrees.c"> |
| 213 | </File> | 217 | </File> |
| 214 | <File | 218 | <File |
| 215 | RelativePath=".\ioapi.c"> | 219 | RelativePath="..\..\minizip\ioapi.c"> |
| 216 | </File> | 220 | </File> |
| 217 | <File | 221 | <File |
| 218 | RelativePath=".\trees.c"> | 222 | RelativePath="..\..\..\trees.c"> |
| 219 | </File> | 223 | </File> |
| 220 | <File | 224 | <File |
| 221 | RelativePath=".\uncompr.c"> | 225 | RelativePath="..\..\..\uncompr.c"> |
| 222 | </File> | 226 | </File> |
| 223 | <File | 227 | <File |
| 224 | RelativePath=".\unzip.c"> | 228 | RelativePath="..\..\minizip\unzip.c"> |
| 225 | </File> | 229 | </File> |
| 226 | <File | 230 | <File |
| 227 | RelativePath=".\zip.c"> | 231 | RelativePath="..\..\minizip\zip.c"> |
| 228 | </File> | 232 | </File> |
| 229 | <File | 233 | <File |
| 230 | RelativePath=".\zlib.rc"> | 234 | RelativePath=".\zlib.rc"> |
| @@ -233,7 +237,7 @@ | |||
| 233 | RelativePath=".\zlibvc.def"> | 237 | RelativePath=".\zlibvc.def"> |
| 234 | </File> | 238 | </File> |
| 235 | <File | 239 | <File |
| 236 | RelativePath=".\zutil.c"> | 240 | RelativePath="..\..\..\zutil.c"> |
| 237 | </File> | 241 | </File> |
| 238 | </Filter> | 242 | </Filter> |
| 239 | </Files> | 243 | </Files> |
diff --git a/contrib/vstudio/vc7/zlibvc.def b/contrib/vstudio/vc7/zlibvc.def index 6bc26c4d..a40e7154 100644 --- a/contrib/vstudio/vc7/zlibvc.def +++ b/contrib/vstudio/vc7/zlibvc.def | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | 1 | ||
| 2 | VERSION 1.21 | 2 | VERSION 1.23 |
| 3 | 3 | ||
| 4 | HEAPSIZE 1048576,8192 | 4 | HEAPSIZE 1048576,8192 |
| 5 | 5 | ||
| @@ -53,7 +53,7 @@ EXPORTS | |||
| 53 | deflateBound @47 | 53 | deflateBound @47 |
| 54 | gzclearerr @48 | 54 | gzclearerr @48 |
| 55 | gzungetc @49 | 55 | gzungetc @49 |
| 56 | zlibCompileFlags @50 | 56 | zlibCompileFlags @50 |
| 57 | deflatePrime @51 | 57 | deflatePrime @51 |
| 58 | 58 | ||
| 59 | unzOpen @61 | 59 | unzOpen @61 |
diff --git a/contrib/vstudio/vc7/zlibvc.sln b/contrib/vstudio/vc7/zlibvc.sln index 5a007ff6..927b42b7 100644 --- a/contrib/vstudio/vc7/zlibvc.sln +++ b/contrib/vstudio/vc7/zlibvc.sln | |||
| @@ -7,6 +7,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minizip", "minizip.vcproj", | |||
| 7 | EndProject | 7 | EndProject |
| 8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | 8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}" |
| 9 | EndProject | 9 | EndProject |
| 10 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testZlibDll", "testzlib.vcproj", "{AA6666AA-E09F-4135-9C0C-4FE50C3C654C}" | ||
| 11 | EndProject | ||
| 10 | Global | 12 | Global |
| 11 | GlobalSection(SolutionConfiguration) = preSolution | 13 | GlobalSection(SolutionConfiguration) = preSolution |
| 12 | ConfigName.0 = Debug | 14 | ConfigName.0 = Debug |
| @@ -58,6 +60,16 @@ Global | |||
| 58 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm.Build.0 = Release|Win32 | 60 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm.Build.0 = Release|Win32 |
| 59 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutCrtdll.ActiveCfg = Release|Win32 | 61 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutCrtdll.ActiveCfg = Release|Win32 |
| 60 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutCrtdll.Build.0 = 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 | ||
| 61 | EndGlobalSection | 73 | EndGlobalSection |
| 62 | GlobalSection(ExtensibilityGlobals) = postSolution | 74 | GlobalSection(ExtensibilityGlobals) = postSolution |
| 63 | EndGlobalSection | 75 | EndGlobalSection |
diff --git a/contrib/vstudio/vc7/zlibvc.vcproj b/contrib/vstudio/vc7/zlibvc.vcproj index 4e57bcdf..8533b494 100644 --- a/contrib/vstudio/vc7/zlibvc.vcproj +++ b/contrib/vstudio/vc7/zlibvc.vcproj | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | <Tool | 20 | <Tool |
| 21 | Name="VCCLCompilerTool" | 21 | Name="VCCLCompilerTool" |
| 22 | Optimization="0" | 22 | Optimization="0" |
| 23 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 23 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" | 24 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" |
| 24 | ExceptionHandling="FALSE" | 25 | ExceptionHandling="FALSE" |
| 25 | RuntimeLibrary="1" | 26 | RuntimeLibrary="1" |
| @@ -35,7 +36,7 @@ | |||
| 35 | <Tool | 36 | <Tool |
| 36 | Name="VCLinkerTool" | 37 | Name="VCLinkerTool" |
| 37 | AdditionalOptions="/MACHINE:I386" | 38 | AdditionalOptions="/MACHINE:I386" |
| 38 | AdditionalDependencies="gvmat32.obj inffas32.obj" | 39 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj" |
| 39 | OutputFile=".\DebugDll\zlibwapi.dll" | 40 | OutputFile=".\DebugDll\zlibwapi.dll" |
| 40 | LinkIncremental="2" | 41 | LinkIncremental="2" |
| 41 | SuppressStartupBanner="TRUE" | 42 | SuppressStartupBanner="TRUE" |
| @@ -72,10 +73,12 @@ | |||
| 72 | IntermediateDirectory=".\zlibDllWithoutAsm" | 73 | IntermediateDirectory=".\zlibDllWithoutAsm" |
| 73 | ConfigurationType="2" | 74 | ConfigurationType="2" |
| 74 | UseOfMFC="0" | 75 | UseOfMFC="0" |
| 75 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | 76 | ATLMinimizesCRunTimeLibraryUsage="FALSE" |
| 77 | WholeProgramOptimization="TRUE"> | ||
| 76 | <Tool | 78 | <Tool |
| 77 | Name="VCCLCompilerTool" | 79 | Name="VCCLCompilerTool" |
| 78 | InlineFunctionExpansion="1" | 80 | InlineFunctionExpansion="1" |
| 81 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 79 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI" | 82 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI" |
| 80 | StringPooling="TRUE" | 83 | StringPooling="TRUE" |
| 81 | ExceptionHandling="FALSE" | 84 | ExceptionHandling="FALSE" |
| @@ -134,10 +137,12 @@ | |||
| 134 | IntermediateDirectory=".\zlibDllWithoutCrtDll" | 137 | IntermediateDirectory=".\zlibDllWithoutCrtDll" |
| 135 | ConfigurationType="2" | 138 | ConfigurationType="2" |
| 136 | UseOfMFC="0" | 139 | UseOfMFC="0" |
| 137 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | 140 | ATLMinimizesCRunTimeLibraryUsage="FALSE" |
| 141 | WholeProgramOptimization="TRUE"> | ||
| 138 | <Tool | 142 | <Tool |
| 139 | Name="VCCLCompilerTool" | 143 | Name="VCCLCompilerTool" |
| 140 | InlineFunctionExpansion="1" | 144 | InlineFunctionExpansion="1" |
| 145 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 141 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" | 146 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" |
| 142 | StringPooling="TRUE" | 147 | StringPooling="TRUE" |
| 143 | ExceptionHandling="FALSE" | 148 | ExceptionHandling="FALSE" |
| @@ -156,7 +161,7 @@ | |||
| 156 | <Tool | 161 | <Tool |
| 157 | Name="VCLinkerTool" | 162 | Name="VCLinkerTool" |
| 158 | AdditionalOptions="/MACHINE:I386" | 163 | AdditionalOptions="/MACHINE:I386" |
| 159 | AdditionalDependencies="gvmat32.obj inffas32.obj " | 164 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj " |
| 160 | OutputFile=".\zlibDllWithoutCrtDll\zlibwapi.dll" | 165 | OutputFile=".\zlibDllWithoutCrtDll\zlibwapi.dll" |
| 161 | LinkIncremental="1" | 166 | LinkIncremental="1" |
| 162 | SuppressStartupBanner="TRUE" | 167 | SuppressStartupBanner="TRUE" |
| @@ -196,10 +201,12 @@ | |||
| 196 | IntermediateDirectory=".\zlibvc__" | 201 | IntermediateDirectory=".\zlibvc__" |
| 197 | ConfigurationType="2" | 202 | ConfigurationType="2" |
| 198 | UseOfMFC="0" | 203 | UseOfMFC="0" |
| 199 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | 204 | ATLMinimizesCRunTimeLibraryUsage="FALSE" |
| 205 | WholeProgramOptimization="TRUE"> | ||
| 200 | <Tool | 206 | <Tool |
| 201 | Name="VCCLCompilerTool" | 207 | Name="VCCLCompilerTool" |
| 202 | InlineFunctionExpansion="1" | 208 | InlineFunctionExpansion="1" |
| 209 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 203 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI" | 210 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI" |
| 204 | StringPooling="TRUE" | 211 | StringPooling="TRUE" |
| 205 | ExceptionHandling="FALSE" | 212 | ExceptionHandling="FALSE" |
| @@ -256,10 +263,12 @@ | |||
| 256 | IntermediateDirectory=".\ReleaseDll" | 263 | IntermediateDirectory=".\ReleaseDll" |
| 257 | ConfigurationType="2" | 264 | ConfigurationType="2" |
| 258 | UseOfMFC="0" | 265 | UseOfMFC="0" |
| 259 | ATLMinimizesCRunTimeLibraryUsage="FALSE"> | 266 | ATLMinimizesCRunTimeLibraryUsage="FALSE" |
| 267 | WholeProgramOptimization="TRUE"> | ||
| 260 | <Tool | 268 | <Tool |
| 261 | Name="VCCLCompilerTool" | 269 | Name="VCCLCompilerTool" |
| 262 | InlineFunctionExpansion="1" | 270 | InlineFunctionExpansion="1" |
| 271 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 263 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" | 272 | PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF" |
| 264 | StringPooling="TRUE" | 273 | StringPooling="TRUE" |
| 265 | ExceptionHandling="FALSE" | 274 | ExceptionHandling="FALSE" |
| @@ -278,7 +287,7 @@ | |||
| 278 | <Tool | 287 | <Tool |
| 279 | Name="VCLinkerTool" | 288 | Name="VCLinkerTool" |
| 280 | AdditionalOptions="/MACHINE:I386" | 289 | AdditionalOptions="/MACHINE:I386" |
| 281 | AdditionalDependencies="gvmat32.obj inffas32.obj crtdll.lib" | 290 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj crtdll.lib" |
| 282 | OutputFile=".\ReleaseDll\zlibwapi.dll" | 291 | OutputFile=".\ReleaseDll\zlibwapi.dll" |
| 283 | LinkIncremental="1" | 292 | LinkIncremental="1" |
| 284 | SuppressStartupBanner="TRUE" | 293 | SuppressStartupBanner="TRUE" |
| @@ -318,19 +327,19 @@ | |||
| 318 | Name="Source Files" | 327 | Name="Source Files" |
| 319 | Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"> | 328 | Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"> |
| 320 | <File | 329 | <File |
| 321 | RelativePath=".\adler32.c"> | 330 | RelativePath="..\..\..\adler32.c"> |
| 322 | </File> | 331 | </File> |
| 323 | <File | 332 | <File |
| 324 | RelativePath=".\compress.c"> | 333 | RelativePath="..\..\..\compress.c"> |
| 325 | </File> | 334 | </File> |
| 326 | <File | 335 | <File |
| 327 | RelativePath=".\crc32.c"> | 336 | RelativePath="..\..\..\crc32.c"> |
| 328 | </File> | 337 | </File> |
| 329 | <File | 338 | <File |
| 330 | RelativePath=".\deflate.c"> | 339 | RelativePath="..\..\..\deflate.c"> |
| 331 | </File> | 340 | </File> |
| 332 | <File | 341 | <File |
| 333 | RelativePath=".\gvmat32c.c"> | 342 | RelativePath="..\..\masmx86\gvmat32c.c"> |
| 334 | <FileConfiguration | 343 | <FileConfiguration |
| 335 | Name="ReleaseWithoutAsm|Win32" | 344 | Name="ReleaseWithoutAsm|Win32" |
| 336 | ExcludedFromBuild="TRUE"> | 345 | ExcludedFromBuild="TRUE"> |
| @@ -339,34 +348,34 @@ | |||
| 339 | </FileConfiguration> | 348 | </FileConfiguration> |
| 340 | </File> | 349 | </File> |
| 341 | <File | 350 | <File |
| 342 | RelativePath=".\gzio.c"> | 351 | RelativePath="..\..\..\gzio.c"> |
| 343 | </File> | 352 | </File> |
| 344 | <File | 353 | <File |
| 345 | RelativePath=".\infback.c"> | 354 | RelativePath="..\..\..\infback.c"> |
| 346 | </File> | 355 | </File> |
| 347 | <File | 356 | <File |
| 348 | RelativePath=".\inffast.c"> | 357 | RelativePath="..\..\..\inffast.c"> |
| 349 | </File> | 358 | </File> |
| 350 | <File | 359 | <File |
| 351 | RelativePath=".\inflate.c"> | 360 | RelativePath="..\..\..\inflate.c"> |
| 352 | </File> | 361 | </File> |
| 353 | <File | 362 | <File |
| 354 | RelativePath=".\inftrees.c"> | 363 | RelativePath="..\..\..\inftrees.c"> |
| 355 | </File> | 364 | </File> |
| 356 | <File | 365 | <File |
| 357 | RelativePath=".\ioapi.c"> | 366 | RelativePath="..\..\minizip\ioapi.c"> |
| 358 | </File> | 367 | </File> |
| 359 | <File | 368 | <File |
| 360 | RelativePath=".\iowin32.c"> | 369 | RelativePath="..\..\minizip\iowin32.c"> |
| 361 | </File> | 370 | </File> |
| 362 | <File | 371 | <File |
| 363 | RelativePath=".\trees.c"> | 372 | RelativePath="..\..\..\trees.c"> |
| 364 | </File> | 373 | </File> |
| 365 | <File | 374 | <File |
| 366 | RelativePath=".\uncompr.c"> | 375 | RelativePath="..\..\..\uncompr.c"> |
| 367 | </File> | 376 | </File> |
| 368 | <File | 377 | <File |
| 369 | RelativePath=".\unzip.c"> | 378 | RelativePath="..\..\minizip\unzip.c"> |
| 370 | <FileConfiguration | 379 | <FileConfiguration |
| 371 | Name="Release|Win32"> | 380 | Name="Release|Win32"> |
| 372 | <Tool | 381 | <Tool |
| @@ -376,7 +385,7 @@ | |||
| 376 | </FileConfiguration> | 385 | </FileConfiguration> |
| 377 | </File> | 386 | </File> |
| 378 | <File | 387 | <File |
| 379 | RelativePath=".\zip.c"> | 388 | RelativePath="..\..\minizip\zip.c"> |
| 380 | <FileConfiguration | 389 | <FileConfiguration |
| 381 | Name="Release|Win32"> | 390 | Name="Release|Win32"> |
| 382 | <Tool | 391 | <Tool |
| @@ -392,38 +401,38 @@ | |||
| 392 | RelativePath=".\zlibvc.def"> | 401 | RelativePath=".\zlibvc.def"> |
| 393 | </File> | 402 | </File> |
| 394 | <File | 403 | <File |
| 395 | RelativePath=".\zutil.c"> | 404 | RelativePath="..\..\..\zutil.c"> |
| 396 | </File> | 405 | </File> |
| 397 | </Filter> | 406 | </Filter> |
| 398 | <Filter | 407 | <Filter |
| 399 | Name="Header Files" | 408 | Name="Header Files" |
| 400 | Filter="h;hpp;hxx;hm;inl;fi;fd"> | 409 | Filter="h;hpp;hxx;hm;inl;fi;fd"> |
| 401 | <File | 410 | <File |
| 402 | RelativePath=".\deflate.h"> | 411 | RelativePath="..\..\..\deflate.h"> |
| 403 | </File> | 412 | </File> |
| 404 | <File | 413 | <File |
| 405 | RelativePath=".\infblock.h"> | 414 | RelativePath="..\..\..\infblock.h"> |
| 406 | </File> | 415 | </File> |
| 407 | <File | 416 | <File |
| 408 | RelativePath=".\infcodes.h"> | 417 | RelativePath="..\..\..\infcodes.h"> |
| 409 | </File> | 418 | </File> |
| 410 | <File | 419 | <File |
| 411 | RelativePath=".\inffast.h"> | 420 | RelativePath="..\..\..\inffast.h"> |
| 412 | </File> | 421 | </File> |
| 413 | <File | 422 | <File |
| 414 | RelativePath=".\inftrees.h"> | 423 | RelativePath="..\..\..\inftrees.h"> |
| 415 | </File> | 424 | </File> |
| 416 | <File | 425 | <File |
| 417 | RelativePath=".\infutil.h"> | 426 | RelativePath="..\..\..\infutil.h"> |
| 418 | </File> | 427 | </File> |
| 419 | <File | 428 | <File |
| 420 | RelativePath=".\zconf.h"> | 429 | RelativePath="..\..\..\zconf.h"> |
| 421 | </File> | 430 | </File> |
| 422 | <File | 431 | <File |
| 423 | RelativePath=".\zlib.h"> | 432 | RelativePath="..\..\..\zlib.h"> |
| 424 | </File> | 433 | </File> |
| 425 | <File | 434 | <File |
| 426 | RelativePath=".\zutil.h"> | 435 | RelativePath="..\..\..\zutil.h"> |
| 427 | </File> | 436 | </File> |
| 428 | </Filter> | 437 | </Filter> |
| 429 | <Filter | 438 | <Filter |
diff --git a/contrib/vstudio/vc8/miniunz.vcproj b/contrib/vstudio/vc8/miniunz.vcproj new file mode 100644 index 00000000..4af53e8a --- /dev/null +++ b/contrib/vstudio/vc8/miniunz.vcproj | |||
| @@ -0,0 +1,566 @@ | |||
| 1 | <?xml version="1.0" encoding="Windows-1252"?> | ||
| 2 | <VisualStudioProject | ||
| 3 | ProjectType="Visual C++" | ||
| 4 | Version="8,00" | ||
| 5 | Name="miniunz" | ||
| 6 | ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | ||
| 7 | Keyword="Win32Proj" | ||
| 8 | > | ||
| 9 | <Platforms> | ||
| 10 | <Platform | ||
| 11 | Name="Win32" | ||
| 12 | /> | ||
| 13 | <Platform | ||
| 14 | Name="x64" | ||
| 15 | /> | ||
| 16 | <Platform | ||
| 17 | Name="Itanium" | ||
| 18 | /> | ||
| 19 | </Platforms> | ||
| 20 | <ToolFiles> | ||
| 21 | </ToolFiles> | ||
| 22 | <Configurations> | ||
| 23 | <Configuration | ||
| 24 | Name="Debug|Win32" | ||
| 25 | OutputDirectory="x86\MiniUnzip$(ConfigurationName)" | ||
| 26 | IntermediateDirectory="x86\MiniUnzip$(ConfigurationName)\Tmp" | ||
| 27 | ConfigurationType="1" | ||
| 28 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 29 | CharacterSet="2" | ||
| 30 | > | ||
| 31 | <Tool | ||
| 32 | Name="VCPreBuildEventTool" | ||
| 33 | /> | ||
| 34 | <Tool | ||
| 35 | Name="VCCustomBuildTool" | ||
| 36 | /> | ||
| 37 | <Tool | ||
| 38 | Name="VCXMLDataGeneratorTool" | ||
| 39 | /> | ||
| 40 | <Tool | ||
| 41 | Name="VCWebServiceProxyGeneratorTool" | ||
| 42 | /> | ||
| 43 | <Tool | ||
| 44 | Name="VCMIDLTool" | ||
| 45 | /> | ||
| 46 | <Tool | ||
| 47 | Name="VCCLCompilerTool" | ||
| 48 | Optimization="0" | ||
| 49 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 50 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE" | ||
| 51 | MinimalRebuild="true" | ||
| 52 | BasicRuntimeChecks="0" | ||
| 53 | RuntimeLibrary="1" | ||
| 54 | BufferSecurityCheck="false" | ||
| 55 | UsePrecompiledHeader="0" | ||
| 56 | AssemblerListingLocation="$(IntDir)\" | ||
| 57 | WarningLevel="3" | ||
| 58 | Detect64BitPortabilityProblems="true" | ||
| 59 | DebugInformationFormat="4" | ||
| 60 | /> | ||
| 61 | <Tool | ||
| 62 | Name="VCManagedResourceCompilerTool" | ||
| 63 | /> | ||
| 64 | <Tool | ||
| 65 | Name="VCResourceCompilerTool" | ||
| 66 | /> | ||
| 67 | <Tool | ||
| 68 | Name="VCPreLinkEventTool" | ||
| 69 | /> | ||
| 70 | <Tool | ||
| 71 | Name="VCLinkerTool" | ||
| 72 | AdditionalDependencies="x86\ZlibDllDebug\zlibwapi.lib" | ||
| 73 | OutputFile="$(OutDir)/miniunz.exe" | ||
| 74 | LinkIncremental="2" | ||
| 75 | GenerateManifest="false" | ||
| 76 | GenerateDebugInformation="true" | ||
| 77 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | ||
| 78 | SubSystem="1" | ||
| 79 | TargetMachine="1" | ||
| 80 | /> | ||
| 81 | <Tool | ||
| 82 | Name="VCALinkTool" | ||
| 83 | /> | ||
| 84 | <Tool | ||
| 85 | Name="VCManifestTool" | ||
| 86 | /> | ||
| 87 | <Tool | ||
| 88 | Name="VCXDCMakeTool" | ||
| 89 | /> | ||
| 90 | <Tool | ||
| 91 | Name="VCBscMakeTool" | ||
| 92 | /> | ||
| 93 | <Tool | ||
| 94 | Name="VCFxCopTool" | ||
| 95 | /> | ||
| 96 | <Tool | ||
| 97 | Name="VCAppVerifierTool" | ||
| 98 | /> | ||
| 99 | <Tool | ||
| 100 | Name="VCWebDeploymentTool" | ||
| 101 | /> | ||
| 102 | <Tool | ||
| 103 | Name="VCPostBuildEventTool" | ||
| 104 | /> | ||
| 105 | </Configuration> | ||
| 106 | <Configuration | ||
| 107 | Name="Debug|x64" | ||
| 108 | OutputDirectory="x64\MiniUnzip$(ConfigurationName)" | ||
| 109 | IntermediateDirectory="x64\MiniUnzip$(ConfigurationName)\Tmp" | ||
| 110 | ConfigurationType="1" | ||
| 111 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 112 | CharacterSet="2" | ||
| 113 | > | ||
| 114 | <Tool | ||
| 115 | Name="VCPreBuildEventTool" | ||
| 116 | /> | ||
| 117 | <Tool | ||
| 118 | Name="VCCustomBuildTool" | ||
| 119 | /> | ||
| 120 | <Tool | ||
| 121 | Name="VCXMLDataGeneratorTool" | ||
| 122 | /> | ||
| 123 | <Tool | ||
| 124 | Name="VCWebServiceProxyGeneratorTool" | ||
| 125 | /> | ||
| 126 | <Tool | ||
| 127 | Name="VCMIDLTool" | ||
| 128 | TargetEnvironment="3" | ||
| 129 | /> | ||
| 130 | <Tool | ||
| 131 | Name="VCCLCompilerTool" | ||
| 132 | Optimization="0" | ||
| 133 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 134 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | ||
| 135 | MinimalRebuild="true" | ||
| 136 | BasicRuntimeChecks="0" | ||
| 137 | RuntimeLibrary="3" | ||
| 138 | BufferSecurityCheck="false" | ||
| 139 | UsePrecompiledHeader="0" | ||
| 140 | AssemblerListingLocation="$(IntDir)\" | ||
| 141 | WarningLevel="3" | ||
| 142 | Detect64BitPortabilityProblems="true" | ||
| 143 | DebugInformationFormat="3" | ||
| 144 | /> | ||
| 145 | <Tool | ||
| 146 | Name="VCManagedResourceCompilerTool" | ||
| 147 | /> | ||
| 148 | <Tool | ||
| 149 | Name="VCResourceCompilerTool" | ||
| 150 | /> | ||
| 151 | <Tool | ||
| 152 | Name="VCPreLinkEventTool" | ||
| 153 | /> | ||
| 154 | <Tool | ||
| 155 | Name="VCLinkerTool" | ||
| 156 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" | ||
| 157 | OutputFile="$(OutDir)/miniunz.exe" | ||
| 158 | LinkIncremental="2" | ||
| 159 | GenerateManifest="false" | ||
| 160 | GenerateDebugInformation="true" | ||
| 161 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | ||
| 162 | SubSystem="1" | ||
| 163 | TargetMachine="17" | ||
| 164 | /> | ||
| 165 | <Tool | ||
| 166 | Name="VCALinkTool" | ||
| 167 | /> | ||
| 168 | <Tool | ||
| 169 | Name="VCManifestTool" | ||
| 170 | /> | ||
| 171 | <Tool | ||
| 172 | Name="VCXDCMakeTool" | ||
| 173 | /> | ||
| 174 | <Tool | ||
| 175 | Name="VCBscMakeTool" | ||
| 176 | /> | ||
| 177 | <Tool | ||
| 178 | Name="VCFxCopTool" | ||
| 179 | /> | ||
| 180 | <Tool | ||
| 181 | Name="VCAppVerifierTool" | ||
| 182 | /> | ||
| 183 | <Tool | ||
| 184 | Name="VCWebDeploymentTool" | ||
| 185 | /> | ||
| 186 | <Tool | ||
| 187 | Name="VCPostBuildEventTool" | ||
| 188 | /> | ||
| 189 | </Configuration> | ||
| 190 | <Configuration | ||
| 191 | Name="Debug|Itanium" | ||
| 192 | OutputDirectory="ia64\MiniUnzip$(ConfigurationName)" | ||
| 193 | IntermediateDirectory="ia64\MiniUnzip$(ConfigurationName)\Tmp" | ||
| 194 | ConfigurationType="1" | ||
| 195 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 196 | CharacterSet="2" | ||
| 197 | > | ||
| 198 | <Tool | ||
| 199 | Name="VCPreBuildEventTool" | ||
| 200 | /> | ||
| 201 | <Tool | ||
| 202 | Name="VCCustomBuildTool" | ||
| 203 | /> | ||
| 204 | <Tool | ||
| 205 | Name="VCXMLDataGeneratorTool" | ||
| 206 | /> | ||
| 207 | <Tool | ||
| 208 | Name="VCWebServiceProxyGeneratorTool" | ||
| 209 | /> | ||
| 210 | <Tool | ||
| 211 | Name="VCMIDLTool" | ||
| 212 | TargetEnvironment="2" | ||
| 213 | /> | ||
| 214 | <Tool | ||
| 215 | Name="VCCLCompilerTool" | ||
| 216 | Optimization="0" | ||
| 217 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 218 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | ||
| 219 | MinimalRebuild="true" | ||
| 220 | BasicRuntimeChecks="0" | ||
| 221 | RuntimeLibrary="3" | ||
| 222 | BufferSecurityCheck="false" | ||
| 223 | UsePrecompiledHeader="0" | ||
| 224 | AssemblerListingLocation="$(IntDir)\" | ||
| 225 | WarningLevel="3" | ||
| 226 | Detect64BitPortabilityProblems="true" | ||
| 227 | DebugInformationFormat="3" | ||
| 228 | /> | ||
| 229 | <Tool | ||
| 230 | Name="VCManagedResourceCompilerTool" | ||
| 231 | /> | ||
| 232 | <Tool | ||
| 233 | Name="VCResourceCompilerTool" | ||
| 234 | /> | ||
| 235 | <Tool | ||
| 236 | Name="VCPreLinkEventTool" | ||
| 237 | /> | ||
| 238 | <Tool | ||
| 239 | Name="VCLinkerTool" | ||
| 240 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" | ||
| 241 | OutputFile="$(OutDir)/miniunz.exe" | ||
| 242 | LinkIncremental="2" | ||
| 243 | GenerateManifest="false" | ||
| 244 | GenerateDebugInformation="true" | ||
| 245 | ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | ||
| 246 | SubSystem="1" | ||
| 247 | TargetMachine="5" | ||
| 248 | /> | ||
| 249 | <Tool | ||
| 250 | Name="VCALinkTool" | ||
| 251 | /> | ||
| 252 | <Tool | ||
| 253 | Name="VCManifestTool" | ||
| 254 | /> | ||
| 255 | <Tool | ||
| 256 | Name="VCXDCMakeTool" | ||
| 257 | /> | ||
| 258 | <Tool | ||
| 259 | Name="VCBscMakeTool" | ||
| 260 | /> | ||
| 261 | <Tool | ||
| 262 | Name="VCFxCopTool" | ||
| 263 | /> | ||
| 264 | <Tool | ||
| 265 | Name="VCAppVerifierTool" | ||
| 266 | /> | ||
| 267 | <Tool | ||
| 268 | Name="VCWebDeploymentTool" | ||
| 269 | /> | ||
| 270 | <Tool | ||
| 271 | Name="VCPostBuildEventTool" | ||
| 272 | /> | ||
| 273 | </Configuration> | ||
| 274 | <Configuration | ||
| 275 | Name="Release|Win32" | ||
| 276 | OutputDirectory="x86\MiniUnzip$(ConfigurationName)" | ||
| 277 | IntermediateDirectory="x86\MiniUnzip$(ConfigurationName)\Tmp" | ||
| 278 | ConfigurationType="1" | ||
| 279 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 280 | CharacterSet="2" | ||
| 281 | > | ||
| 282 | <Tool | ||
| 283 | Name="VCPreBuildEventTool" | ||
| 284 | /> | ||
| 285 | <Tool | ||
| 286 | Name="VCCustomBuildTool" | ||
| 287 | /> | ||
| 288 | <Tool | ||
| 289 | Name="VCXMLDataGeneratorTool" | ||
| 290 | /> | ||
| 291 | <Tool | ||
| 292 | Name="VCWebServiceProxyGeneratorTool" | ||
| 293 | /> | ||
| 294 | <Tool | ||
| 295 | Name="VCMIDLTool" | ||
| 296 | /> | ||
| 297 | <Tool | ||
| 298 | Name="VCCLCompilerTool" | ||
| 299 | Optimization="2" | ||
| 300 | InlineFunctionExpansion="1" | ||
| 301 | OmitFramePointers="true" | ||
| 302 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 303 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" | ||
| 304 | StringPooling="true" | ||
| 305 | BasicRuntimeChecks="0" | ||
| 306 | RuntimeLibrary="0" | ||
| 307 | BufferSecurityCheck="false" | ||
| 308 | EnableFunctionLevelLinking="true" | ||
| 309 | UsePrecompiledHeader="0" | ||
| 310 | AssemblerListingLocation="$(IntDir)\" | ||
| 311 | WarningLevel="3" | ||
| 312 | Detect64BitPortabilityProblems="true" | ||
| 313 | DebugInformationFormat="3" | ||
| 314 | /> | ||
| 315 | <Tool | ||
| 316 | Name="VCManagedResourceCompilerTool" | ||
| 317 | /> | ||
| 318 | <Tool | ||
| 319 | Name="VCResourceCompilerTool" | ||
| 320 | /> | ||
| 321 | <Tool | ||
| 322 | Name="VCPreLinkEventTool" | ||
| 323 | /> | ||
| 324 | <Tool | ||
| 325 | Name="VCLinkerTool" | ||
| 326 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" | ||
| 327 | OutputFile="$(OutDir)/miniunz.exe" | ||
| 328 | LinkIncremental="1" | ||
| 329 | GenerateManifest="false" | ||
| 330 | GenerateDebugInformation="true" | ||
| 331 | SubSystem="1" | ||
| 332 | OptimizeReferences="2" | ||
| 333 | EnableCOMDATFolding="2" | ||
| 334 | OptimizeForWindows98="1" | ||
| 335 | TargetMachine="1" | ||
| 336 | /> | ||
| 337 | <Tool | ||
| 338 | Name="VCALinkTool" | ||
| 339 | /> | ||
| 340 | <Tool | ||
| 341 | Name="VCManifestTool" | ||
| 342 | /> | ||
| 343 | <Tool | ||
| 344 | Name="VCXDCMakeTool" | ||
| 345 | /> | ||
| 346 | <Tool | ||
| 347 | Name="VCBscMakeTool" | ||
| 348 | /> | ||
| 349 | <Tool | ||
| 350 | Name="VCFxCopTool" | ||
| 351 | /> | ||
| 352 | <Tool | ||
| 353 | Name="VCAppVerifierTool" | ||
| 354 | /> | ||
| 355 | <Tool | ||
| 356 | Name="VCWebDeploymentTool" | ||
| 357 | /> | ||
| 358 | <Tool | ||
| 359 | Name="VCPostBuildEventTool" | ||
| 360 | /> | ||
| 361 | </Configuration> | ||
| 362 | <Configuration | ||
| 363 | Name="Release|x64" | ||
| 364 | OutputDirectory="x64\MiniUnzip$(ConfigurationName)" | ||
| 365 | IntermediateDirectory="x64\MiniUnzip$(ConfigurationName)\Tmp" | ||
| 366 | ConfigurationType="1" | ||
| 367 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 368 | CharacterSet="2" | ||
| 369 | > | ||
| 370 | <Tool | ||
| 371 | Name="VCPreBuildEventTool" | ||
| 372 | /> | ||
| 373 | <Tool | ||
| 374 | Name="VCCustomBuildTool" | ||
| 375 | /> | ||
| 376 | <Tool | ||
| 377 | Name="VCXMLDataGeneratorTool" | ||
| 378 | /> | ||
| 379 | <Tool | ||
| 380 | Name="VCWebServiceProxyGeneratorTool" | ||
| 381 | /> | ||
| 382 | <Tool | ||
| 383 | Name="VCMIDLTool" | ||
| 384 | TargetEnvironment="3" | ||
| 385 | /> | ||
| 386 | <Tool | ||
| 387 | Name="VCCLCompilerTool" | ||
| 388 | Optimization="2" | ||
| 389 | InlineFunctionExpansion="1" | ||
| 390 | OmitFramePointers="true" | ||
| 391 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 392 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64" | ||
| 393 | StringPooling="true" | ||
| 394 | BasicRuntimeChecks="0" | ||
| 395 | RuntimeLibrary="2" | ||
| 396 | BufferSecurityCheck="false" | ||
| 397 | EnableFunctionLevelLinking="true" | ||
| 398 | UsePrecompiledHeader="0" | ||
| 399 | AssemblerListingLocation="$(IntDir)\" | ||
| 400 | WarningLevel="3" | ||
| 401 | Detect64BitPortabilityProblems="true" | ||
| 402 | DebugInformationFormat="3" | ||
| 403 | /> | ||
| 404 | <Tool | ||
| 405 | Name="VCManagedResourceCompilerTool" | ||
| 406 | /> | ||
| 407 | <Tool | ||
| 408 | Name="VCResourceCompilerTool" | ||
| 409 | /> | ||
| 410 | <Tool | ||
| 411 | Name="VCPreLinkEventTool" | ||
| 412 | /> | ||
| 413 | <Tool | ||
| 414 | Name="VCLinkerTool" | ||
| 415 | AdditionalDependencies="x64\ZlibDllRelease\zlibwapi.lib" | ||
| 416 | OutputFile="$(OutDir)/miniunz.exe" | ||
| 417 | LinkIncremental="1" | ||
| 418 | GenerateManifest="false" | ||
| 419 | GenerateDebugInformation="true" | ||
| 420 | SubSystem="1" | ||
| 421 | OptimizeReferences="2" | ||
| 422 | EnableCOMDATFolding="2" | ||
| 423 | OptimizeForWindows98="1" | ||
| 424 | TargetMachine="17" | ||
| 425 | /> | ||
| 426 | <Tool | ||
| 427 | Name="VCALinkTool" | ||
| 428 | /> | ||
| 429 | <Tool | ||
| 430 | Name="VCManifestTool" | ||
| 431 | /> | ||
| 432 | <Tool | ||
| 433 | Name="VCXDCMakeTool" | ||
| 434 | /> | ||
| 435 | <Tool | ||
| 436 | Name="VCBscMakeTool" | ||
| 437 | /> | ||
| 438 | <Tool | ||
| 439 | Name="VCFxCopTool" | ||
| 440 | /> | ||
| 441 | <Tool | ||
| 442 | Name="VCAppVerifierTool" | ||
| 443 | /> | ||
| 444 | <Tool | ||
| 445 | Name="VCWebDeploymentTool" | ||
| 446 | /> | ||
| 447 | <Tool | ||
| 448 | Name="VCPostBuildEventTool" | ||
| 449 | /> | ||
| 450 | </Configuration> | ||
| 451 | <Configuration | ||
| 452 | Name="Release|Itanium" | ||
| 453 | OutputDirectory="ia64\MiniUnzip$(ConfigurationName)" | ||
| 454 | IntermediateDirectory="ia64\MiniUnzip$(ConfigurationName)\Tmp" | ||
| 455 | ConfigurationType="1" | ||
| 456 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 457 | CharacterSet="2" | ||
| 458 | > | ||
| 459 | <Tool | ||
| 460 | Name="VCPreBuildEventTool" | ||
| 461 | /> | ||
| 462 | <Tool | ||
| 463 | Name="VCCustomBuildTool" | ||
| 464 | /> | ||
| 465 | <Tool | ||
| 466 | Name="VCXMLDataGeneratorTool" | ||
| 467 | /> | ||
| 468 | <Tool | ||
| 469 | Name="VCWebServiceProxyGeneratorTool" | ||
| 470 | /> | ||
| 471 | <Tool | ||
| 472 | Name="VCMIDLTool" | ||
| 473 | TargetEnvironment="2" | ||
| 474 | /> | ||
| 475 | <Tool | ||
| 476 | Name="VCCLCompilerTool" | ||
| 477 | Optimization="2" | ||
| 478 | InlineFunctionExpansion="1" | ||
| 479 | OmitFramePointers="true" | ||
| 480 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 481 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64" | ||
| 482 | StringPooling="true" | ||
| 483 | BasicRuntimeChecks="0" | ||
| 484 | RuntimeLibrary="2" | ||
| 485 | BufferSecurityCheck="false" | ||
| 486 | EnableFunctionLevelLinking="true" | ||
| 487 | UsePrecompiledHeader="0" | ||
| 488 | AssemblerListingLocation="$(IntDir)\" | ||
| 489 | WarningLevel="3" | ||
| 490 | Detect64BitPortabilityProblems="true" | ||
| 491 | DebugInformationFormat="3" | ||
| 492 | /> | ||
| 493 | <Tool | ||
| 494 | Name="VCManagedResourceCompilerTool" | ||
| 495 | /> | ||
| 496 | <Tool | ||
| 497 | Name="VCResourceCompilerTool" | ||
| 498 | /> | ||
| 499 | <Tool | ||
| 500 | Name="VCPreLinkEventTool" | ||
| 501 | /> | ||
| 502 | <Tool | ||
| 503 | Name="VCLinkerTool" | ||
| 504 | AdditionalDependencies="ia64\ZlibDllRelease\zlibwapi.lib" | ||
| 505 | OutputFile="$(OutDir)/miniunz.exe" | ||
| 506 | LinkIncremental="1" | ||
| 507 | GenerateManifest="false" | ||
| 508 | GenerateDebugInformation="true" | ||
| 509 | SubSystem="1" | ||
| 510 | OptimizeReferences="2" | ||
| 511 | EnableCOMDATFolding="2" | ||
| 512 | OptimizeForWindows98="1" | ||
| 513 | TargetMachine="5" | ||
| 514 | /> | ||
| 515 | <Tool | ||
| 516 | Name="VCALinkTool" | ||
| 517 | /> | ||
| 518 | <Tool | ||
| 519 | Name="VCManifestTool" | ||
| 520 | /> | ||
| 521 | <Tool | ||
| 522 | Name="VCXDCMakeTool" | ||
| 523 | /> | ||
| 524 | <Tool | ||
| 525 | Name="VCBscMakeTool" | ||
| 526 | /> | ||
| 527 | <Tool | ||
| 528 | Name="VCFxCopTool" | ||
| 529 | /> | ||
| 530 | <Tool | ||
| 531 | Name="VCAppVerifierTool" | ||
| 532 | /> | ||
| 533 | <Tool | ||
| 534 | Name="VCWebDeploymentTool" | ||
| 535 | /> | ||
| 536 | <Tool | ||
| 537 | Name="VCPostBuildEventTool" | ||
| 538 | /> | ||
| 539 | </Configuration> | ||
| 540 | </Configurations> | ||
| 541 | <References> | ||
| 542 | </References> | ||
| 543 | <Files> | ||
| 544 | <Filter | ||
| 545 | Name="Source Files" | ||
| 546 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm" | ||
| 547 | > | ||
| 548 | <File | ||
| 549 | RelativePath="..\..\minizip\miniunz.c" | ||
| 550 | > | ||
| 551 | </File> | ||
| 552 | </Filter> | ||
| 553 | <Filter | ||
| 554 | Name="Header Files" | ||
| 555 | Filter="h;hpp;hxx;hm;inl;inc" | ||
| 556 | > | ||
| 557 | </Filter> | ||
| 558 | <Filter | ||
| 559 | Name="Resource Files" | ||
| 560 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" | ||
| 561 | > | ||
| 562 | </Filter> | ||
| 563 | </Files> | ||
| 564 | <Globals> | ||
| 565 | </Globals> | ||
| 566 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc8/minizip.vcproj b/contrib/vstudio/vc8/minizip.vcproj new file mode 100644 index 00000000..85f64c4d --- /dev/null +++ b/contrib/vstudio/vc8/minizip.vcproj | |||
| @@ -0,0 +1,563 @@ | |||
| 1 | <?xml version="1.0" encoding="Windows-1252"?> | ||
| 2 | <VisualStudioProject | ||
| 3 | ProjectType="Visual C++" | ||
| 4 | Version="8,00" | ||
| 5 | Name="minizip" | ||
| 6 | ProjectGUID="{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | ||
| 7 | Keyword="Win32Proj" | ||
| 8 | > | ||
| 9 | <Platforms> | ||
| 10 | <Platform | ||
| 11 | Name="Win32" | ||
| 12 | /> | ||
| 13 | <Platform | ||
| 14 | Name="x64" | ||
| 15 | /> | ||
| 16 | <Platform | ||
| 17 | Name="Itanium" | ||
| 18 | /> | ||
| 19 | </Platforms> | ||
| 20 | <ToolFiles> | ||
| 21 | </ToolFiles> | ||
| 22 | <Configurations> | ||
| 23 | <Configuration | ||
| 24 | Name="Debug|Win32" | ||
| 25 | OutputDirectory="x86\MiniZip$(ConfigurationName)" | ||
| 26 | IntermediateDirectory="x86\MiniZip$(ConfigurationName)\Tmp" | ||
| 27 | ConfigurationType="1" | ||
| 28 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 29 | CharacterSet="2" | ||
| 30 | > | ||
| 31 | <Tool | ||
| 32 | Name="VCPreBuildEventTool" | ||
| 33 | /> | ||
| 34 | <Tool | ||
| 35 | Name="VCCustomBuildTool" | ||
| 36 | /> | ||
| 37 | <Tool | ||
| 38 | Name="VCXMLDataGeneratorTool" | ||
| 39 | /> | ||
| 40 | <Tool | ||
| 41 | Name="VCWebServiceProxyGeneratorTool" | ||
| 42 | /> | ||
| 43 | <Tool | ||
| 44 | Name="VCMIDLTool" | ||
| 45 | /> | ||
| 46 | <Tool | ||
| 47 | Name="VCCLCompilerTool" | ||
| 48 | Optimization="0" | ||
| 49 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 50 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE" | ||
| 51 | MinimalRebuild="true" | ||
| 52 | BasicRuntimeChecks="0" | ||
| 53 | RuntimeLibrary="1" | ||
| 54 | BufferSecurityCheck="false" | ||
| 55 | UsePrecompiledHeader="0" | ||
| 56 | AssemblerListingLocation="$(IntDir)\" | ||
| 57 | WarningLevel="3" | ||
| 58 | Detect64BitPortabilityProblems="true" | ||
| 59 | DebugInformationFormat="4" | ||
| 60 | /> | ||
| 61 | <Tool | ||
| 62 | Name="VCManagedResourceCompilerTool" | ||
| 63 | /> | ||
| 64 | <Tool | ||
| 65 | Name="VCResourceCompilerTool" | ||
| 66 | /> | ||
| 67 | <Tool | ||
| 68 | Name="VCPreLinkEventTool" | ||
| 69 | /> | ||
| 70 | <Tool | ||
| 71 | Name="VCLinkerTool" | ||
| 72 | AdditionalDependencies="x86\ZlibDllDebug\zlibwapi.lib" | ||
| 73 | OutputFile="$(OutDir)/minizip.exe" | ||
| 74 | LinkIncremental="2" | ||
| 75 | GenerateManifest="false" | ||
| 76 | GenerateDebugInformation="true" | ||
| 77 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" | ||
| 78 | SubSystem="1" | ||
| 79 | TargetMachine="1" | ||
| 80 | /> | ||
| 81 | <Tool | ||
| 82 | Name="VCALinkTool" | ||
| 83 | /> | ||
| 84 | <Tool | ||
| 85 | Name="VCManifestTool" | ||
| 86 | /> | ||
| 87 | <Tool | ||
| 88 | Name="VCXDCMakeTool" | ||
| 89 | /> | ||
| 90 | <Tool | ||
| 91 | Name="VCBscMakeTool" | ||
| 92 | /> | ||
| 93 | <Tool | ||
| 94 | Name="VCFxCopTool" | ||
| 95 | /> | ||
| 96 | <Tool | ||
| 97 | Name="VCAppVerifierTool" | ||
| 98 | /> | ||
| 99 | <Tool | ||
| 100 | Name="VCWebDeploymentTool" | ||
| 101 | /> | ||
| 102 | <Tool | ||
| 103 | Name="VCPostBuildEventTool" | ||
| 104 | /> | ||
| 105 | </Configuration> | ||
| 106 | <Configuration | ||
| 107 | Name="Debug|x64" | ||
| 108 | OutputDirectory="x64\$(ConfigurationName)" | ||
| 109 | IntermediateDirectory="x64\$(ConfigurationName)" | ||
| 110 | ConfigurationType="1" | ||
| 111 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 112 | CharacterSet="2" | ||
| 113 | > | ||
| 114 | <Tool | ||
| 115 | Name="VCPreBuildEventTool" | ||
| 116 | /> | ||
| 117 | <Tool | ||
| 118 | Name="VCCustomBuildTool" | ||
| 119 | /> | ||
| 120 | <Tool | ||
| 121 | Name="VCXMLDataGeneratorTool" | ||
| 122 | /> | ||
| 123 | <Tool | ||
| 124 | Name="VCWebServiceProxyGeneratorTool" | ||
| 125 | /> | ||
| 126 | <Tool | ||
| 127 | Name="VCMIDLTool" | ||
| 128 | TargetEnvironment="3" | ||
| 129 | /> | ||
| 130 | <Tool | ||
| 131 | Name="VCCLCompilerTool" | ||
| 132 | Optimization="0" | ||
| 133 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 134 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | ||
| 135 | MinimalRebuild="true" | ||
| 136 | BasicRuntimeChecks="0" | ||
| 137 | RuntimeLibrary="3" | ||
| 138 | BufferSecurityCheck="false" | ||
| 139 | UsePrecompiledHeader="0" | ||
| 140 | AssemblerListingLocation="$(IntDir)\" | ||
| 141 | WarningLevel="3" | ||
| 142 | Detect64BitPortabilityProblems="true" | ||
| 143 | DebugInformationFormat="3" | ||
| 144 | /> | ||
| 145 | <Tool | ||
| 146 | Name="VCManagedResourceCompilerTool" | ||
| 147 | /> | ||
| 148 | <Tool | ||
| 149 | Name="VCResourceCompilerTool" | ||
| 150 | /> | ||
| 151 | <Tool | ||
| 152 | Name="VCPreLinkEventTool" | ||
| 153 | /> | ||
| 154 | <Tool | ||
| 155 | Name="VCLinkerTool" | ||
| 156 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" | ||
| 157 | OutputFile="$(OutDir)/minizip.exe" | ||
| 158 | LinkIncremental="2" | ||
| 159 | GenerateManifest="false" | ||
| 160 | GenerateDebugInformation="true" | ||
| 161 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" | ||
| 162 | SubSystem="1" | ||
| 163 | TargetMachine="17" | ||
| 164 | /> | ||
| 165 | <Tool | ||
| 166 | Name="VCALinkTool" | ||
| 167 | /> | ||
| 168 | <Tool | ||
| 169 | Name="VCManifestTool" | ||
| 170 | /> | ||
| 171 | <Tool | ||
| 172 | Name="VCXDCMakeTool" | ||
| 173 | /> | ||
| 174 | <Tool | ||
| 175 | Name="VCBscMakeTool" | ||
| 176 | /> | ||
| 177 | <Tool | ||
| 178 | Name="VCFxCopTool" | ||
| 179 | /> | ||
| 180 | <Tool | ||
| 181 | Name="VCAppVerifierTool" | ||
| 182 | /> | ||
| 183 | <Tool | ||
| 184 | Name="VCWebDeploymentTool" | ||
| 185 | /> | ||
| 186 | <Tool | ||
| 187 | Name="VCPostBuildEventTool" | ||
| 188 | /> | ||
| 189 | </Configuration> | ||
| 190 | <Configuration | ||
| 191 | Name="Debug|Itanium" | ||
| 192 | OutputDirectory="ia64\$(ConfigurationName)" | ||
| 193 | IntermediateDirectory="ia64\$(ConfigurationName)" | ||
| 194 | ConfigurationType="1" | ||
| 195 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 196 | CharacterSet="2" | ||
| 197 | > | ||
| 198 | <Tool | ||
| 199 | Name="VCPreBuildEventTool" | ||
| 200 | /> | ||
| 201 | <Tool | ||
| 202 | Name="VCCustomBuildTool" | ||
| 203 | /> | ||
| 204 | <Tool | ||
| 205 | Name="VCXMLDataGeneratorTool" | ||
| 206 | /> | ||
| 207 | <Tool | ||
| 208 | Name="VCWebServiceProxyGeneratorTool" | ||
| 209 | /> | ||
| 210 | <Tool | ||
| 211 | Name="VCMIDLTool" | ||
| 212 | TargetEnvironment="2" | ||
| 213 | /> | ||
| 214 | <Tool | ||
| 215 | Name="VCCLCompilerTool" | ||
| 216 | Optimization="0" | ||
| 217 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 218 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | ||
| 219 | MinimalRebuild="true" | ||
| 220 | BasicRuntimeChecks="0" | ||
| 221 | RuntimeLibrary="3" | ||
| 222 | BufferSecurityCheck="false" | ||
| 223 | UsePrecompiledHeader="0" | ||
| 224 | AssemblerListingLocation="$(IntDir)\" | ||
| 225 | WarningLevel="3" | ||
| 226 | Detect64BitPortabilityProblems="true" | ||
| 227 | DebugInformationFormat="3" | ||
| 228 | /> | ||
| 229 | <Tool | ||
| 230 | Name="VCManagedResourceCompilerTool" | ||
| 231 | /> | ||
| 232 | <Tool | ||
| 233 | Name="VCResourceCompilerTool" | ||
| 234 | /> | ||
| 235 | <Tool | ||
| 236 | Name="VCPreLinkEventTool" | ||
| 237 | /> | ||
| 238 | <Tool | ||
| 239 | Name="VCLinkerTool" | ||
| 240 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" | ||
| 241 | OutputFile="$(OutDir)/minizip.exe" | ||
| 242 | LinkIncremental="2" | ||
| 243 | GenerateManifest="false" | ||
| 244 | GenerateDebugInformation="true" | ||
| 245 | ProgramDatabaseFile="$(OutDir)/minizip.pdb" | ||
| 246 | SubSystem="1" | ||
| 247 | TargetMachine="5" | ||
| 248 | /> | ||
| 249 | <Tool | ||
| 250 | Name="VCALinkTool" | ||
| 251 | /> | ||
| 252 | <Tool | ||
| 253 | Name="VCManifestTool" | ||
| 254 | /> | ||
| 255 | <Tool | ||
| 256 | Name="VCXDCMakeTool" | ||
| 257 | /> | ||
| 258 | <Tool | ||
| 259 | Name="VCBscMakeTool" | ||
| 260 | /> | ||
| 261 | <Tool | ||
| 262 | Name="VCFxCopTool" | ||
| 263 | /> | ||
| 264 | <Tool | ||
| 265 | Name="VCAppVerifierTool" | ||
| 266 | /> | ||
| 267 | <Tool | ||
| 268 | Name="VCWebDeploymentTool" | ||
| 269 | /> | ||
| 270 | <Tool | ||
| 271 | Name="VCPostBuildEventTool" | ||
| 272 | /> | ||
| 273 | </Configuration> | ||
| 274 | <Configuration | ||
| 275 | Name="Release|Win32" | ||
| 276 | OutputDirectory="x86\MiniZip$(ConfigurationName)" | ||
| 277 | IntermediateDirectory="x86\MiniZip$(ConfigurationName)\Tmp" | ||
| 278 | ConfigurationType="1" | ||
| 279 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 280 | CharacterSet="2" | ||
| 281 | > | ||
| 282 | <Tool | ||
| 283 | Name="VCPreBuildEventTool" | ||
| 284 | /> | ||
| 285 | <Tool | ||
| 286 | Name="VCCustomBuildTool" | ||
| 287 | /> | ||
| 288 | <Tool | ||
| 289 | Name="VCXMLDataGeneratorTool" | ||
| 290 | /> | ||
| 291 | <Tool | ||
| 292 | Name="VCWebServiceProxyGeneratorTool" | ||
| 293 | /> | ||
| 294 | <Tool | ||
| 295 | Name="VCMIDLTool" | ||
| 296 | /> | ||
| 297 | <Tool | ||
| 298 | Name="VCCLCompilerTool" | ||
| 299 | Optimization="2" | ||
| 300 | InlineFunctionExpansion="1" | ||
| 301 | OmitFramePointers="true" | ||
| 302 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 303 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" | ||
| 304 | StringPooling="true" | ||
| 305 | BasicRuntimeChecks="0" | ||
| 306 | RuntimeLibrary="0" | ||
| 307 | BufferSecurityCheck="false" | ||
| 308 | EnableFunctionLevelLinking="true" | ||
| 309 | UsePrecompiledHeader="0" | ||
| 310 | AssemblerListingLocation="$(IntDir)\" | ||
| 311 | WarningLevel="3" | ||
| 312 | Detect64BitPortabilityProblems="true" | ||
| 313 | DebugInformationFormat="3" | ||
| 314 | /> | ||
| 315 | <Tool | ||
| 316 | Name="VCManagedResourceCompilerTool" | ||
| 317 | /> | ||
| 318 | <Tool | ||
| 319 | Name="VCResourceCompilerTool" | ||
| 320 | /> | ||
| 321 | <Tool | ||
| 322 | Name="VCPreLinkEventTool" | ||
| 323 | /> | ||
| 324 | <Tool | ||
| 325 | Name="VCLinkerTool" | ||
| 326 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" | ||
| 327 | OutputFile="$(OutDir)/minizip.exe" | ||
| 328 | LinkIncremental="1" | ||
| 329 | GenerateDebugInformation="true" | ||
| 330 | SubSystem="1" | ||
| 331 | OptimizeReferences="2" | ||
| 332 | EnableCOMDATFolding="2" | ||
| 333 | OptimizeForWindows98="1" | ||
| 334 | TargetMachine="1" | ||
| 335 | /> | ||
| 336 | <Tool | ||
| 337 | Name="VCALinkTool" | ||
| 338 | /> | ||
| 339 | <Tool | ||
| 340 | Name="VCManifestTool" | ||
| 341 | /> | ||
| 342 | <Tool | ||
| 343 | Name="VCXDCMakeTool" | ||
| 344 | /> | ||
| 345 | <Tool | ||
| 346 | Name="VCBscMakeTool" | ||
| 347 | /> | ||
| 348 | <Tool | ||
| 349 | Name="VCFxCopTool" | ||
| 350 | /> | ||
| 351 | <Tool | ||
| 352 | Name="VCAppVerifierTool" | ||
| 353 | /> | ||
| 354 | <Tool | ||
| 355 | Name="VCWebDeploymentTool" | ||
| 356 | /> | ||
| 357 | <Tool | ||
| 358 | Name="VCPostBuildEventTool" | ||
| 359 | /> | ||
| 360 | </Configuration> | ||
| 361 | <Configuration | ||
| 362 | Name="Release|x64" | ||
| 363 | OutputDirectory="x64\$(ConfigurationName)" | ||
| 364 | IntermediateDirectory="x64\$(ConfigurationName)" | ||
| 365 | ConfigurationType="1" | ||
| 366 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 367 | CharacterSet="2" | ||
| 368 | > | ||
| 369 | <Tool | ||
| 370 | Name="VCPreBuildEventTool" | ||
| 371 | /> | ||
| 372 | <Tool | ||
| 373 | Name="VCCustomBuildTool" | ||
| 374 | /> | ||
| 375 | <Tool | ||
| 376 | Name="VCXMLDataGeneratorTool" | ||
| 377 | /> | ||
| 378 | <Tool | ||
| 379 | Name="VCWebServiceProxyGeneratorTool" | ||
| 380 | /> | ||
| 381 | <Tool | ||
| 382 | Name="VCMIDLTool" | ||
| 383 | TargetEnvironment="3" | ||
| 384 | /> | ||
| 385 | <Tool | ||
| 386 | Name="VCCLCompilerTool" | ||
| 387 | Optimization="2" | ||
| 388 | InlineFunctionExpansion="1" | ||
| 389 | OmitFramePointers="true" | ||
| 390 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 391 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64" | ||
| 392 | StringPooling="true" | ||
| 393 | BasicRuntimeChecks="0" | ||
| 394 | RuntimeLibrary="2" | ||
| 395 | BufferSecurityCheck="false" | ||
| 396 | EnableFunctionLevelLinking="true" | ||
| 397 | UsePrecompiledHeader="0" | ||
| 398 | AssemblerListingLocation="$(IntDir)\" | ||
| 399 | WarningLevel="3" | ||
| 400 | Detect64BitPortabilityProblems="true" | ||
| 401 | DebugInformationFormat="3" | ||
| 402 | /> | ||
| 403 | <Tool | ||
| 404 | Name="VCManagedResourceCompilerTool" | ||
| 405 | /> | ||
| 406 | <Tool | ||
| 407 | Name="VCResourceCompilerTool" | ||
| 408 | /> | ||
| 409 | <Tool | ||
| 410 | Name="VCPreLinkEventTool" | ||
| 411 | /> | ||
| 412 | <Tool | ||
| 413 | Name="VCLinkerTool" | ||
| 414 | AdditionalDependencies="x64\ZlibDllRelease\zlibwapi.lib" | ||
| 415 | OutputFile="$(OutDir)/minizip.exe" | ||
| 416 | LinkIncremental="1" | ||
| 417 | GenerateDebugInformation="true" | ||
| 418 | SubSystem="1" | ||
| 419 | OptimizeReferences="2" | ||
| 420 | EnableCOMDATFolding="2" | ||
| 421 | OptimizeForWindows98="1" | ||
| 422 | TargetMachine="17" | ||
| 423 | /> | ||
| 424 | <Tool | ||
| 425 | Name="VCALinkTool" | ||
| 426 | /> | ||
| 427 | <Tool | ||
| 428 | Name="VCManifestTool" | ||
| 429 | /> | ||
| 430 | <Tool | ||
| 431 | Name="VCXDCMakeTool" | ||
| 432 | /> | ||
| 433 | <Tool | ||
| 434 | Name="VCBscMakeTool" | ||
| 435 | /> | ||
| 436 | <Tool | ||
| 437 | Name="VCFxCopTool" | ||
| 438 | /> | ||
| 439 | <Tool | ||
| 440 | Name="VCAppVerifierTool" | ||
| 441 | /> | ||
| 442 | <Tool | ||
| 443 | Name="VCWebDeploymentTool" | ||
| 444 | /> | ||
| 445 | <Tool | ||
| 446 | Name="VCPostBuildEventTool" | ||
| 447 | /> | ||
| 448 | </Configuration> | ||
| 449 | <Configuration | ||
| 450 | Name="Release|Itanium" | ||
| 451 | OutputDirectory="ia64\$(ConfigurationName)" | ||
| 452 | IntermediateDirectory="ia64\$(ConfigurationName)" | ||
| 453 | ConfigurationType="1" | ||
| 454 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 455 | CharacterSet="2" | ||
| 456 | > | ||
| 457 | <Tool | ||
| 458 | Name="VCPreBuildEventTool" | ||
| 459 | /> | ||
| 460 | <Tool | ||
| 461 | Name="VCCustomBuildTool" | ||
| 462 | /> | ||
| 463 | <Tool | ||
| 464 | Name="VCXMLDataGeneratorTool" | ||
| 465 | /> | ||
| 466 | <Tool | ||
| 467 | Name="VCWebServiceProxyGeneratorTool" | ||
| 468 | /> | ||
| 469 | <Tool | ||
| 470 | Name="VCMIDLTool" | ||
| 471 | TargetEnvironment="2" | ||
| 472 | /> | ||
| 473 | <Tool | ||
| 474 | Name="VCCLCompilerTool" | ||
| 475 | Optimization="2" | ||
| 476 | InlineFunctionExpansion="1" | ||
| 477 | OmitFramePointers="true" | ||
| 478 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 479 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64" | ||
| 480 | StringPooling="true" | ||
| 481 | BasicRuntimeChecks="0" | ||
| 482 | RuntimeLibrary="2" | ||
| 483 | BufferSecurityCheck="false" | ||
| 484 | EnableFunctionLevelLinking="true" | ||
| 485 | UsePrecompiledHeader="0" | ||
| 486 | AssemblerListingLocation="$(IntDir)\" | ||
| 487 | WarningLevel="3" | ||
| 488 | Detect64BitPortabilityProblems="true" | ||
| 489 | DebugInformationFormat="3" | ||
| 490 | /> | ||
| 491 | <Tool | ||
| 492 | Name="VCManagedResourceCompilerTool" | ||
| 493 | /> | ||
| 494 | <Tool | ||
| 495 | Name="VCResourceCompilerTool" | ||
| 496 | /> | ||
| 497 | <Tool | ||
| 498 | Name="VCPreLinkEventTool" | ||
| 499 | /> | ||
| 500 | <Tool | ||
| 501 | Name="VCLinkerTool" | ||
| 502 | AdditionalDependencies="ia64\ZlibDllRelease\zlibwapi.lib" | ||
| 503 | OutputFile="$(OutDir)/minizip.exe" | ||
| 504 | LinkIncremental="1" | ||
| 505 | GenerateDebugInformation="true" | ||
| 506 | SubSystem="1" | ||
| 507 | OptimizeReferences="2" | ||
| 508 | EnableCOMDATFolding="2" | ||
| 509 | OptimizeForWindows98="1" | ||
| 510 | TargetMachine="5" | ||
| 511 | /> | ||
| 512 | <Tool | ||
| 513 | Name="VCALinkTool" | ||
| 514 | /> | ||
| 515 | <Tool | ||
| 516 | Name="VCManifestTool" | ||
| 517 | /> | ||
| 518 | <Tool | ||
| 519 | Name="VCXDCMakeTool" | ||
| 520 | /> | ||
| 521 | <Tool | ||
| 522 | Name="VCBscMakeTool" | ||
| 523 | /> | ||
| 524 | <Tool | ||
| 525 | Name="VCFxCopTool" | ||
| 526 | /> | ||
| 527 | <Tool | ||
| 528 | Name="VCAppVerifierTool" | ||
| 529 | /> | ||
| 530 | <Tool | ||
| 531 | Name="VCWebDeploymentTool" | ||
| 532 | /> | ||
| 533 | <Tool | ||
| 534 | Name="VCPostBuildEventTool" | ||
| 535 | /> | ||
| 536 | </Configuration> | ||
| 537 | </Configurations> | ||
| 538 | <References> | ||
| 539 | </References> | ||
| 540 | <Files> | ||
| 541 | <Filter | ||
| 542 | Name="Source Files" | ||
| 543 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm" | ||
| 544 | > | ||
| 545 | <File | ||
| 546 | RelativePath="..\..\minizip\minizip.c" | ||
| 547 | > | ||
| 548 | </File> | ||
| 549 | </Filter> | ||
| 550 | <Filter | ||
| 551 | Name="Header Files" | ||
| 552 | Filter="h;hpp;hxx;hm;inl;inc" | ||
| 553 | > | ||
| 554 | </Filter> | ||
| 555 | <Filter | ||
| 556 | Name="Resource Files" | ||
| 557 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" | ||
| 558 | > | ||
| 559 | </Filter> | ||
| 560 | </Files> | ||
| 561 | <Globals> | ||
| 562 | </Globals> | ||
| 563 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc8/testzlib.vcproj b/contrib/vstudio/vc8/testzlib.vcproj new file mode 100644 index 00000000..68c35399 --- /dev/null +++ b/contrib/vstudio/vc8/testzlib.vcproj | |||
| @@ -0,0 +1,948 @@ | |||
| 1 | <?xml version="1.0" encoding="Windows-1252"?> | ||
| 2 | <VisualStudioProject | ||
| 3 | ProjectType="Visual C++" | ||
| 4 | Version="8,00" | ||
| 5 | Name="testzlib" | ||
| 6 | ProjectGUID="{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" | ||
| 7 | RootNamespace="testzlib" | ||
| 8 | Keyword="Win32Proj" | ||
| 9 | > | ||
| 10 | <Platforms> | ||
| 11 | <Platform | ||
| 12 | Name="Win32" | ||
| 13 | /> | ||
| 14 | <Platform | ||
| 15 | Name="x64" | ||
| 16 | /> | ||
| 17 | <Platform | ||
| 18 | Name="Itanium" | ||
| 19 | /> | ||
| 20 | </Platforms> | ||
| 21 | <ToolFiles> | ||
| 22 | </ToolFiles> | ||
| 23 | <Configurations> | ||
| 24 | <Configuration | ||
| 25 | Name="Debug|Win32" | ||
| 26 | OutputDirectory="x86\TestZlib$(ConfigurationName)" | ||
| 27 | IntermediateDirectory="x86\TestZlib$(ConfigurationName)\Tmp" | ||
| 28 | ConfigurationType="1" | ||
| 29 | CharacterSet="2" | ||
| 30 | > | ||
| 31 | <Tool | ||
| 32 | Name="VCPreBuildEventTool" | ||
| 33 | /> | ||
| 34 | <Tool | ||
| 35 | Name="VCCustomBuildTool" | ||
| 36 | /> | ||
| 37 | <Tool | ||
| 38 | Name="VCXMLDataGeneratorTool" | ||
| 39 | /> | ||
| 40 | <Tool | ||
| 41 | Name="VCWebServiceProxyGeneratorTool" | ||
| 42 | /> | ||
| 43 | <Tool | ||
| 44 | Name="VCMIDLTool" | ||
| 45 | /> | ||
| 46 | <Tool | ||
| 47 | Name="VCCLCompilerTool" | ||
| 48 | Optimization="0" | ||
| 49 | AdditionalIncludeDirectories="..\..\.." | ||
| 50 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | ||
| 51 | MinimalRebuild="true" | ||
| 52 | BasicRuntimeChecks="0" | ||
| 53 | RuntimeLibrary="1" | ||
| 54 | BufferSecurityCheck="false" | ||
| 55 | UsePrecompiledHeader="0" | ||
| 56 | AssemblerOutput="4" | ||
| 57 | AssemblerListingLocation="$(IntDir)\" | ||
| 58 | WarningLevel="3" | ||
| 59 | Detect64BitPortabilityProblems="true" | ||
| 60 | DebugInformationFormat="4" | ||
| 61 | /> | ||
| 62 | <Tool | ||
| 63 | Name="VCManagedResourceCompilerTool" | ||
| 64 | /> | ||
| 65 | <Tool | ||
| 66 | Name="VCResourceCompilerTool" | ||
| 67 | /> | ||
| 68 | <Tool | ||
| 69 | Name="VCPreLinkEventTool" | ||
| 70 | /> | ||
| 71 | <Tool | ||
| 72 | Name="VCLinkerTool" | ||
| 73 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj" | ||
| 74 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 75 | LinkIncremental="2" | ||
| 76 | GenerateManifest="false" | ||
| 77 | GenerateDebugInformation="true" | ||
| 78 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
| 79 | SubSystem="1" | ||
| 80 | TargetMachine="1" | ||
| 81 | /> | ||
| 82 | <Tool | ||
| 83 | Name="VCALinkTool" | ||
| 84 | /> | ||
| 85 | <Tool | ||
| 86 | Name="VCManifestTool" | ||
| 87 | /> | ||
| 88 | <Tool | ||
| 89 | Name="VCXDCMakeTool" | ||
| 90 | /> | ||
| 91 | <Tool | ||
| 92 | Name="VCBscMakeTool" | ||
| 93 | /> | ||
| 94 | <Tool | ||
| 95 | Name="VCFxCopTool" | ||
| 96 | /> | ||
| 97 | <Tool | ||
| 98 | Name="VCAppVerifierTool" | ||
| 99 | /> | ||
| 100 | <Tool | ||
| 101 | Name="VCWebDeploymentTool" | ||
| 102 | /> | ||
| 103 | <Tool | ||
| 104 | Name="VCPostBuildEventTool" | ||
| 105 | /> | ||
| 106 | </Configuration> | ||
| 107 | <Configuration | ||
| 108 | Name="Debug|x64" | ||
| 109 | OutputDirectory="x64\TestZlib$(ConfigurationName)" | ||
| 110 | IntermediateDirectory="x64\TestZlib$(ConfigurationName)\Tmp" | ||
| 111 | ConfigurationType="1" | ||
| 112 | > | ||
| 113 | <Tool | ||
| 114 | Name="VCPreBuildEventTool" | ||
| 115 | /> | ||
| 116 | <Tool | ||
| 117 | Name="VCCustomBuildTool" | ||
| 118 | /> | ||
| 119 | <Tool | ||
| 120 | Name="VCXMLDataGeneratorTool" | ||
| 121 | /> | ||
| 122 | <Tool | ||
| 123 | Name="VCWebServiceProxyGeneratorTool" | ||
| 124 | /> | ||
| 125 | <Tool | ||
| 126 | Name="VCMIDLTool" | ||
| 127 | /> | ||
| 128 | <Tool | ||
| 129 | Name="VCCLCompilerTool" | ||
| 130 | AdditionalIncludeDirectories="..\..\.." | ||
| 131 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | ||
| 132 | BasicRuntimeChecks="0" | ||
| 133 | RuntimeLibrary="3" | ||
| 134 | BufferSecurityCheck="false" | ||
| 135 | AssemblerListingLocation="$(IntDir)\" | ||
| 136 | /> | ||
| 137 | <Tool | ||
| 138 | Name="VCManagedResourceCompilerTool" | ||
| 139 | /> | ||
| 140 | <Tool | ||
| 141 | Name="VCResourceCompilerTool" | ||
| 142 | /> | ||
| 143 | <Tool | ||
| 144 | Name="VCPreLinkEventTool" | ||
| 145 | /> | ||
| 146 | <Tool | ||
| 147 | Name="VCLinkerTool" | ||
| 148 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj" | ||
| 149 | GenerateManifest="false" | ||
| 150 | /> | ||
| 151 | <Tool | ||
| 152 | Name="VCALinkTool" | ||
| 153 | /> | ||
| 154 | <Tool | ||
| 155 | Name="VCManifestTool" | ||
| 156 | /> | ||
| 157 | <Tool | ||
| 158 | Name="VCXDCMakeTool" | ||
| 159 | /> | ||
| 160 | <Tool | ||
| 161 | Name="VCBscMakeTool" | ||
| 162 | /> | ||
| 163 | <Tool | ||
| 164 | Name="VCFxCopTool" | ||
| 165 | /> | ||
| 166 | <Tool | ||
| 167 | Name="VCAppVerifierTool" | ||
| 168 | /> | ||
| 169 | <Tool | ||
| 170 | Name="VCWebDeploymentTool" | ||
| 171 | /> | ||
| 172 | <Tool | ||
| 173 | Name="VCPostBuildEventTool" | ||
| 174 | /> | ||
| 175 | </Configuration> | ||
| 176 | <Configuration | ||
| 177 | Name="Debug|Itanium" | ||
| 178 | OutputDirectory="ia64\TestZlib$(ConfigurationName)" | ||
| 179 | IntermediateDirectory="ia64\TestZlib$(ConfigurationName)\Tmp" | ||
| 180 | ConfigurationType="1" | ||
| 181 | CharacterSet="2" | ||
| 182 | > | ||
| 183 | <Tool | ||
| 184 | Name="VCPreBuildEventTool" | ||
| 185 | /> | ||
| 186 | <Tool | ||
| 187 | Name="VCCustomBuildTool" | ||
| 188 | /> | ||
| 189 | <Tool | ||
| 190 | Name="VCXMLDataGeneratorTool" | ||
| 191 | /> | ||
| 192 | <Tool | ||
| 193 | Name="VCWebServiceProxyGeneratorTool" | ||
| 194 | /> | ||
| 195 | <Tool | ||
| 196 | Name="VCMIDLTool" | ||
| 197 | TargetEnvironment="2" | ||
| 198 | /> | ||
| 199 | <Tool | ||
| 200 | Name="VCCLCompilerTool" | ||
| 201 | Optimization="0" | ||
| 202 | AdditionalIncludeDirectories="..\..\.." | ||
| 203 | PreprocessorDefinitions="ZLIB_WINAPI;_DEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | ||
| 204 | MinimalRebuild="true" | ||
| 205 | BasicRuntimeChecks="0" | ||
| 206 | RuntimeLibrary="3" | ||
| 207 | BufferSecurityCheck="false" | ||
| 208 | UsePrecompiledHeader="0" | ||
| 209 | AssemblerOutput="4" | ||
| 210 | AssemblerListingLocation="$(IntDir)\" | ||
| 211 | WarningLevel="3" | ||
| 212 | Detect64BitPortabilityProblems="true" | ||
| 213 | DebugInformationFormat="3" | ||
| 214 | /> | ||
| 215 | <Tool | ||
| 216 | Name="VCManagedResourceCompilerTool" | ||
| 217 | /> | ||
| 218 | <Tool | ||
| 219 | Name="VCResourceCompilerTool" | ||
| 220 | /> | ||
| 221 | <Tool | ||
| 222 | Name="VCPreLinkEventTool" | ||
| 223 | /> | ||
| 224 | <Tool | ||
| 225 | Name="VCLinkerTool" | ||
| 226 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 227 | LinkIncremental="2" | ||
| 228 | GenerateManifest="false" | ||
| 229 | GenerateDebugInformation="true" | ||
| 230 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
| 231 | SubSystem="1" | ||
| 232 | TargetMachine="5" | ||
| 233 | /> | ||
| 234 | <Tool | ||
| 235 | Name="VCALinkTool" | ||
| 236 | /> | ||
| 237 | <Tool | ||
| 238 | Name="VCManifestTool" | ||
| 239 | /> | ||
| 240 | <Tool | ||
| 241 | Name="VCXDCMakeTool" | ||
| 242 | /> | ||
| 243 | <Tool | ||
| 244 | Name="VCBscMakeTool" | ||
| 245 | /> | ||
| 246 | <Tool | ||
| 247 | Name="VCFxCopTool" | ||
| 248 | /> | ||
| 249 | <Tool | ||
| 250 | Name="VCAppVerifierTool" | ||
| 251 | /> | ||
| 252 | <Tool | ||
| 253 | Name="VCWebDeploymentTool" | ||
| 254 | /> | ||
| 255 | <Tool | ||
| 256 | Name="VCPostBuildEventTool" | ||
| 257 | /> | ||
| 258 | </Configuration> | ||
| 259 | <Configuration | ||
| 260 | Name="ReleaseWithoutAsm|Win32" | ||
| 261 | OutputDirectory="x86\TestZlib$(ConfigurationName)" | ||
| 262 | IntermediateDirectory="x86\TestZlib$(ConfigurationName)\Tmp" | ||
| 263 | ConfigurationType="1" | ||
| 264 | CharacterSet="2" | ||
| 265 | WholeProgramOptimization="1" | ||
| 266 | > | ||
| 267 | <Tool | ||
| 268 | Name="VCPreBuildEventTool" | ||
| 269 | /> | ||
| 270 | <Tool | ||
| 271 | Name="VCCustomBuildTool" | ||
| 272 | /> | ||
| 273 | <Tool | ||
| 274 | Name="VCXMLDataGeneratorTool" | ||
| 275 | /> | ||
| 276 | <Tool | ||
| 277 | Name="VCWebServiceProxyGeneratorTool" | ||
| 278 | /> | ||
| 279 | <Tool | ||
| 280 | Name="VCMIDLTool" | ||
| 281 | /> | ||
| 282 | <Tool | ||
| 283 | Name="VCCLCompilerTool" | ||
| 284 | Optimization="2" | ||
| 285 | InlineFunctionExpansion="1" | ||
| 286 | OmitFramePointers="true" | ||
| 287 | AdditionalIncludeDirectories="..\..\.." | ||
| 288 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | ||
| 289 | StringPooling="true" | ||
| 290 | BasicRuntimeChecks="0" | ||
| 291 | RuntimeLibrary="0" | ||
| 292 | BufferSecurityCheck="false" | ||
| 293 | EnableFunctionLevelLinking="true" | ||
| 294 | UsePrecompiledHeader="0" | ||
| 295 | AssemblerListingLocation="$(IntDir)\" | ||
| 296 | WarningLevel="3" | ||
| 297 | Detect64BitPortabilityProblems="true" | ||
| 298 | DebugInformationFormat="3" | ||
| 299 | /> | ||
| 300 | <Tool | ||
| 301 | Name="VCManagedResourceCompilerTool" | ||
| 302 | /> | ||
| 303 | <Tool | ||
| 304 | Name="VCResourceCompilerTool" | ||
| 305 | /> | ||
| 306 | <Tool | ||
| 307 | Name="VCPreLinkEventTool" | ||
| 308 | /> | ||
| 309 | <Tool | ||
| 310 | Name="VCLinkerTool" | ||
| 311 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 312 | LinkIncremental="1" | ||
| 313 | GenerateManifest="false" | ||
| 314 | GenerateDebugInformation="true" | ||
| 315 | SubSystem="1" | ||
| 316 | OptimizeReferences="2" | ||
| 317 | EnableCOMDATFolding="2" | ||
| 318 | OptimizeForWindows98="1" | ||
| 319 | TargetMachine="1" | ||
| 320 | /> | ||
| 321 | <Tool | ||
| 322 | Name="VCALinkTool" | ||
| 323 | /> | ||
| 324 | <Tool | ||
| 325 | Name="VCManifestTool" | ||
| 326 | /> | ||
| 327 | <Tool | ||
| 328 | Name="VCXDCMakeTool" | ||
| 329 | /> | ||
| 330 | <Tool | ||
| 331 | Name="VCBscMakeTool" | ||
| 332 | /> | ||
| 333 | <Tool | ||
| 334 | Name="VCFxCopTool" | ||
| 335 | /> | ||
| 336 | <Tool | ||
| 337 | Name="VCAppVerifierTool" | ||
| 338 | /> | ||
| 339 | <Tool | ||
| 340 | Name="VCWebDeploymentTool" | ||
| 341 | /> | ||
| 342 | <Tool | ||
| 343 | Name="VCPostBuildEventTool" | ||
| 344 | /> | ||
| 345 | </Configuration> | ||
| 346 | <Configuration | ||
| 347 | Name="ReleaseWithoutAsm|x64" | ||
| 348 | OutputDirectory="x64\TestZlib$(ConfigurationName)" | ||
| 349 | IntermediateDirectory="x64\TestZlib$(ConfigurationName)\Tmp" | ||
| 350 | ConfigurationType="1" | ||
| 351 | WholeProgramOptimization="1" | ||
| 352 | > | ||
| 353 | <Tool | ||
| 354 | Name="VCPreBuildEventTool" | ||
| 355 | /> | ||
| 356 | <Tool | ||
| 357 | Name="VCCustomBuildTool" | ||
| 358 | /> | ||
| 359 | <Tool | ||
| 360 | Name="VCXMLDataGeneratorTool" | ||
| 361 | /> | ||
| 362 | <Tool | ||
| 363 | Name="VCWebServiceProxyGeneratorTool" | ||
| 364 | /> | ||
| 365 | <Tool | ||
| 366 | Name="VCMIDLTool" | ||
| 367 | /> | ||
| 368 | <Tool | ||
| 369 | Name="VCCLCompilerTool" | ||
| 370 | AdditionalIncludeDirectories="..\..\.." | ||
| 371 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | ||
| 372 | BasicRuntimeChecks="0" | ||
| 373 | RuntimeLibrary="2" | ||
| 374 | BufferSecurityCheck="false" | ||
| 375 | AssemblerListingLocation="$(IntDir)\" | ||
| 376 | /> | ||
| 377 | <Tool | ||
| 378 | Name="VCManagedResourceCompilerTool" | ||
| 379 | /> | ||
| 380 | <Tool | ||
| 381 | Name="VCResourceCompilerTool" | ||
| 382 | /> | ||
| 383 | <Tool | ||
| 384 | Name="VCPreLinkEventTool" | ||
| 385 | /> | ||
| 386 | <Tool | ||
| 387 | Name="VCLinkerTool" | ||
| 388 | AdditionalDependencies="" | ||
| 389 | GenerateManifest="false" | ||
| 390 | /> | ||
| 391 | <Tool | ||
| 392 | Name="VCALinkTool" | ||
| 393 | /> | ||
| 394 | <Tool | ||
| 395 | Name="VCManifestTool" | ||
| 396 | /> | ||
| 397 | <Tool | ||
| 398 | Name="VCXDCMakeTool" | ||
| 399 | /> | ||
| 400 | <Tool | ||
| 401 | Name="VCBscMakeTool" | ||
| 402 | /> | ||
| 403 | <Tool | ||
| 404 | Name="VCFxCopTool" | ||
| 405 | /> | ||
| 406 | <Tool | ||
| 407 | Name="VCAppVerifierTool" | ||
| 408 | /> | ||
| 409 | <Tool | ||
| 410 | Name="VCWebDeploymentTool" | ||
| 411 | /> | ||
| 412 | <Tool | ||
| 413 | Name="VCPostBuildEventTool" | ||
| 414 | /> | ||
| 415 | </Configuration> | ||
| 416 | <Configuration | ||
| 417 | Name="ReleaseWithoutAsm|Itanium" | ||
| 418 | OutputDirectory="ia64\TestZlib$(ConfigurationName)" | ||
| 419 | IntermediateDirectory="ia64\TestZlib$(ConfigurationName)\Tmp" | ||
| 420 | ConfigurationType="1" | ||
| 421 | CharacterSet="2" | ||
| 422 | WholeProgramOptimization="1" | ||
| 423 | > | ||
| 424 | <Tool | ||
| 425 | Name="VCPreBuildEventTool" | ||
| 426 | /> | ||
| 427 | <Tool | ||
| 428 | Name="VCCustomBuildTool" | ||
| 429 | /> | ||
| 430 | <Tool | ||
| 431 | Name="VCXMLDataGeneratorTool" | ||
| 432 | /> | ||
| 433 | <Tool | ||
| 434 | Name="VCWebServiceProxyGeneratorTool" | ||
| 435 | /> | ||
| 436 | <Tool | ||
| 437 | Name="VCMIDLTool" | ||
| 438 | TargetEnvironment="2" | ||
| 439 | /> | ||
| 440 | <Tool | ||
| 441 | Name="VCCLCompilerTool" | ||
| 442 | Optimization="2" | ||
| 443 | InlineFunctionExpansion="1" | ||
| 444 | OmitFramePointers="true" | ||
| 445 | AdditionalIncludeDirectories="..\..\.." | ||
| 446 | PreprocessorDefinitions="ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | ||
| 447 | StringPooling="true" | ||
| 448 | BasicRuntimeChecks="0" | ||
| 449 | RuntimeLibrary="2" | ||
| 450 | BufferSecurityCheck="false" | ||
| 451 | EnableFunctionLevelLinking="true" | ||
| 452 | UsePrecompiledHeader="0" | ||
| 453 | AssemblerListingLocation="$(IntDir)\" | ||
| 454 | WarningLevel="3" | ||
| 455 | Detect64BitPortabilityProblems="true" | ||
| 456 | DebugInformationFormat="3" | ||
| 457 | /> | ||
| 458 | <Tool | ||
| 459 | Name="VCManagedResourceCompilerTool" | ||
| 460 | /> | ||
| 461 | <Tool | ||
| 462 | Name="VCResourceCompilerTool" | ||
| 463 | /> | ||
| 464 | <Tool | ||
| 465 | Name="VCPreLinkEventTool" | ||
| 466 | /> | ||
| 467 | <Tool | ||
| 468 | Name="VCLinkerTool" | ||
| 469 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 470 | LinkIncremental="1" | ||
| 471 | GenerateManifest="false" | ||
| 472 | GenerateDebugInformation="true" | ||
| 473 | SubSystem="1" | ||
| 474 | OptimizeReferences="2" | ||
| 475 | EnableCOMDATFolding="2" | ||
| 476 | OptimizeForWindows98="1" | ||
| 477 | TargetMachine="5" | ||
| 478 | /> | ||
| 479 | <Tool | ||
| 480 | Name="VCALinkTool" | ||
| 481 | /> | ||
| 482 | <Tool | ||
| 483 | Name="VCManifestTool" | ||
| 484 | /> | ||
| 485 | <Tool | ||
| 486 | Name="VCXDCMakeTool" | ||
| 487 | /> | ||
| 488 | <Tool | ||
| 489 | Name="VCBscMakeTool" | ||
| 490 | /> | ||
| 491 | <Tool | ||
| 492 | Name="VCFxCopTool" | ||
| 493 | /> | ||
| 494 | <Tool | ||
| 495 | Name="VCAppVerifierTool" | ||
| 496 | /> | ||
| 497 | <Tool | ||
| 498 | Name="VCWebDeploymentTool" | ||
| 499 | /> | ||
| 500 | <Tool | ||
| 501 | Name="VCPostBuildEventTool" | ||
| 502 | /> | ||
| 503 | </Configuration> | ||
| 504 | <Configuration | ||
| 505 | Name="Release|Win32" | ||
| 506 | OutputDirectory="x86\TestZlib$(ConfigurationName)" | ||
| 507 | IntermediateDirectory="x86\TestZlib$(ConfigurationName)\Tmp" | ||
| 508 | ConfigurationType="1" | ||
| 509 | CharacterSet="2" | ||
| 510 | WholeProgramOptimization="1" | ||
| 511 | > | ||
| 512 | <Tool | ||
| 513 | Name="VCPreBuildEventTool" | ||
| 514 | /> | ||
| 515 | <Tool | ||
| 516 | Name="VCCustomBuildTool" | ||
| 517 | /> | ||
| 518 | <Tool | ||
| 519 | Name="VCXMLDataGeneratorTool" | ||
| 520 | /> | ||
| 521 | <Tool | ||
| 522 | Name="VCWebServiceProxyGeneratorTool" | ||
| 523 | /> | ||
| 524 | <Tool | ||
| 525 | Name="VCMIDLTool" | ||
| 526 | /> | ||
| 527 | <Tool | ||
| 528 | Name="VCCLCompilerTool" | ||
| 529 | Optimization="2" | ||
| 530 | InlineFunctionExpansion="1" | ||
| 531 | OmitFramePointers="true" | ||
| 532 | AdditionalIncludeDirectories="..\..\.." | ||
| 533 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | ||
| 534 | StringPooling="true" | ||
| 535 | BasicRuntimeChecks="0" | ||
| 536 | RuntimeLibrary="0" | ||
| 537 | BufferSecurityCheck="false" | ||
| 538 | EnableFunctionLevelLinking="true" | ||
| 539 | UsePrecompiledHeader="0" | ||
| 540 | AssemblerListingLocation="$(IntDir)\" | ||
| 541 | WarningLevel="3" | ||
| 542 | Detect64BitPortabilityProblems="true" | ||
| 543 | DebugInformationFormat="3" | ||
| 544 | /> | ||
| 545 | <Tool | ||
| 546 | Name="VCManagedResourceCompilerTool" | ||
| 547 | /> | ||
| 548 | <Tool | ||
| 549 | Name="VCResourceCompilerTool" | ||
| 550 | /> | ||
| 551 | <Tool | ||
| 552 | Name="VCPreLinkEventTool" | ||
| 553 | /> | ||
| 554 | <Tool | ||
| 555 | Name="VCLinkerTool" | ||
| 556 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj" | ||
| 557 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 558 | LinkIncremental="1" | ||
| 559 | GenerateManifest="false" | ||
| 560 | GenerateDebugInformation="true" | ||
| 561 | SubSystem="1" | ||
| 562 | OptimizeReferences="2" | ||
| 563 | EnableCOMDATFolding="2" | ||
| 564 | OptimizeForWindows98="1" | ||
| 565 | TargetMachine="1" | ||
| 566 | /> | ||
| 567 | <Tool | ||
| 568 | Name="VCALinkTool" | ||
| 569 | /> | ||
| 570 | <Tool | ||
| 571 | Name="VCManifestTool" | ||
| 572 | /> | ||
| 573 | <Tool | ||
| 574 | Name="VCXDCMakeTool" | ||
| 575 | /> | ||
| 576 | <Tool | ||
| 577 | Name="VCBscMakeTool" | ||
| 578 | /> | ||
| 579 | <Tool | ||
| 580 | Name="VCFxCopTool" | ||
| 581 | /> | ||
| 582 | <Tool | ||
| 583 | Name="VCAppVerifierTool" | ||
| 584 | /> | ||
| 585 | <Tool | ||
| 586 | Name="VCWebDeploymentTool" | ||
| 587 | /> | ||
| 588 | <Tool | ||
| 589 | Name="VCPostBuildEventTool" | ||
| 590 | /> | ||
| 591 | </Configuration> | ||
| 592 | <Configuration | ||
| 593 | Name="Release|x64" | ||
| 594 | OutputDirectory="x64\TestZlib$(ConfigurationName)" | ||
| 595 | IntermediateDirectory="x64\TestZlib$(ConfigurationName)\Tmp" | ||
| 596 | ConfigurationType="1" | ||
| 597 | WholeProgramOptimization="1" | ||
| 598 | > | ||
| 599 | <Tool | ||
| 600 | Name="VCPreBuildEventTool" | ||
| 601 | /> | ||
| 602 | <Tool | ||
| 603 | Name="VCCustomBuildTool" | ||
| 604 | /> | ||
| 605 | <Tool | ||
| 606 | Name="VCXMLDataGeneratorTool" | ||
| 607 | /> | ||
| 608 | <Tool | ||
| 609 | Name="VCWebServiceProxyGeneratorTool" | ||
| 610 | /> | ||
| 611 | <Tool | ||
| 612 | Name="VCMIDLTool" | ||
| 613 | /> | ||
| 614 | <Tool | ||
| 615 | Name="VCCLCompilerTool" | ||
| 616 | AdditionalIncludeDirectories="..\..\.." | ||
| 617 | PreprocessorDefinitions="ASMV;ASMINF;WIN32;ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | ||
| 618 | BasicRuntimeChecks="0" | ||
| 619 | RuntimeLibrary="2" | ||
| 620 | BufferSecurityCheck="false" | ||
| 621 | AssemblerListingLocation="$(IntDir)\" | ||
| 622 | /> | ||
| 623 | <Tool | ||
| 624 | Name="VCManagedResourceCompilerTool" | ||
| 625 | /> | ||
| 626 | <Tool | ||
| 627 | Name="VCResourceCompilerTool" | ||
| 628 | /> | ||
| 629 | <Tool | ||
| 630 | Name="VCPreLinkEventTool" | ||
| 631 | /> | ||
| 632 | <Tool | ||
| 633 | Name="VCLinkerTool" | ||
| 634 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj" | ||
| 635 | GenerateManifest="false" | ||
| 636 | /> | ||
| 637 | <Tool | ||
| 638 | Name="VCALinkTool" | ||
| 639 | /> | ||
| 640 | <Tool | ||
| 641 | Name="VCManifestTool" | ||
| 642 | /> | ||
| 643 | <Tool | ||
| 644 | Name="VCXDCMakeTool" | ||
| 645 | /> | ||
| 646 | <Tool | ||
| 647 | Name="VCBscMakeTool" | ||
| 648 | /> | ||
| 649 | <Tool | ||
| 650 | Name="VCFxCopTool" | ||
| 651 | /> | ||
| 652 | <Tool | ||
| 653 | Name="VCAppVerifierTool" | ||
| 654 | /> | ||
| 655 | <Tool | ||
| 656 | Name="VCWebDeploymentTool" | ||
| 657 | /> | ||
| 658 | <Tool | ||
| 659 | Name="VCPostBuildEventTool" | ||
| 660 | /> | ||
| 661 | </Configuration> | ||
| 662 | <Configuration | ||
| 663 | Name="Release|Itanium" | ||
| 664 | OutputDirectory="ia64\TestZlib$(ConfigurationName)" | ||
| 665 | IntermediateDirectory="ia64\TestZlib$(ConfigurationName)\Tmp" | ||
| 666 | ConfigurationType="1" | ||
| 667 | CharacterSet="2" | ||
| 668 | WholeProgramOptimization="1" | ||
| 669 | > | ||
| 670 | <Tool | ||
| 671 | Name="VCPreBuildEventTool" | ||
| 672 | /> | ||
| 673 | <Tool | ||
| 674 | Name="VCCustomBuildTool" | ||
| 675 | /> | ||
| 676 | <Tool | ||
| 677 | Name="VCXMLDataGeneratorTool" | ||
| 678 | /> | ||
| 679 | <Tool | ||
| 680 | Name="VCWebServiceProxyGeneratorTool" | ||
| 681 | /> | ||
| 682 | <Tool | ||
| 683 | Name="VCMIDLTool" | ||
| 684 | TargetEnvironment="2" | ||
| 685 | /> | ||
| 686 | <Tool | ||
| 687 | Name="VCCLCompilerTool" | ||
| 688 | Optimization="2" | ||
| 689 | InlineFunctionExpansion="1" | ||
| 690 | OmitFramePointers="true" | ||
| 691 | AdditionalIncludeDirectories="..\..\.." | ||
| 692 | PreprocessorDefinitions="ZLIB_WINAPI;NDEBUG;_CONSOLE;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | ||
| 693 | StringPooling="true" | ||
| 694 | BasicRuntimeChecks="0" | ||
| 695 | RuntimeLibrary="2" | ||
| 696 | BufferSecurityCheck="false" | ||
| 697 | EnableFunctionLevelLinking="true" | ||
| 698 | UsePrecompiledHeader="0" | ||
| 699 | AssemblerListingLocation="$(IntDir)\" | ||
| 700 | WarningLevel="3" | ||
| 701 | Detect64BitPortabilityProblems="true" | ||
| 702 | DebugInformationFormat="3" | ||
| 703 | /> | ||
| 704 | <Tool | ||
| 705 | Name="VCManagedResourceCompilerTool" | ||
| 706 | /> | ||
| 707 | <Tool | ||
| 708 | Name="VCResourceCompilerTool" | ||
| 709 | /> | ||
| 710 | <Tool | ||
| 711 | Name="VCPreLinkEventTool" | ||
| 712 | /> | ||
| 713 | <Tool | ||
| 714 | Name="VCLinkerTool" | ||
| 715 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 716 | LinkIncremental="1" | ||
| 717 | GenerateManifest="false" | ||
| 718 | GenerateDebugInformation="true" | ||
| 719 | SubSystem="1" | ||
| 720 | OptimizeReferences="2" | ||
| 721 | EnableCOMDATFolding="2" | ||
| 722 | OptimizeForWindows98="1" | ||
| 723 | TargetMachine="5" | ||
| 724 | /> | ||
| 725 | <Tool | ||
| 726 | Name="VCALinkTool" | ||
| 727 | /> | ||
| 728 | <Tool | ||
| 729 | Name="VCManifestTool" | ||
| 730 | /> | ||
| 731 | <Tool | ||
| 732 | Name="VCXDCMakeTool" | ||
| 733 | /> | ||
| 734 | <Tool | ||
| 735 | Name="VCBscMakeTool" | ||
| 736 | /> | ||
| 737 | <Tool | ||
| 738 | Name="VCFxCopTool" | ||
| 739 | /> | ||
| 740 | <Tool | ||
| 741 | Name="VCAppVerifierTool" | ||
| 742 | /> | ||
| 743 | <Tool | ||
| 744 | Name="VCWebDeploymentTool" | ||
| 745 | /> | ||
| 746 | <Tool | ||
| 747 | Name="VCPostBuildEventTool" | ||
| 748 | /> | ||
| 749 | </Configuration> | ||
| 750 | </Configurations> | ||
| 751 | <References> | ||
| 752 | </References> | ||
| 753 | <Files> | ||
| 754 | <Filter | ||
| 755 | Name="Source Files" | ||
| 756 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm" | ||
| 757 | > | ||
| 758 | <File | ||
| 759 | RelativePath="..\..\..\adler32.c" | ||
| 760 | > | ||
| 761 | </File> | ||
| 762 | <File | ||
| 763 | RelativePath="..\..\..\compress.c" | ||
| 764 | > | ||
| 765 | </File> | ||
| 766 | <File | ||
| 767 | RelativePath="..\..\..\crc32.c" | ||
| 768 | > | ||
| 769 | </File> | ||
| 770 | <File | ||
| 771 | RelativePath="..\..\..\deflate.c" | ||
| 772 | > | ||
| 773 | </File> | ||
| 774 | <File | ||
| 775 | RelativePath="..\..\masmx86\gvmat32c.c" | ||
| 776 | > | ||
| 777 | <FileConfiguration | ||
| 778 | Name="Debug|x64" | ||
| 779 | ExcludedFromBuild="true" | ||
| 780 | > | ||
| 781 | <Tool | ||
| 782 | Name="VCCLCompilerTool" | ||
| 783 | /> | ||
| 784 | </FileConfiguration> | ||
| 785 | <FileConfiguration | ||
| 786 | Name="Debug|Itanium" | ||
| 787 | ExcludedFromBuild="true" | ||
| 788 | > | ||
| 789 | <Tool | ||
| 790 | Name="VCCLCompilerTool" | ||
| 791 | /> | ||
| 792 | </FileConfiguration> | ||
| 793 | <FileConfiguration | ||
| 794 | Name="ReleaseWithoutAsm|x64" | ||
| 795 | ExcludedFromBuild="true" | ||
| 796 | > | ||
| 797 | <Tool | ||
| 798 | Name="VCCLCompilerTool" | ||
| 799 | /> | ||
| 800 | </FileConfiguration> | ||
| 801 | <FileConfiguration | ||
| 802 | Name="ReleaseWithoutAsm|Itanium" | ||
| 803 | ExcludedFromBuild="true" | ||
| 804 | > | ||
| 805 | <Tool | ||
| 806 | Name="VCCLCompilerTool" | ||
| 807 | /> | ||
| 808 | </FileConfiguration> | ||
| 809 | <FileConfiguration | ||
| 810 | Name="Release|x64" | ||
| 811 | ExcludedFromBuild="true" | ||
| 812 | > | ||
| 813 | <Tool | ||
| 814 | Name="VCCLCompilerTool" | ||
| 815 | /> | ||
| 816 | </FileConfiguration> | ||
| 817 | <FileConfiguration | ||
| 818 | Name="Release|Itanium" | ||
| 819 | ExcludedFromBuild="true" | ||
| 820 | > | ||
| 821 | <Tool | ||
| 822 | Name="VCCLCompilerTool" | ||
| 823 | /> | ||
| 824 | </FileConfiguration> | ||
| 825 | <FileConfiguration | ||
| 826 | Name="Debug|Win64 (AMD64)" | ||
| 827 | ExcludedFromBuild="TRUE" | ||
| 828 | > | ||
| 829 | <Tool | ||
| 830 | Name="VCCLCompilerTool" | ||
| 831 | /> | ||
| 832 | </FileConfiguration> | ||
| 833 | <FileConfiguration | ||
| 834 | Name="Release|Win64 (AMD64)" | ||
| 835 | ExcludedFromBuild="TRUE" | ||
| 836 | > | ||
| 837 | <Tool | ||
| 838 | Name="VCCLCompilerTool" | ||
| 839 | /> | ||
| 840 | </FileConfiguration> | ||
| 841 | <FileConfiguration | ||
| 842 | Name="ReleaseAsm|Win64 (AMD64)" | ||
| 843 | ExcludedFromBuild="TRUE" | ||
| 844 | > | ||
| 845 | <Tool | ||
| 846 | Name="VCCLCompilerTool" | ||
| 847 | /> | ||
| 848 | </FileConfiguration> | ||
| 849 | </File> | ||
| 850 | <File | ||
| 851 | RelativePath="..\..\..\infback.c" | ||
| 852 | > | ||
| 853 | </File> | ||
| 854 | <File | ||
| 855 | RelativePath="..\..\masmx64\inffas8664.c" | ||
| 856 | > | ||
| 857 | <FileConfiguration | ||
| 858 | Name="Debug|Win32" | ||
| 859 | ExcludedFromBuild="true" | ||
| 860 | > | ||
| 861 | <Tool | ||
| 862 | Name="VCCLCompilerTool" | ||
| 863 | /> | ||
| 864 | </FileConfiguration> | ||
| 865 | <FileConfiguration | ||
| 866 | Name="Debug|Itanium" | ||
| 867 | ExcludedFromBuild="true" | ||
| 868 | > | ||
| 869 | <Tool | ||
| 870 | Name="VCCLCompilerTool" | ||
| 871 | /> | ||
| 872 | </FileConfiguration> | ||
| 873 | <FileConfiguration | ||
| 874 | Name="ReleaseWithoutAsm|Win32" | ||
| 875 | ExcludedFromBuild="true" | ||
| 876 | > | ||
| 877 | <Tool | ||
| 878 | Name="VCCLCompilerTool" | ||
| 879 | /> | ||
| 880 | </FileConfiguration> | ||
| 881 | <FileConfiguration | ||
| 882 | Name="ReleaseWithoutAsm|Itanium" | ||
| 883 | ExcludedFromBuild="true" | ||
| 884 | > | ||
| 885 | <Tool | ||
| 886 | Name="VCCLCompilerTool" | ||
| 887 | /> | ||
| 888 | </FileConfiguration> | ||
| 889 | <FileConfiguration | ||
| 890 | Name="Release|Win32" | ||
| 891 | ExcludedFromBuild="true" | ||
| 892 | > | ||
| 893 | <Tool | ||
| 894 | Name="VCCLCompilerTool" | ||
| 895 | /> | ||
| 896 | </FileConfiguration> | ||
| 897 | <FileConfiguration | ||
| 898 | Name="Release|Itanium" | ||
| 899 | ExcludedFromBuild="true" | ||
| 900 | > | ||
| 901 | <Tool | ||
| 902 | Name="VCCLCompilerTool" | ||
| 903 | /> | ||
| 904 | </FileConfiguration> | ||
| 905 | </File> | ||
| 906 | <File | ||
| 907 | RelativePath="..\..\..\inffast.c" | ||
| 908 | > | ||
| 909 | </File> | ||
| 910 | <File | ||
| 911 | RelativePath="..\..\..\inflate.c" | ||
| 912 | > | ||
| 913 | </File> | ||
| 914 | <File | ||
| 915 | RelativePath="..\..\..\inftrees.c" | ||
| 916 | > | ||
| 917 | </File> | ||
| 918 | <File | ||
| 919 | RelativePath="..\..\testzlib\testzlib.c" | ||
| 920 | > | ||
| 921 | </File> | ||
| 922 | <File | ||
| 923 | RelativePath="..\..\..\trees.c" | ||
| 924 | > | ||
| 925 | </File> | ||
| 926 | <File | ||
| 927 | RelativePath="..\..\..\uncompr.c" | ||
| 928 | > | ||
| 929 | </File> | ||
| 930 | <File | ||
| 931 | RelativePath="..\..\..\zutil.c" | ||
| 932 | > | ||
| 933 | </File> | ||
| 934 | </Filter> | ||
| 935 | <Filter | ||
| 936 | Name="Header Files" | ||
| 937 | Filter="h;hpp;hxx;hm;inl;inc" | ||
| 938 | > | ||
| 939 | </Filter> | ||
| 940 | <Filter | ||
| 941 | Name="Resource Files" | ||
| 942 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" | ||
| 943 | > | ||
| 944 | </Filter> | ||
| 945 | </Files> | ||
| 946 | <Globals> | ||
| 947 | </Globals> | ||
| 948 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc8/testzlibdll.vcproj b/contrib/vstudio/vc8/testzlibdll.vcproj new file mode 100644 index 00000000..f38ab5e0 --- /dev/null +++ b/contrib/vstudio/vc8/testzlibdll.vcproj | |||
| @@ -0,0 +1,567 @@ | |||
| 1 | <?xml version="1.0" encoding="Windows-1252"?> | ||
| 2 | <VisualStudioProject | ||
| 3 | ProjectType="Visual C++" | ||
| 4 | Version="8,00" | ||
| 5 | Name="TestZlibDll" | ||
| 6 | ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694366A}" | ||
| 7 | Keyword="Win32Proj" | ||
| 8 | SignManifests="true" | ||
| 9 | > | ||
| 10 | <Platforms> | ||
| 11 | <Platform | ||
| 12 | Name="Win32" | ||
| 13 | /> | ||
| 14 | <Platform | ||
| 15 | Name="x64" | ||
| 16 | /> | ||
| 17 | <Platform | ||
| 18 | Name="Itanium" | ||
| 19 | /> | ||
| 20 | </Platforms> | ||
| 21 | <ToolFiles> | ||
| 22 | </ToolFiles> | ||
| 23 | <Configurations> | ||
| 24 | <Configuration | ||
| 25 | Name="Debug|Win32" | ||
| 26 | OutputDirectory="x86\TestZlibDll$(ConfigurationName)" | ||
| 27 | IntermediateDirectory="x86\TestZlibDll$(ConfigurationName)\Tmp" | ||
| 28 | ConfigurationType="1" | ||
| 29 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 30 | CharacterSet="2" | ||
| 31 | > | ||
| 32 | <Tool | ||
| 33 | Name="VCPreBuildEventTool" | ||
| 34 | /> | ||
| 35 | <Tool | ||
| 36 | Name="VCCustomBuildTool" | ||
| 37 | /> | ||
| 38 | <Tool | ||
| 39 | Name="VCXMLDataGeneratorTool" | ||
| 40 | /> | ||
| 41 | <Tool | ||
| 42 | Name="VCWebServiceProxyGeneratorTool" | ||
| 43 | /> | ||
| 44 | <Tool | ||
| 45 | Name="VCMIDLTool" | ||
| 46 | /> | ||
| 47 | <Tool | ||
| 48 | Name="VCCLCompilerTool" | ||
| 49 | Optimization="0" | ||
| 50 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 51 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE" | ||
| 52 | MinimalRebuild="true" | ||
| 53 | BasicRuntimeChecks="0" | ||
| 54 | RuntimeLibrary="1" | ||
| 55 | BufferSecurityCheck="false" | ||
| 56 | UsePrecompiledHeader="0" | ||
| 57 | AssemblerListingLocation="$(IntDir)\" | ||
| 58 | WarningLevel="3" | ||
| 59 | Detect64BitPortabilityProblems="true" | ||
| 60 | DebugInformationFormat="4" | ||
| 61 | /> | ||
| 62 | <Tool | ||
| 63 | Name="VCManagedResourceCompilerTool" | ||
| 64 | /> | ||
| 65 | <Tool | ||
| 66 | Name="VCResourceCompilerTool" | ||
| 67 | /> | ||
| 68 | <Tool | ||
| 69 | Name="VCPreLinkEventTool" | ||
| 70 | /> | ||
| 71 | <Tool | ||
| 72 | Name="VCLinkerTool" | ||
| 73 | AdditionalDependencies="x86\ZlibDllDebug\zlibwapi.lib" | ||
| 74 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 75 | LinkIncremental="2" | ||
| 76 | GenerateManifest="false" | ||
| 77 | GenerateDebugInformation="true" | ||
| 78 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
| 79 | SubSystem="1" | ||
| 80 | TargetMachine="1" | ||
| 81 | /> | ||
| 82 | <Tool | ||
| 83 | Name="VCALinkTool" | ||
| 84 | /> | ||
| 85 | <Tool | ||
| 86 | Name="VCManifestTool" | ||
| 87 | /> | ||
| 88 | <Tool | ||
| 89 | Name="VCXDCMakeTool" | ||
| 90 | /> | ||
| 91 | <Tool | ||
| 92 | Name="VCBscMakeTool" | ||
| 93 | /> | ||
| 94 | <Tool | ||
| 95 | Name="VCFxCopTool" | ||
| 96 | /> | ||
| 97 | <Tool | ||
| 98 | Name="VCAppVerifierTool" | ||
| 99 | /> | ||
| 100 | <Tool | ||
| 101 | Name="VCWebDeploymentTool" | ||
| 102 | /> | ||
| 103 | <Tool | ||
| 104 | Name="VCPostBuildEventTool" | ||
| 105 | /> | ||
| 106 | </Configuration> | ||
| 107 | <Configuration | ||
| 108 | Name="Debug|x64" | ||
| 109 | OutputDirectory="x64\TestZlibDll$(ConfigurationName)" | ||
| 110 | IntermediateDirectory="x64\TestZlibDll$(ConfigurationName)\Tmp" | ||
| 111 | ConfigurationType="1" | ||
| 112 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 113 | CharacterSet="2" | ||
| 114 | > | ||
| 115 | <Tool | ||
| 116 | Name="VCPreBuildEventTool" | ||
| 117 | /> | ||
| 118 | <Tool | ||
| 119 | Name="VCCustomBuildTool" | ||
| 120 | /> | ||
| 121 | <Tool | ||
| 122 | Name="VCXMLDataGeneratorTool" | ||
| 123 | /> | ||
| 124 | <Tool | ||
| 125 | Name="VCWebServiceProxyGeneratorTool" | ||
| 126 | /> | ||
| 127 | <Tool | ||
| 128 | Name="VCMIDLTool" | ||
| 129 | TargetEnvironment="3" | ||
| 130 | /> | ||
| 131 | <Tool | ||
| 132 | Name="VCCLCompilerTool" | ||
| 133 | Optimization="0" | ||
| 134 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 135 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | ||
| 136 | MinimalRebuild="true" | ||
| 137 | BasicRuntimeChecks="0" | ||
| 138 | RuntimeLibrary="3" | ||
| 139 | BufferSecurityCheck="false" | ||
| 140 | UsePrecompiledHeader="0" | ||
| 141 | AssemblerListingLocation="$(IntDir)\" | ||
| 142 | WarningLevel="3" | ||
| 143 | Detect64BitPortabilityProblems="true" | ||
| 144 | DebugInformationFormat="3" | ||
| 145 | /> | ||
| 146 | <Tool | ||
| 147 | Name="VCManagedResourceCompilerTool" | ||
| 148 | /> | ||
| 149 | <Tool | ||
| 150 | Name="VCResourceCompilerTool" | ||
| 151 | /> | ||
| 152 | <Tool | ||
| 153 | Name="VCPreLinkEventTool" | ||
| 154 | /> | ||
| 155 | <Tool | ||
| 156 | Name="VCLinkerTool" | ||
| 157 | AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib" | ||
| 158 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 159 | LinkIncremental="2" | ||
| 160 | GenerateManifest="false" | ||
| 161 | GenerateDebugInformation="true" | ||
| 162 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
| 163 | SubSystem="1" | ||
| 164 | TargetMachine="17" | ||
| 165 | /> | ||
| 166 | <Tool | ||
| 167 | Name="VCALinkTool" | ||
| 168 | /> | ||
| 169 | <Tool | ||
| 170 | Name="VCManifestTool" | ||
| 171 | /> | ||
| 172 | <Tool | ||
| 173 | Name="VCXDCMakeTool" | ||
| 174 | /> | ||
| 175 | <Tool | ||
| 176 | Name="VCBscMakeTool" | ||
| 177 | /> | ||
| 178 | <Tool | ||
| 179 | Name="VCFxCopTool" | ||
| 180 | /> | ||
| 181 | <Tool | ||
| 182 | Name="VCAppVerifierTool" | ||
| 183 | /> | ||
| 184 | <Tool | ||
| 185 | Name="VCWebDeploymentTool" | ||
| 186 | /> | ||
| 187 | <Tool | ||
| 188 | Name="VCPostBuildEventTool" | ||
| 189 | /> | ||
| 190 | </Configuration> | ||
| 191 | <Configuration | ||
| 192 | Name="Debug|Itanium" | ||
| 193 | OutputDirectory="ia64\TestZlibDll$(ConfigurationName)" | ||
| 194 | IntermediateDirectory="ia64\TestZlibDll$(ConfigurationName)\Tmp" | ||
| 195 | ConfigurationType="1" | ||
| 196 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 197 | CharacterSet="2" | ||
| 198 | > | ||
| 199 | <Tool | ||
| 200 | Name="VCPreBuildEventTool" | ||
| 201 | /> | ||
| 202 | <Tool | ||
| 203 | Name="VCCustomBuildTool" | ||
| 204 | /> | ||
| 205 | <Tool | ||
| 206 | Name="VCXMLDataGeneratorTool" | ||
| 207 | /> | ||
| 208 | <Tool | ||
| 209 | Name="VCWebServiceProxyGeneratorTool" | ||
| 210 | /> | ||
| 211 | <Tool | ||
| 212 | Name="VCMIDLTool" | ||
| 213 | TargetEnvironment="2" | ||
| 214 | /> | ||
| 215 | <Tool | ||
| 216 | Name="VCCLCompilerTool" | ||
| 217 | Optimization="0" | ||
| 218 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 219 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64" | ||
| 220 | MinimalRebuild="true" | ||
| 221 | BasicRuntimeChecks="0" | ||
| 222 | RuntimeLibrary="3" | ||
| 223 | BufferSecurityCheck="false" | ||
| 224 | UsePrecompiledHeader="0" | ||
| 225 | AssemblerListingLocation="$(IntDir)\" | ||
| 226 | WarningLevel="3" | ||
| 227 | Detect64BitPortabilityProblems="true" | ||
| 228 | DebugInformationFormat="3" | ||
| 229 | /> | ||
| 230 | <Tool | ||
| 231 | Name="VCManagedResourceCompilerTool" | ||
| 232 | /> | ||
| 233 | <Tool | ||
| 234 | Name="VCResourceCompilerTool" | ||
| 235 | /> | ||
| 236 | <Tool | ||
| 237 | Name="VCPreLinkEventTool" | ||
| 238 | /> | ||
| 239 | <Tool | ||
| 240 | Name="VCLinkerTool" | ||
| 241 | AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib" | ||
| 242 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 243 | LinkIncremental="2" | ||
| 244 | GenerateManifest="false" | ||
| 245 | GenerateDebugInformation="true" | ||
| 246 | ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||
| 247 | SubSystem="1" | ||
| 248 | TargetMachine="5" | ||
| 249 | /> | ||
| 250 | <Tool | ||
| 251 | Name="VCALinkTool" | ||
| 252 | /> | ||
| 253 | <Tool | ||
| 254 | Name="VCManifestTool" | ||
| 255 | /> | ||
| 256 | <Tool | ||
| 257 | Name="VCXDCMakeTool" | ||
| 258 | /> | ||
| 259 | <Tool | ||
| 260 | Name="VCBscMakeTool" | ||
| 261 | /> | ||
| 262 | <Tool | ||
| 263 | Name="VCFxCopTool" | ||
| 264 | /> | ||
| 265 | <Tool | ||
| 266 | Name="VCAppVerifierTool" | ||
| 267 | /> | ||
| 268 | <Tool | ||
| 269 | Name="VCWebDeploymentTool" | ||
| 270 | /> | ||
| 271 | <Tool | ||
| 272 | Name="VCPostBuildEventTool" | ||
| 273 | /> | ||
| 274 | </Configuration> | ||
| 275 | <Configuration | ||
| 276 | Name="Release|Win32" | ||
| 277 | OutputDirectory="x86\TestZlibDll$(ConfigurationName)" | ||
| 278 | IntermediateDirectory="x86\TestZlibDll$(ConfigurationName)\Tmp" | ||
| 279 | ConfigurationType="1" | ||
| 280 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 281 | CharacterSet="2" | ||
| 282 | > | ||
| 283 | <Tool | ||
| 284 | Name="VCPreBuildEventTool" | ||
| 285 | /> | ||
| 286 | <Tool | ||
| 287 | Name="VCCustomBuildTool" | ||
| 288 | /> | ||
| 289 | <Tool | ||
| 290 | Name="VCXMLDataGeneratorTool" | ||
| 291 | /> | ||
| 292 | <Tool | ||
| 293 | Name="VCWebServiceProxyGeneratorTool" | ||
| 294 | /> | ||
| 295 | <Tool | ||
| 296 | Name="VCMIDLTool" | ||
| 297 | /> | ||
| 298 | <Tool | ||
| 299 | Name="VCCLCompilerTool" | ||
| 300 | Optimization="2" | ||
| 301 | InlineFunctionExpansion="1" | ||
| 302 | OmitFramePointers="true" | ||
| 303 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 304 | PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE" | ||
| 305 | StringPooling="true" | ||
| 306 | BasicRuntimeChecks="0" | ||
| 307 | RuntimeLibrary="0" | ||
| 308 | BufferSecurityCheck="false" | ||
| 309 | EnableFunctionLevelLinking="true" | ||
| 310 | UsePrecompiledHeader="0" | ||
| 311 | AssemblerListingLocation="$(IntDir)\" | ||
| 312 | WarningLevel="3" | ||
| 313 | Detect64BitPortabilityProblems="true" | ||
| 314 | DebugInformationFormat="3" | ||
| 315 | /> | ||
| 316 | <Tool | ||
| 317 | Name="VCManagedResourceCompilerTool" | ||
| 318 | /> | ||
| 319 | <Tool | ||
| 320 | Name="VCResourceCompilerTool" | ||
| 321 | /> | ||
| 322 | <Tool | ||
| 323 | Name="VCPreLinkEventTool" | ||
| 324 | /> | ||
| 325 | <Tool | ||
| 326 | Name="VCLinkerTool" | ||
| 327 | AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib" | ||
| 328 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 329 | LinkIncremental="1" | ||
| 330 | GenerateManifest="false" | ||
| 331 | GenerateDebugInformation="true" | ||
| 332 | SubSystem="1" | ||
| 333 | OptimizeReferences="2" | ||
| 334 | EnableCOMDATFolding="2" | ||
| 335 | OptimizeForWindows98="1" | ||
| 336 | TargetMachine="1" | ||
| 337 | /> | ||
| 338 | <Tool | ||
| 339 | Name="VCALinkTool" | ||
| 340 | /> | ||
| 341 | <Tool | ||
| 342 | Name="VCManifestTool" | ||
| 343 | /> | ||
| 344 | <Tool | ||
| 345 | Name="VCXDCMakeTool" | ||
| 346 | /> | ||
| 347 | <Tool | ||
| 348 | Name="VCBscMakeTool" | ||
| 349 | /> | ||
| 350 | <Tool | ||
| 351 | Name="VCFxCopTool" | ||
| 352 | /> | ||
| 353 | <Tool | ||
| 354 | Name="VCAppVerifierTool" | ||
| 355 | /> | ||
| 356 | <Tool | ||
| 357 | Name="VCWebDeploymentTool" | ||
| 358 | /> | ||
| 359 | <Tool | ||
| 360 | Name="VCPostBuildEventTool" | ||
| 361 | /> | ||
| 362 | </Configuration> | ||
| 363 | <Configuration | ||
| 364 | Name="Release|x64" | ||
| 365 | OutputDirectory="x64\TestZlibDll$(ConfigurationName)" | ||
| 366 | IntermediateDirectory="x64\TestZlibDll$(ConfigurationName)\Tmp" | ||
| 367 | ConfigurationType="1" | ||
| 368 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 369 | CharacterSet="2" | ||
| 370 | > | ||
| 371 | <Tool | ||
| 372 | Name="VCPreBuildEventTool" | ||
| 373 | /> | ||
| 374 | <Tool | ||
| 375 | Name="VCCustomBuildTool" | ||
| 376 | /> | ||
| 377 | <Tool | ||
| 378 | Name="VCXMLDataGeneratorTool" | ||
| 379 | /> | ||
| 380 | <Tool | ||
| 381 | Name="VCWebServiceProxyGeneratorTool" | ||
| 382 | /> | ||
| 383 | <Tool | ||
| 384 | Name="VCMIDLTool" | ||
| 385 | TargetEnvironment="3" | ||
| 386 | /> | ||
| 387 | <Tool | ||
| 388 | Name="VCCLCompilerTool" | ||
| 389 | Optimization="2" | ||
| 390 | InlineFunctionExpansion="1" | ||
| 391 | OmitFramePointers="true" | ||
| 392 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 393 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64" | ||
| 394 | StringPooling="true" | ||
| 395 | BasicRuntimeChecks="0" | ||
| 396 | RuntimeLibrary="2" | ||
| 397 | BufferSecurityCheck="false" | ||
| 398 | EnableFunctionLevelLinking="true" | ||
| 399 | UsePrecompiledHeader="0" | ||
| 400 | AssemblerListingLocation="$(IntDir)\" | ||
| 401 | WarningLevel="3" | ||
| 402 | Detect64BitPortabilityProblems="true" | ||
| 403 | DebugInformationFormat="3" | ||
| 404 | /> | ||
| 405 | <Tool | ||
| 406 | Name="VCManagedResourceCompilerTool" | ||
| 407 | /> | ||
| 408 | <Tool | ||
| 409 | Name="VCResourceCompilerTool" | ||
| 410 | /> | ||
| 411 | <Tool | ||
| 412 | Name="VCPreLinkEventTool" | ||
| 413 | /> | ||
| 414 | <Tool | ||
| 415 | Name="VCLinkerTool" | ||
| 416 | AdditionalDependencies="x64\ZlibDllRelease\zlibwapi.lib" | ||
| 417 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 418 | LinkIncremental="1" | ||
| 419 | GenerateManifest="false" | ||
| 420 | GenerateDebugInformation="true" | ||
| 421 | SubSystem="1" | ||
| 422 | OptimizeReferences="2" | ||
| 423 | EnableCOMDATFolding="2" | ||
| 424 | OptimizeForWindows98="1" | ||
| 425 | TargetMachine="17" | ||
| 426 | /> | ||
| 427 | <Tool | ||
| 428 | Name="VCALinkTool" | ||
| 429 | /> | ||
| 430 | <Tool | ||
| 431 | Name="VCManifestTool" | ||
| 432 | /> | ||
| 433 | <Tool | ||
| 434 | Name="VCXDCMakeTool" | ||
| 435 | /> | ||
| 436 | <Tool | ||
| 437 | Name="VCBscMakeTool" | ||
| 438 | /> | ||
| 439 | <Tool | ||
| 440 | Name="VCFxCopTool" | ||
| 441 | /> | ||
| 442 | <Tool | ||
| 443 | Name="VCAppVerifierTool" | ||
| 444 | /> | ||
| 445 | <Tool | ||
| 446 | Name="VCWebDeploymentTool" | ||
| 447 | /> | ||
| 448 | <Tool | ||
| 449 | Name="VCPostBuildEventTool" | ||
| 450 | /> | ||
| 451 | </Configuration> | ||
| 452 | <Configuration | ||
| 453 | Name="Release|Itanium" | ||
| 454 | OutputDirectory="ia64\TestZlibDll$(ConfigurationName)" | ||
| 455 | IntermediateDirectory="ia64\TestZlibDll$(ConfigurationName)\Tmp" | ||
| 456 | ConfigurationType="1" | ||
| 457 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 458 | CharacterSet="2" | ||
| 459 | > | ||
| 460 | <Tool | ||
| 461 | Name="VCPreBuildEventTool" | ||
| 462 | /> | ||
| 463 | <Tool | ||
| 464 | Name="VCCustomBuildTool" | ||
| 465 | /> | ||
| 466 | <Tool | ||
| 467 | Name="VCXMLDataGeneratorTool" | ||
| 468 | /> | ||
| 469 | <Tool | ||
| 470 | Name="VCWebServiceProxyGeneratorTool" | ||
| 471 | /> | ||
| 472 | <Tool | ||
| 473 | Name="VCMIDLTool" | ||
| 474 | TargetEnvironment="2" | ||
| 475 | /> | ||
| 476 | <Tool | ||
| 477 | Name="VCCLCompilerTool" | ||
| 478 | Optimization="2" | ||
| 479 | InlineFunctionExpansion="1" | ||
| 480 | OmitFramePointers="true" | ||
| 481 | AdditionalIncludeDirectories="..\..\..;..\..\minizip" | ||
| 482 | PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64" | ||
| 483 | StringPooling="true" | ||
| 484 | BasicRuntimeChecks="0" | ||
| 485 | RuntimeLibrary="2" | ||
| 486 | BufferSecurityCheck="false" | ||
| 487 | EnableFunctionLevelLinking="true" | ||
| 488 | UsePrecompiledHeader="0" | ||
| 489 | AssemblerListingLocation="$(IntDir)\" | ||
| 490 | WarningLevel="3" | ||
| 491 | Detect64BitPortabilityProblems="true" | ||
| 492 | DebugInformationFormat="3" | ||
| 493 | /> | ||
| 494 | <Tool | ||
| 495 | Name="VCManagedResourceCompilerTool" | ||
| 496 | /> | ||
| 497 | <Tool | ||
| 498 | Name="VCResourceCompilerTool" | ||
| 499 | /> | ||
| 500 | <Tool | ||
| 501 | Name="VCPreLinkEventTool" | ||
| 502 | /> | ||
| 503 | <Tool | ||
| 504 | Name="VCLinkerTool" | ||
| 505 | AdditionalDependencies="ia64\ZlibDllRelease\zlibwapi.lib" | ||
| 506 | OutputFile="$(OutDir)/testzlib.exe" | ||
| 507 | LinkIncremental="1" | ||
| 508 | GenerateManifest="false" | ||
| 509 | GenerateDebugInformation="true" | ||
| 510 | SubSystem="1" | ||
| 511 | OptimizeReferences="2" | ||
| 512 | EnableCOMDATFolding="2" | ||
| 513 | OptimizeForWindows98="1" | ||
| 514 | TargetMachine="5" | ||
| 515 | /> | ||
| 516 | <Tool | ||
| 517 | Name="VCALinkTool" | ||
| 518 | /> | ||
| 519 | <Tool | ||
| 520 | Name="VCManifestTool" | ||
| 521 | /> | ||
| 522 | <Tool | ||
| 523 | Name="VCXDCMakeTool" | ||
| 524 | /> | ||
| 525 | <Tool | ||
| 526 | Name="VCBscMakeTool" | ||
| 527 | /> | ||
| 528 | <Tool | ||
| 529 | Name="VCFxCopTool" | ||
| 530 | /> | ||
| 531 | <Tool | ||
| 532 | Name="VCAppVerifierTool" | ||
| 533 | /> | ||
| 534 | <Tool | ||
| 535 | Name="VCWebDeploymentTool" | ||
| 536 | /> | ||
| 537 | <Tool | ||
| 538 | Name="VCPostBuildEventTool" | ||
| 539 | /> | ||
| 540 | </Configuration> | ||
| 541 | </Configurations> | ||
| 542 | <References> | ||
| 543 | </References> | ||
| 544 | <Files> | ||
| 545 | <Filter | ||
| 546 | Name="Source Files" | ||
| 547 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm" | ||
| 548 | > | ||
| 549 | <File | ||
| 550 | RelativePath="..\..\testzlib\testzlib.c" | ||
| 551 | > | ||
| 552 | </File> | ||
| 553 | </Filter> | ||
| 554 | <Filter | ||
| 555 | Name="Header Files" | ||
| 556 | Filter="h;hpp;hxx;hm;inl;inc" | ||
| 557 | > | ||
| 558 | </Filter> | ||
| 559 | <Filter | ||
| 560 | Name="Resource Files" | ||
| 561 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" | ||
| 562 | > | ||
| 563 | </Filter> | ||
| 564 | </Files> | ||
| 565 | <Globals> | ||
| 566 | </Globals> | ||
| 567 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc8/zlib.rc b/contrib/vstudio/vc8/zlib.rc new file mode 100644 index 00000000..72cb8b4c --- /dev/null +++ b/contrib/vstudio/vc8/zlib.rc | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | #include <windows.h> | ||
| 2 | |||
| 3 | #define IDR_VERSION1 1 | ||
| 4 | IDR_VERSION1 VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE | ||
| 5 | FILEVERSION 1,2,3,0 | ||
| 6 | PRODUCTVERSION 1,2,3,0 | ||
| 7 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | ||
| 8 | FILEFLAGS 0 | ||
| 9 | FILEOS VOS_DOS_WINDOWS32 | ||
| 10 | FILETYPE VFT_DLL | ||
| 11 | FILESUBTYPE 0 // not used | ||
| 12 | BEGIN | ||
| 13 | BLOCK "StringFileInfo" | ||
| 14 | BEGIN | ||
| 15 | BLOCK "040904E4" | ||
| 16 | //language ID = U.S. English, char set = Windows, Multilingual | ||
| 17 | |||
| 18 | BEGIN | ||
| 19 | VALUE "FileDescription", "zlib data compression library\0" | ||
| 20 | VALUE "FileVersion", "1.2.3.0\0" | ||
| 21 | VALUE "InternalName", "zlib\0" | ||
| 22 | VALUE "OriginalFilename", "zlib.dll\0" | ||
| 23 | VALUE "ProductName", "ZLib.DLL\0" | ||
| 24 | VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | ||
| 25 | VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0" | ||
| 26 | END | ||
| 27 | END | ||
| 28 | BLOCK "VarFileInfo" | ||
| 29 | BEGIN | ||
| 30 | VALUE "Translation", 0x0409, 1252 | ||
| 31 | END | ||
| 32 | END | ||
diff --git a/contrib/vstudio/vc8/zlibstat.vcproj b/contrib/vstudio/vc8/zlibstat.vcproj new file mode 100644 index 00000000..fb97037a --- /dev/null +++ b/contrib/vstudio/vc8/zlibstat.vcproj | |||
| @@ -0,0 +1,870 @@ | |||
| 1 | <?xml version="1.0" encoding="Windows-1252"?> | ||
| 2 | <VisualStudioProject | ||
| 3 | ProjectType="Visual C++" | ||
| 4 | Version="8,00" | ||
| 5 | Name="zlibstat" | ||
| 6 | ProjectGUID="{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" | ||
| 7 | > | ||
| 8 | <Platforms> | ||
| 9 | <Platform | ||
| 10 | Name="Win32" | ||
| 11 | /> | ||
| 12 | <Platform | ||
| 13 | Name="x64" | ||
| 14 | /> | ||
| 15 | <Platform | ||
| 16 | Name="Itanium" | ||
| 17 | /> | ||
| 18 | </Platforms> | ||
| 19 | <ToolFiles> | ||
| 20 | </ToolFiles> | ||
| 21 | <Configurations> | ||
| 22 | <Configuration | ||
| 23 | Name="Debug|Win32" | ||
| 24 | OutputDirectory="x86\ZlibStat$(ConfigurationName)" | ||
| 25 | IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp" | ||
| 26 | ConfigurationType="4" | ||
| 27 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 28 | UseOfMFC="0" | ||
| 29 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 30 | > | ||
| 31 | <Tool | ||
| 32 | Name="VCPreBuildEventTool" | ||
| 33 | /> | ||
| 34 | <Tool | ||
| 35 | Name="VCCustomBuildTool" | ||
| 36 | /> | ||
| 37 | <Tool | ||
| 38 | Name="VCXMLDataGeneratorTool" | ||
| 39 | /> | ||
| 40 | <Tool | ||
| 41 | Name="VCWebServiceProxyGeneratorTool" | ||
| 42 | /> | ||
| 43 | <Tool | ||
| 44 | Name="VCMIDLTool" | ||
| 45 | /> | ||
| 46 | <Tool | ||
| 47 | Name="VCCLCompilerTool" | ||
| 48 | Optimization="0" | ||
| 49 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 50 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | ||
| 51 | ExceptionHandling="0" | ||
| 52 | RuntimeLibrary="1" | ||
| 53 | BufferSecurityCheck="false" | ||
| 54 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 55 | AssemblerListingLocation="$(IntDir)\" | ||
| 56 | ObjectFile="$(IntDir)\" | ||
| 57 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 58 | WarningLevel="3" | ||
| 59 | SuppressStartupBanner="true" | ||
| 60 | Detect64BitPortabilityProblems="true" | ||
| 61 | DebugInformationFormat="1" | ||
| 62 | /> | ||
| 63 | <Tool | ||
| 64 | Name="VCManagedResourceCompilerTool" | ||
| 65 | /> | ||
| 66 | <Tool | ||
| 67 | Name="VCResourceCompilerTool" | ||
| 68 | Culture="1036" | ||
| 69 | /> | ||
| 70 | <Tool | ||
| 71 | Name="VCPreLinkEventTool" | ||
| 72 | /> | ||
| 73 | <Tool | ||
| 74 | Name="VCLibrarianTool" | ||
| 75 | AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB" | ||
| 76 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 77 | SuppressStartupBanner="true" | ||
| 78 | /> | ||
| 79 | <Tool | ||
| 80 | Name="VCALinkTool" | ||
| 81 | /> | ||
| 82 | <Tool | ||
| 83 | Name="VCXDCMakeTool" | ||
| 84 | /> | ||
| 85 | <Tool | ||
| 86 | Name="VCBscMakeTool" | ||
| 87 | /> | ||
| 88 | <Tool | ||
| 89 | Name="VCFxCopTool" | ||
| 90 | /> | ||
| 91 | <Tool | ||
| 92 | Name="VCPostBuildEventTool" | ||
| 93 | /> | ||
| 94 | </Configuration> | ||
| 95 | <Configuration | ||
| 96 | Name="Debug|x64" | ||
| 97 | OutputDirectory="x64\ZlibStat$(ConfigurationName)" | ||
| 98 | IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp" | ||
| 99 | ConfigurationType="4" | ||
| 100 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 101 | UseOfMFC="0" | ||
| 102 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 103 | > | ||
| 104 | <Tool | ||
| 105 | Name="VCPreBuildEventTool" | ||
| 106 | /> | ||
| 107 | <Tool | ||
| 108 | Name="VCCustomBuildTool" | ||
| 109 | /> | ||
| 110 | <Tool | ||
| 111 | Name="VCXMLDataGeneratorTool" | ||
| 112 | /> | ||
| 113 | <Tool | ||
| 114 | Name="VCWebServiceProxyGeneratorTool" | ||
| 115 | /> | ||
| 116 | <Tool | ||
| 117 | Name="VCMIDLTool" | ||
| 118 | TargetEnvironment="3" | ||
| 119 | /> | ||
| 120 | <Tool | ||
| 121 | Name="VCCLCompilerTool" | ||
| 122 | Optimization="0" | ||
| 123 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 124 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | ||
| 125 | ExceptionHandling="0" | ||
| 126 | RuntimeLibrary="3" | ||
| 127 | BufferSecurityCheck="false" | ||
| 128 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 129 | AssemblerListingLocation="$(IntDir)\" | ||
| 130 | ObjectFile="$(IntDir)\" | ||
| 131 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 132 | WarningLevel="3" | ||
| 133 | SuppressStartupBanner="true" | ||
| 134 | Detect64BitPortabilityProblems="true" | ||
| 135 | DebugInformationFormat="1" | ||
| 136 | /> | ||
| 137 | <Tool | ||
| 138 | Name="VCManagedResourceCompilerTool" | ||
| 139 | /> | ||
| 140 | <Tool | ||
| 141 | Name="VCResourceCompilerTool" | ||
| 142 | Culture="1036" | ||
| 143 | /> | ||
| 144 | <Tool | ||
| 145 | Name="VCPreLinkEventTool" | ||
| 146 | /> | ||
| 147 | <Tool | ||
| 148 | Name="VCLibrarianTool" | ||
| 149 | AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB" | ||
| 150 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 151 | SuppressStartupBanner="true" | ||
| 152 | /> | ||
| 153 | <Tool | ||
| 154 | Name="VCALinkTool" | ||
| 155 | /> | ||
| 156 | <Tool | ||
| 157 | Name="VCXDCMakeTool" | ||
| 158 | /> | ||
| 159 | <Tool | ||
| 160 | Name="VCBscMakeTool" | ||
| 161 | /> | ||
| 162 | <Tool | ||
| 163 | Name="VCFxCopTool" | ||
| 164 | /> | ||
| 165 | <Tool | ||
| 166 | Name="VCPostBuildEventTool" | ||
| 167 | /> | ||
| 168 | </Configuration> | ||
| 169 | <Configuration | ||
| 170 | Name="Debug|Itanium" | ||
| 171 | OutputDirectory="ia64\ZlibStat$(ConfigurationName)" | ||
| 172 | IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp" | ||
| 173 | ConfigurationType="4" | ||
| 174 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 175 | UseOfMFC="0" | ||
| 176 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 177 | > | ||
| 178 | <Tool | ||
| 179 | Name="VCPreBuildEventTool" | ||
| 180 | /> | ||
| 181 | <Tool | ||
| 182 | Name="VCCustomBuildTool" | ||
| 183 | /> | ||
| 184 | <Tool | ||
| 185 | Name="VCXMLDataGeneratorTool" | ||
| 186 | /> | ||
| 187 | <Tool | ||
| 188 | Name="VCWebServiceProxyGeneratorTool" | ||
| 189 | /> | ||
| 190 | <Tool | ||
| 191 | Name="VCMIDLTool" | ||
| 192 | TargetEnvironment="2" | ||
| 193 | /> | ||
| 194 | <Tool | ||
| 195 | Name="VCCLCompilerTool" | ||
| 196 | Optimization="0" | ||
| 197 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 198 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | ||
| 199 | ExceptionHandling="0" | ||
| 200 | RuntimeLibrary="3" | ||
| 201 | BufferSecurityCheck="false" | ||
| 202 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 203 | AssemblerListingLocation="$(IntDir)\" | ||
| 204 | ObjectFile="$(IntDir)\" | ||
| 205 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 206 | WarningLevel="3" | ||
| 207 | SuppressStartupBanner="true" | ||
| 208 | Detect64BitPortabilityProblems="true" | ||
| 209 | DebugInformationFormat="1" | ||
| 210 | /> | ||
| 211 | <Tool | ||
| 212 | Name="VCManagedResourceCompilerTool" | ||
| 213 | /> | ||
| 214 | <Tool | ||
| 215 | Name="VCResourceCompilerTool" | ||
| 216 | Culture="1036" | ||
| 217 | /> | ||
| 218 | <Tool | ||
| 219 | Name="VCPreLinkEventTool" | ||
| 220 | /> | ||
| 221 | <Tool | ||
| 222 | Name="VCLibrarianTool" | ||
| 223 | AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB" | ||
| 224 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 225 | SuppressStartupBanner="true" | ||
| 226 | /> | ||
| 227 | <Tool | ||
| 228 | Name="VCALinkTool" | ||
| 229 | /> | ||
| 230 | <Tool | ||
| 231 | Name="VCXDCMakeTool" | ||
| 232 | /> | ||
| 233 | <Tool | ||
| 234 | Name="VCBscMakeTool" | ||
| 235 | /> | ||
| 236 | <Tool | ||
| 237 | Name="VCFxCopTool" | ||
| 238 | /> | ||
| 239 | <Tool | ||
| 240 | Name="VCPostBuildEventTool" | ||
| 241 | /> | ||
| 242 | </Configuration> | ||
| 243 | <Configuration | ||
| 244 | Name="Release|Win32" | ||
| 245 | OutputDirectory="x86\ZlibStat$(ConfigurationName)" | ||
| 246 | IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp" | ||
| 247 | ConfigurationType="4" | ||
| 248 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 249 | UseOfMFC="0" | ||
| 250 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 251 | > | ||
| 252 | <Tool | ||
| 253 | Name="VCPreBuildEventTool" | ||
| 254 | /> | ||
| 255 | <Tool | ||
| 256 | Name="VCCustomBuildTool" | ||
| 257 | /> | ||
| 258 | <Tool | ||
| 259 | Name="VCXMLDataGeneratorTool" | ||
| 260 | /> | ||
| 261 | <Tool | ||
| 262 | Name="VCWebServiceProxyGeneratorTool" | ||
| 263 | /> | ||
| 264 | <Tool | ||
| 265 | Name="VCMIDLTool" | ||
| 266 | /> | ||
| 267 | <Tool | ||
| 268 | Name="VCCLCompilerTool" | ||
| 269 | InlineFunctionExpansion="1" | ||
| 270 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 271 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ASMV;ASMINF" | ||
| 272 | StringPooling="true" | ||
| 273 | ExceptionHandling="0" | ||
| 274 | RuntimeLibrary="0" | ||
| 275 | BufferSecurityCheck="false" | ||
| 276 | EnableFunctionLevelLinking="true" | ||
| 277 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 278 | AssemblerListingLocation="$(IntDir)\" | ||
| 279 | ObjectFile="$(IntDir)\" | ||
| 280 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 281 | WarningLevel="3" | ||
| 282 | SuppressStartupBanner="true" | ||
| 283 | /> | ||
| 284 | <Tool | ||
| 285 | Name="VCManagedResourceCompilerTool" | ||
| 286 | /> | ||
| 287 | <Tool | ||
| 288 | Name="VCResourceCompilerTool" | ||
| 289 | Culture="1036" | ||
| 290 | /> | ||
| 291 | <Tool | ||
| 292 | Name="VCPreLinkEventTool" | ||
| 293 | /> | ||
| 294 | <Tool | ||
| 295 | Name="VCLibrarianTool" | ||
| 296 | AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB" | ||
| 297 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj " | ||
| 298 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 299 | SuppressStartupBanner="true" | ||
| 300 | /> | ||
| 301 | <Tool | ||
| 302 | Name="VCALinkTool" | ||
| 303 | /> | ||
| 304 | <Tool | ||
| 305 | Name="VCXDCMakeTool" | ||
| 306 | /> | ||
| 307 | <Tool | ||
| 308 | Name="VCBscMakeTool" | ||
| 309 | /> | ||
| 310 | <Tool | ||
| 311 | Name="VCFxCopTool" | ||
| 312 | /> | ||
| 313 | <Tool | ||
| 314 | Name="VCPostBuildEventTool" | ||
| 315 | /> | ||
| 316 | </Configuration> | ||
| 317 | <Configuration | ||
| 318 | Name="Release|x64" | ||
| 319 | OutputDirectory="x64\ZlibStat$(ConfigurationName)" | ||
| 320 | IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp" | ||
| 321 | ConfigurationType="4" | ||
| 322 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 323 | UseOfMFC="0" | ||
| 324 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 325 | > | ||
| 326 | <Tool | ||
| 327 | Name="VCPreBuildEventTool" | ||
| 328 | /> | ||
| 329 | <Tool | ||
| 330 | Name="VCCustomBuildTool" | ||
| 331 | /> | ||
| 332 | <Tool | ||
| 333 | Name="VCXMLDataGeneratorTool" | ||
| 334 | /> | ||
| 335 | <Tool | ||
| 336 | Name="VCWebServiceProxyGeneratorTool" | ||
| 337 | /> | ||
| 338 | <Tool | ||
| 339 | Name="VCMIDLTool" | ||
| 340 | TargetEnvironment="3" | ||
| 341 | /> | ||
| 342 | <Tool | ||
| 343 | Name="VCCLCompilerTool" | ||
| 344 | InlineFunctionExpansion="1" | ||
| 345 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 346 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ASMV;ASMINF;WIN64" | ||
| 347 | StringPooling="true" | ||
| 348 | ExceptionHandling="0" | ||
| 349 | RuntimeLibrary="2" | ||
| 350 | BufferSecurityCheck="false" | ||
| 351 | EnableFunctionLevelLinking="true" | ||
| 352 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 353 | AssemblerListingLocation="$(IntDir)\" | ||
| 354 | ObjectFile="$(IntDir)\" | ||
| 355 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 356 | WarningLevel="3" | ||
| 357 | SuppressStartupBanner="true" | ||
| 358 | /> | ||
| 359 | <Tool | ||
| 360 | Name="VCManagedResourceCompilerTool" | ||
| 361 | /> | ||
| 362 | <Tool | ||
| 363 | Name="VCResourceCompilerTool" | ||
| 364 | Culture="1036" | ||
| 365 | /> | ||
| 366 | <Tool | ||
| 367 | Name="VCPreLinkEventTool" | ||
| 368 | /> | ||
| 369 | <Tool | ||
| 370 | Name="VCLibrarianTool" | ||
| 371 | AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB" | ||
| 372 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj " | ||
| 373 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 374 | SuppressStartupBanner="true" | ||
| 375 | /> | ||
| 376 | <Tool | ||
| 377 | Name="VCALinkTool" | ||
| 378 | /> | ||
| 379 | <Tool | ||
| 380 | Name="VCXDCMakeTool" | ||
| 381 | /> | ||
| 382 | <Tool | ||
| 383 | Name="VCBscMakeTool" | ||
| 384 | /> | ||
| 385 | <Tool | ||
| 386 | Name="VCFxCopTool" | ||
| 387 | /> | ||
| 388 | <Tool | ||
| 389 | Name="VCPostBuildEventTool" | ||
| 390 | /> | ||
| 391 | </Configuration> | ||
| 392 | <Configuration | ||
| 393 | Name="Release|Itanium" | ||
| 394 | OutputDirectory="ia64\ZlibStat$(ConfigurationName)" | ||
| 395 | IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp" | ||
| 396 | ConfigurationType="4" | ||
| 397 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 398 | UseOfMFC="0" | ||
| 399 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 400 | > | ||
| 401 | <Tool | ||
| 402 | Name="VCPreBuildEventTool" | ||
| 403 | /> | ||
| 404 | <Tool | ||
| 405 | Name="VCCustomBuildTool" | ||
| 406 | /> | ||
| 407 | <Tool | ||
| 408 | Name="VCXMLDataGeneratorTool" | ||
| 409 | /> | ||
| 410 | <Tool | ||
| 411 | Name="VCWebServiceProxyGeneratorTool" | ||
| 412 | /> | ||
| 413 | <Tool | ||
| 414 | Name="VCMIDLTool" | ||
| 415 | TargetEnvironment="2" | ||
| 416 | /> | ||
| 417 | <Tool | ||
| 418 | Name="VCCLCompilerTool" | ||
| 419 | InlineFunctionExpansion="1" | ||
| 420 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 421 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | ||
| 422 | StringPooling="true" | ||
| 423 | ExceptionHandling="0" | ||
| 424 | RuntimeLibrary="2" | ||
| 425 | BufferSecurityCheck="false" | ||
| 426 | EnableFunctionLevelLinking="true" | ||
| 427 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 428 | AssemblerListingLocation="$(IntDir)\" | ||
| 429 | ObjectFile="$(IntDir)\" | ||
| 430 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 431 | WarningLevel="3" | ||
| 432 | SuppressStartupBanner="true" | ||
| 433 | /> | ||
| 434 | <Tool | ||
| 435 | Name="VCManagedResourceCompilerTool" | ||
| 436 | /> | ||
| 437 | <Tool | ||
| 438 | Name="VCResourceCompilerTool" | ||
| 439 | Culture="1036" | ||
| 440 | /> | ||
| 441 | <Tool | ||
| 442 | Name="VCPreLinkEventTool" | ||
| 443 | /> | ||
| 444 | <Tool | ||
| 445 | Name="VCLibrarianTool" | ||
| 446 | AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB" | ||
| 447 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 448 | SuppressStartupBanner="true" | ||
| 449 | /> | ||
| 450 | <Tool | ||
| 451 | Name="VCALinkTool" | ||
| 452 | /> | ||
| 453 | <Tool | ||
| 454 | Name="VCXDCMakeTool" | ||
| 455 | /> | ||
| 456 | <Tool | ||
| 457 | Name="VCBscMakeTool" | ||
| 458 | /> | ||
| 459 | <Tool | ||
| 460 | Name="VCFxCopTool" | ||
| 461 | /> | ||
| 462 | <Tool | ||
| 463 | Name="VCPostBuildEventTool" | ||
| 464 | /> | ||
| 465 | </Configuration> | ||
| 466 | <Configuration | ||
| 467 | Name="ReleaseWithoutAsm|Win32" | ||
| 468 | OutputDirectory="x86\ZlibStat$(ConfigurationName)" | ||
| 469 | IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp" | ||
| 470 | ConfigurationType="4" | ||
| 471 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 472 | UseOfMFC="0" | ||
| 473 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 474 | > | ||
| 475 | <Tool | ||
| 476 | Name="VCPreBuildEventTool" | ||
| 477 | /> | ||
| 478 | <Tool | ||
| 479 | Name="VCCustomBuildTool" | ||
| 480 | /> | ||
| 481 | <Tool | ||
| 482 | Name="VCXMLDataGeneratorTool" | ||
| 483 | /> | ||
| 484 | <Tool | ||
| 485 | Name="VCWebServiceProxyGeneratorTool" | ||
| 486 | /> | ||
| 487 | <Tool | ||
| 488 | Name="VCMIDLTool" | ||
| 489 | /> | ||
| 490 | <Tool | ||
| 491 | Name="VCCLCompilerTool" | ||
| 492 | InlineFunctionExpansion="1" | ||
| 493 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 494 | PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE" | ||
| 495 | StringPooling="true" | ||
| 496 | ExceptionHandling="0" | ||
| 497 | RuntimeLibrary="0" | ||
| 498 | BufferSecurityCheck="false" | ||
| 499 | EnableFunctionLevelLinking="true" | ||
| 500 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 501 | AssemblerListingLocation="$(IntDir)\" | ||
| 502 | ObjectFile="$(IntDir)\" | ||
| 503 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 504 | WarningLevel="3" | ||
| 505 | SuppressStartupBanner="true" | ||
| 506 | /> | ||
| 507 | <Tool | ||
| 508 | Name="VCManagedResourceCompilerTool" | ||
| 509 | /> | ||
| 510 | <Tool | ||
| 511 | Name="VCResourceCompilerTool" | ||
| 512 | Culture="1036" | ||
| 513 | /> | ||
| 514 | <Tool | ||
| 515 | Name="VCPreLinkEventTool" | ||
| 516 | /> | ||
| 517 | <Tool | ||
| 518 | Name="VCLibrarianTool" | ||
| 519 | AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB" | ||
| 520 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 521 | SuppressStartupBanner="true" | ||
| 522 | /> | ||
| 523 | <Tool | ||
| 524 | Name="VCALinkTool" | ||
| 525 | /> | ||
| 526 | <Tool | ||
| 527 | Name="VCXDCMakeTool" | ||
| 528 | /> | ||
| 529 | <Tool | ||
| 530 | Name="VCBscMakeTool" | ||
| 531 | /> | ||
| 532 | <Tool | ||
| 533 | Name="VCFxCopTool" | ||
| 534 | /> | ||
| 535 | <Tool | ||
| 536 | Name="VCPostBuildEventTool" | ||
| 537 | /> | ||
| 538 | </Configuration> | ||
| 539 | <Configuration | ||
| 540 | Name="ReleaseWithoutAsm|x64" | ||
| 541 | OutputDirectory="x64\ZlibStat$(ConfigurationName)" | ||
| 542 | IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp" | ||
| 543 | ConfigurationType="4" | ||
| 544 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 545 | UseOfMFC="0" | ||
| 546 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 547 | > | ||
| 548 | <Tool | ||
| 549 | Name="VCPreBuildEventTool" | ||
| 550 | /> | ||
| 551 | <Tool | ||
| 552 | Name="VCCustomBuildTool" | ||
| 553 | /> | ||
| 554 | <Tool | ||
| 555 | Name="VCXMLDataGeneratorTool" | ||
| 556 | /> | ||
| 557 | <Tool | ||
| 558 | Name="VCWebServiceProxyGeneratorTool" | ||
| 559 | /> | ||
| 560 | <Tool | ||
| 561 | Name="VCMIDLTool" | ||
| 562 | TargetEnvironment="3" | ||
| 563 | /> | ||
| 564 | <Tool | ||
| 565 | Name="VCCLCompilerTool" | ||
| 566 | InlineFunctionExpansion="1" | ||
| 567 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 568 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | ||
| 569 | StringPooling="true" | ||
| 570 | ExceptionHandling="0" | ||
| 571 | RuntimeLibrary="2" | ||
| 572 | BufferSecurityCheck="false" | ||
| 573 | EnableFunctionLevelLinking="true" | ||
| 574 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 575 | AssemblerListingLocation="$(IntDir)\" | ||
| 576 | ObjectFile="$(IntDir)\" | ||
| 577 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 578 | WarningLevel="3" | ||
| 579 | SuppressStartupBanner="true" | ||
| 580 | /> | ||
| 581 | <Tool | ||
| 582 | Name="VCManagedResourceCompilerTool" | ||
| 583 | /> | ||
| 584 | <Tool | ||
| 585 | Name="VCResourceCompilerTool" | ||
| 586 | Culture="1036" | ||
| 587 | /> | ||
| 588 | <Tool | ||
| 589 | Name="VCPreLinkEventTool" | ||
| 590 | /> | ||
| 591 | <Tool | ||
| 592 | Name="VCLibrarianTool" | ||
| 593 | AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB" | ||
| 594 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 595 | SuppressStartupBanner="true" | ||
| 596 | /> | ||
| 597 | <Tool | ||
| 598 | Name="VCALinkTool" | ||
| 599 | /> | ||
| 600 | <Tool | ||
| 601 | Name="VCXDCMakeTool" | ||
| 602 | /> | ||
| 603 | <Tool | ||
| 604 | Name="VCBscMakeTool" | ||
| 605 | /> | ||
| 606 | <Tool | ||
| 607 | Name="VCFxCopTool" | ||
| 608 | /> | ||
| 609 | <Tool | ||
| 610 | Name="VCPostBuildEventTool" | ||
| 611 | /> | ||
| 612 | </Configuration> | ||
| 613 | <Configuration | ||
| 614 | Name="ReleaseWithoutAsm|Itanium" | ||
| 615 | OutputDirectory="ia64\ZlibStat$(ConfigurationName)" | ||
| 616 | IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp" | ||
| 617 | ConfigurationType="4" | ||
| 618 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 619 | UseOfMFC="0" | ||
| 620 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 621 | > | ||
| 622 | <Tool | ||
| 623 | Name="VCPreBuildEventTool" | ||
| 624 | /> | ||
| 625 | <Tool | ||
| 626 | Name="VCCustomBuildTool" | ||
| 627 | /> | ||
| 628 | <Tool | ||
| 629 | Name="VCXMLDataGeneratorTool" | ||
| 630 | /> | ||
| 631 | <Tool | ||
| 632 | Name="VCWebServiceProxyGeneratorTool" | ||
| 633 | /> | ||
| 634 | <Tool | ||
| 635 | Name="VCMIDLTool" | ||
| 636 | TargetEnvironment="2" | ||
| 637 | /> | ||
| 638 | <Tool | ||
| 639 | Name="VCCLCompilerTool" | ||
| 640 | InlineFunctionExpansion="1" | ||
| 641 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 642 | PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64" | ||
| 643 | StringPooling="true" | ||
| 644 | ExceptionHandling="0" | ||
| 645 | RuntimeLibrary="2" | ||
| 646 | BufferSecurityCheck="false" | ||
| 647 | EnableFunctionLevelLinking="true" | ||
| 648 | PrecompiledHeaderFile="$(IntDir)/zlibstat.pch" | ||
| 649 | AssemblerListingLocation="$(IntDir)\" | ||
| 650 | ObjectFile="$(IntDir)\" | ||
| 651 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 652 | WarningLevel="3" | ||
| 653 | SuppressStartupBanner="true" | ||
| 654 | /> | ||
| 655 | <Tool | ||
| 656 | Name="VCManagedResourceCompilerTool" | ||
| 657 | /> | ||
| 658 | <Tool | ||
| 659 | Name="VCResourceCompilerTool" | ||
| 660 | Culture="1036" | ||
| 661 | /> | ||
| 662 | <Tool | ||
| 663 | Name="VCPreLinkEventTool" | ||
| 664 | /> | ||
| 665 | <Tool | ||
| 666 | Name="VCLibrarianTool" | ||
| 667 | AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB" | ||
| 668 | OutputFile="$(OutDir)\zlibstat.lib" | ||
| 669 | SuppressStartupBanner="true" | ||
| 670 | /> | ||
| 671 | <Tool | ||
| 672 | Name="VCALinkTool" | ||
| 673 | /> | ||
| 674 | <Tool | ||
| 675 | Name="VCXDCMakeTool" | ||
| 676 | /> | ||
| 677 | <Tool | ||
| 678 | Name="VCBscMakeTool" | ||
| 679 | /> | ||
| 680 | <Tool | ||
| 681 | Name="VCFxCopTool" | ||
| 682 | /> | ||
| 683 | <Tool | ||
| 684 | Name="VCPostBuildEventTool" | ||
| 685 | /> | ||
| 686 | </Configuration> | ||
| 687 | </Configurations> | ||
| 688 | <References> | ||
| 689 | </References> | ||
| 690 | <Files> | ||
| 691 | <Filter | ||
| 692 | Name="Source Files" | ||
| 693 | > | ||
| 694 | <File | ||
| 695 | RelativePath="..\..\..\adler32.c" | ||
| 696 | > | ||
| 697 | </File> | ||
| 698 | <File | ||
| 699 | RelativePath="..\..\..\compress.c" | ||
| 700 | > | ||
| 701 | </File> | ||
| 702 | <File | ||
| 703 | RelativePath="..\..\..\crc32.c" | ||
| 704 | > | ||
| 705 | </File> | ||
| 706 | <File | ||
| 707 | RelativePath="..\..\..\deflate.c" | ||
| 708 | > | ||
| 709 | </File> | ||
| 710 | <File | ||
| 711 | RelativePath="..\..\masmx86\gvmat32c.c" | ||
| 712 | > | ||
| 713 | <FileConfiguration | ||
| 714 | Name="Debug|x64" | ||
| 715 | ExcludedFromBuild="true" | ||
| 716 | > | ||
| 717 | <Tool | ||
| 718 | Name="VCCLCompilerTool" | ||
| 719 | /> | ||
| 720 | </FileConfiguration> | ||
| 721 | <FileConfiguration | ||
| 722 | Name="Debug|Itanium" | ||
| 723 | ExcludedFromBuild="true" | ||
| 724 | > | ||
| 725 | <Tool | ||
| 726 | Name="VCCLCompilerTool" | ||
| 727 | /> | ||
| 728 | </FileConfiguration> | ||
| 729 | <FileConfiguration | ||
| 730 | Name="Release|x64" | ||
| 731 | ExcludedFromBuild="true" | ||
| 732 | > | ||
| 733 | <Tool | ||
| 734 | Name="VCCLCompilerTool" | ||
| 735 | /> | ||
| 736 | </FileConfiguration> | ||
| 737 | <FileConfiguration | ||
| 738 | Name="Release|Itanium" | ||
| 739 | ExcludedFromBuild="true" | ||
| 740 | > | ||
| 741 | <Tool | ||
| 742 | Name="VCCLCompilerTool" | ||
| 743 | /> | ||
| 744 | </FileConfiguration> | ||
| 745 | <FileConfiguration | ||
| 746 | Name="ReleaseWithoutAsm|x64" | ||
| 747 | ExcludedFromBuild="true" | ||
| 748 | > | ||
| 749 | <Tool | ||
| 750 | Name="VCCLCompilerTool" | ||
| 751 | /> | ||
| 752 | </FileConfiguration> | ||
| 753 | <FileConfiguration | ||
| 754 | Name="ReleaseWithoutAsm|Itanium" | ||
| 755 | ExcludedFromBuild="true" | ||
| 756 | > | ||
| 757 | <Tool | ||
| 758 | Name="VCCLCompilerTool" | ||
| 759 | /> | ||
| 760 | </FileConfiguration> | ||
| 761 | </File> | ||
| 762 | <File | ||
| 763 | RelativePath="..\..\..\gzio.c" | ||
| 764 | > | ||
| 765 | </File> | ||
| 766 | <File | ||
| 767 | RelativePath="..\..\..\infback.c" | ||
| 768 | > | ||
| 769 | </File> | ||
| 770 | <File | ||
| 771 | RelativePath="..\..\masmx64\inffas8664.c" | ||
| 772 | > | ||
| 773 | <FileConfiguration | ||
| 774 | Name="Debug|Win32" | ||
| 775 | ExcludedFromBuild="true" | ||
| 776 | > | ||
| 777 | <Tool | ||
| 778 | Name="VCCLCompilerTool" | ||
| 779 | /> | ||
| 780 | </FileConfiguration> | ||
| 781 | <FileConfiguration | ||
| 782 | Name="Debug|Itanium" | ||
| 783 | ExcludedFromBuild="true" | ||
| 784 | > | ||
| 785 | <Tool | ||
| 786 | Name="VCCLCompilerTool" | ||
| 787 | /> | ||
| 788 | </FileConfiguration> | ||
| 789 | <FileConfiguration | ||
| 790 | Name="Release|Win32" | ||
| 791 | ExcludedFromBuild="true" | ||
| 792 | > | ||
| 793 | <Tool | ||
| 794 | Name="VCCLCompilerTool" | ||
| 795 | /> | ||
| 796 | </FileConfiguration> | ||
| 797 | <FileConfiguration | ||
| 798 | Name="Release|Itanium" | ||
| 799 | ExcludedFromBuild="true" | ||
| 800 | > | ||
| 801 | <Tool | ||
| 802 | Name="VCCLCompilerTool" | ||
| 803 | /> | ||
| 804 | </FileConfiguration> | ||
| 805 | <FileConfiguration | ||
| 806 | Name="ReleaseWithoutAsm|Win32" | ||
| 807 | ExcludedFromBuild="true" | ||
| 808 | > | ||
| 809 | <Tool | ||
| 810 | Name="VCCLCompilerTool" | ||
| 811 | /> | ||
| 812 | </FileConfiguration> | ||
| 813 | <FileConfiguration | ||
| 814 | Name="ReleaseWithoutAsm|Itanium" | ||
| 815 | ExcludedFromBuild="true" | ||
| 816 | > | ||
| 817 | <Tool | ||
| 818 | Name="VCCLCompilerTool" | ||
| 819 | /> | ||
| 820 | </FileConfiguration> | ||
| 821 | </File> | ||
| 822 | <File | ||
| 823 | RelativePath="..\..\..\inffast.c" | ||
| 824 | > | ||
| 825 | </File> | ||
| 826 | <File | ||
| 827 | RelativePath="..\..\..\inflate.c" | ||
| 828 | > | ||
| 829 | </File> | ||
| 830 | <File | ||
| 831 | RelativePath="..\..\..\inftrees.c" | ||
| 832 | > | ||
| 833 | </File> | ||
| 834 | <File | ||
| 835 | RelativePath="..\..\minizip\ioapi.c" | ||
| 836 | > | ||
| 837 | </File> | ||
| 838 | <File | ||
| 839 | RelativePath="..\..\..\trees.c" | ||
| 840 | > | ||
| 841 | </File> | ||
| 842 | <File | ||
| 843 | RelativePath="..\..\..\uncompr.c" | ||
| 844 | > | ||
| 845 | </File> | ||
| 846 | <File | ||
| 847 | RelativePath="..\..\minizip\unzip.c" | ||
| 848 | > | ||
| 849 | </File> | ||
| 850 | <File | ||
| 851 | RelativePath="..\..\minizip\zip.c" | ||
| 852 | > | ||
| 853 | </File> | ||
| 854 | <File | ||
| 855 | RelativePath=".\zlib.rc" | ||
| 856 | > | ||
| 857 | </File> | ||
| 858 | <File | ||
| 859 | RelativePath=".\zlibvc.def" | ||
| 860 | > | ||
| 861 | </File> | ||
| 862 | <File | ||
| 863 | RelativePath="..\..\..\zutil.c" | ||
| 864 | > | ||
| 865 | </File> | ||
| 866 | </Filter> | ||
| 867 | </Files> | ||
| 868 | <Globals> | ||
| 869 | </Globals> | ||
| 870 | </VisualStudioProject> | ||
diff --git a/contrib/vstudio/vc8/zlibvc.def b/contrib/vstudio/vc8/zlibvc.def new file mode 100644 index 00000000..a40e7154 --- /dev/null +++ b/contrib/vstudio/vc8/zlibvc.def | |||
| @@ -0,0 +1,92 @@ | |||
| 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 | ||
diff --git a/contrib/vstudio/vc8/zlibvc.sln b/contrib/vstudio/vc8/zlibvc.sln new file mode 100644 index 00000000..a815a554 --- /dev/null +++ b/contrib/vstudio/vc8/zlibvc.sln | |||
| @@ -0,0 +1,144 @@ | |||
| 1 |  | ||
| 2 | Microsoft Visual Studio Solution File, Format Version 9.00 | ||
| 3 | # Visual Studio 2005 | ||
| 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | ||
| 5 | EndProject | ||
| 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" | ||
| 7 | EndProject | ||
| 8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlib", "testzlib.vcproj", "{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" | ||
| 9 | EndProject | ||
| 10 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestZlibDll", "testzlibdll.vcproj", "{C52F9E7B-498A-42BE-8DB4-85A15694366A}" | ||
| 11 | ProjectSection(ProjectDependencies) = postProject | ||
| 12 | {8FD826F8-3739-44E6-8CC8-997122E53B8D} = {8FD826F8-3739-44E6-8CC8-997122E53B8D} | ||
| 13 | EndProjectSection | ||
| 14 | EndProject | ||
| 15 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minizip", "minizip.vcproj", "{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | ||
| 16 | ProjectSection(ProjectDependencies) = postProject | ||
| 17 | {8FD826F8-3739-44E6-8CC8-997122E53B8D} = {8FD826F8-3739-44E6-8CC8-997122E53B8D} | ||
| 18 | EndProjectSection | ||
| 19 | EndProject | ||
| 20 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | ||
| 21 | ProjectSection(ProjectDependencies) = postProject | ||
| 22 | {8FD826F8-3739-44E6-8CC8-997122E53B8D} = {8FD826F8-3739-44E6-8CC8-997122E53B8D} | ||
| 23 | EndProjectSection | ||
| 24 | EndProject | ||
| 25 | Global | ||
| 26 | GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
| 27 | Debug|Itanium = Debug|Itanium | ||
| 28 | Debug|Win32 = Debug|Win32 | ||
| 29 | Debug|x64 = Debug|x64 | ||
| 30 | Release|Itanium = Release|Itanium | ||
| 31 | Release|Win32 = Release|Win32 | ||
| 32 | Release|x64 = Release|x64 | ||
| 33 | ReleaseWithoutAsm|Itanium = ReleaseWithoutAsm|Itanium | ||
| 34 | ReleaseWithoutAsm|Win32 = ReleaseWithoutAsm|Win32 | ||
| 35 | ReleaseWithoutAsm|x64 = ReleaseWithoutAsm|x64 | ||
| 36 | EndGlobalSection | ||
| 37 | GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
| 38 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
| 39 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Itanium.Build.0 = Debug|Itanium | ||
| 40 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
| 41 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.Build.0 = Debug|Win32 | ||
| 42 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.ActiveCfg = Debug|x64 | ||
| 43 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.Build.0 = Debug|x64 | ||
| 44 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Itanium.ActiveCfg = Release|Itanium | ||
| 45 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Itanium.Build.0 = Release|Itanium | ||
| 46 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.ActiveCfg = Release|Win32 | ||
| 47 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.Build.0 = Release|Win32 | ||
| 48 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||
| 49 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.Build.0 = ReleaseWithoutAsm|x64 | ||
| 50 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium | ||
| 51 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium | ||
| 52 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||
| 53 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||
| 54 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||
| 55 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||
| 56 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
| 57 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Itanium.Build.0 = Debug|Itanium | ||
| 58 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
| 59 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32 | ||
| 60 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64 | ||
| 61 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64 | ||
| 62 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Itanium.ActiveCfg = Release|Itanium | ||
| 63 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Itanium.Build.0 = Release|Itanium | ||
| 64 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = Release|Win32 | ||
| 65 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = Release|Win32 | ||
| 66 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = Release|x64 | ||
| 67 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = Release|x64 | ||
| 68 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium | ||
| 69 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium | ||
| 70 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||
| 71 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||
| 72 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||
| 73 | {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||
| 74 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
| 75 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.Build.0 = Debug|Itanium | ||
| 76 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
| 77 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32 | ||
| 78 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64 | ||
| 79 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64 | ||
| 80 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Itanium | ||
| 81 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.Build.0 = Release|Itanium | ||
| 82 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32 | ||
| 83 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32 | ||
| 84 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64 | ||
| 85 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64 | ||
| 86 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium | ||
| 87 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium | ||
| 88 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32 | ||
| 89 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32 | ||
| 90 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64 | ||
| 91 | {AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64 | ||
| 92 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
| 93 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Itanium.Build.0 = Debug|Itanium | ||
| 94 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
| 95 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.Build.0 = Debug|Win32 | ||
| 96 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.ActiveCfg = Debug|x64 | ||
| 97 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.Build.0 = Debug|x64 | ||
| 98 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Itanium.ActiveCfg = Release|Itanium | ||
| 99 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Itanium.Build.0 = Release|Itanium | ||
| 100 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.ActiveCfg = Release|Win32 | ||
| 101 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.Build.0 = Release|Win32 | ||
| 102 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.ActiveCfg = Release|x64 | ||
| 103 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.Build.0 = Release|x64 | ||
| 104 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium | ||
| 105 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium | ||
| 106 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium | ||
| 107 | {C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium | ||
| 108 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
| 109 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.Build.0 = Debug|Itanium | ||
| 110 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
| 111 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32 | ||
| 112 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64 | ||
| 113 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64 | ||
| 114 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Itanium | ||
| 115 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.Build.0 = Release|Itanium | ||
| 116 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32 | ||
| 117 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32 | ||
| 118 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64 | ||
| 119 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64 | ||
| 120 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium | ||
| 121 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium | ||
| 122 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium | ||
| 123 | {48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium | ||
| 124 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Itanium.ActiveCfg = Debug|Itanium | ||
| 125 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Itanium.Build.0 = Debug|Itanium | ||
| 126 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
| 127 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.Build.0 = Debug|Win32 | ||
| 128 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.ActiveCfg = Debug|x64 | ||
| 129 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.Build.0 = Debug|x64 | ||
| 130 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Itanium.ActiveCfg = Release|Itanium | ||
| 131 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Itanium.Build.0 = Release|Itanium | ||
| 132 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.ActiveCfg = Release|Win32 | ||
| 133 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.Build.0 = Release|Win32 | ||
| 134 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.ActiveCfg = Release|x64 | ||
| 135 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.Build.0 = Release|x64 | ||
| 136 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium | ||
| 137 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium | ||
| 138 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium | ||
| 139 | {C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium | ||
| 140 | EndGlobalSection | ||
| 141 | GlobalSection(SolutionProperties) = preSolution | ||
| 142 | HideSolutionNode = FALSE | ||
| 143 | EndGlobalSection | ||
| 144 | EndGlobal | ||
diff --git a/contrib/vstudio/vc8/zlibvc.vcproj b/contrib/vstudio/vc8/zlibvc.vcproj new file mode 100644 index 00000000..e717011d --- /dev/null +++ b/contrib/vstudio/vc8/zlibvc.vcproj | |||
| @@ -0,0 +1,1219 @@ | |||
| 1 | <?xml version="1.0" encoding="Windows-1252"?> | ||
| 2 | <VisualStudioProject | ||
| 3 | ProjectType="Visual C++" | ||
| 4 | Version="8,00" | ||
| 5 | Name="zlibvc" | ||
| 6 | ProjectGUID="{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | ||
| 7 | > | ||
| 8 | <Platforms> | ||
| 9 | <Platform | ||
| 10 | Name="Win32" | ||
| 11 | /> | ||
| 12 | <Platform | ||
| 13 | Name="x64" | ||
| 14 | /> | ||
| 15 | <Platform | ||
| 16 | Name="Itanium" | ||
| 17 | /> | ||
| 18 | </Platforms> | ||
| 19 | <ToolFiles> | ||
| 20 | </ToolFiles> | ||
| 21 | <Configurations> | ||
| 22 | <Configuration | ||
| 23 | Name="Debug|Win32" | ||
| 24 | OutputDirectory="x86\ZlibDll$(ConfigurationName)" | ||
| 25 | IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp" | ||
| 26 | ConfigurationType="2" | ||
| 27 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 28 | UseOfMFC="0" | ||
| 29 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 30 | > | ||
| 31 | <Tool | ||
| 32 | Name="VCPreBuildEventTool" | ||
| 33 | /> | ||
| 34 | <Tool | ||
| 35 | Name="VCCustomBuildTool" | ||
| 36 | /> | ||
| 37 | <Tool | ||
| 38 | Name="VCXMLDataGeneratorTool" | ||
| 39 | /> | ||
| 40 | <Tool | ||
| 41 | Name="VCWebServiceProxyGeneratorTool" | ||
| 42 | /> | ||
| 43 | <Tool | ||
| 44 | Name="VCMIDLTool" | ||
| 45 | PreprocessorDefinitions="_DEBUG" | ||
| 46 | MkTypLibCompatible="true" | ||
| 47 | SuppressStartupBanner="true" | ||
| 48 | TargetEnvironment="1" | ||
| 49 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 50 | /> | ||
| 51 | <Tool | ||
| 52 | Name="VCCLCompilerTool" | ||
| 53 | Optimization="0" | ||
| 54 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 55 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI,ASMV,ASMINF" | ||
| 56 | ExceptionHandling="0" | ||
| 57 | RuntimeLibrary="1" | ||
| 58 | BufferSecurityCheck="false" | ||
| 59 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 60 | AssemblerListingLocation="$(IntDir)\" | ||
| 61 | ObjectFile="$(IntDir)\" | ||
| 62 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 63 | BrowseInformation="0" | ||
| 64 | WarningLevel="3" | ||
| 65 | SuppressStartupBanner="true" | ||
| 66 | DebugInformationFormat="4" | ||
| 67 | /> | ||
| 68 | <Tool | ||
| 69 | Name="VCManagedResourceCompilerTool" | ||
| 70 | /> | ||
| 71 | <Tool | ||
| 72 | Name="VCResourceCompilerTool" | ||
| 73 | PreprocessorDefinitions="_DEBUG" | ||
| 74 | Culture="1036" | ||
| 75 | /> | ||
| 76 | <Tool | ||
| 77 | Name="VCPreLinkEventTool" | ||
| 78 | /> | ||
| 79 | <Tool | ||
| 80 | Name="VCLinkerTool" | ||
| 81 | AdditionalOptions="/MACHINE:I386" | ||
| 82 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj" | ||
| 83 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 84 | LinkIncremental="2" | ||
| 85 | SuppressStartupBanner="true" | ||
| 86 | GenerateManifest="false" | ||
| 87 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 88 | GenerateDebugInformation="true" | ||
| 89 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 90 | GenerateMapFile="true" | ||
| 91 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 92 | SubSystem="2" | ||
| 93 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 94 | /> | ||
| 95 | <Tool | ||
| 96 | Name="VCALinkTool" | ||
| 97 | /> | ||
| 98 | <Tool | ||
| 99 | Name="VCManifestTool" | ||
| 100 | /> | ||
| 101 | <Tool | ||
| 102 | Name="VCXDCMakeTool" | ||
| 103 | /> | ||
| 104 | <Tool | ||
| 105 | Name="VCBscMakeTool" | ||
| 106 | /> | ||
| 107 | <Tool | ||
| 108 | Name="VCFxCopTool" | ||
| 109 | /> | ||
| 110 | <Tool | ||
| 111 | Name="VCAppVerifierTool" | ||
| 112 | /> | ||
| 113 | <Tool | ||
| 114 | Name="VCWebDeploymentTool" | ||
| 115 | /> | ||
| 116 | <Tool | ||
| 117 | Name="VCPostBuildEventTool" | ||
| 118 | /> | ||
| 119 | </Configuration> | ||
| 120 | <Configuration | ||
| 121 | Name="Debug|x64" | ||
| 122 | OutputDirectory="x64\ZlibDll$(ConfigurationName)" | ||
| 123 | IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp" | ||
| 124 | ConfigurationType="2" | ||
| 125 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 126 | UseOfMFC="0" | ||
| 127 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 128 | > | ||
| 129 | <Tool | ||
| 130 | Name="VCPreBuildEventTool" | ||
| 131 | /> | ||
| 132 | <Tool | ||
| 133 | Name="VCCustomBuildTool" | ||
| 134 | /> | ||
| 135 | <Tool | ||
| 136 | Name="VCXMLDataGeneratorTool" | ||
| 137 | /> | ||
| 138 | <Tool | ||
| 139 | Name="VCWebServiceProxyGeneratorTool" | ||
| 140 | /> | ||
| 141 | <Tool | ||
| 142 | Name="VCMIDLTool" | ||
| 143 | PreprocessorDefinitions="_DEBUG" | ||
| 144 | MkTypLibCompatible="true" | ||
| 145 | SuppressStartupBanner="true" | ||
| 146 | TargetEnvironment="3" | ||
| 147 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 148 | /> | ||
| 149 | <Tool | ||
| 150 | Name="VCCLCompilerTool" | ||
| 151 | Optimization="0" | ||
| 152 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 153 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI,ASMV,ASMINF;WIN64" | ||
| 154 | ExceptionHandling="0" | ||
| 155 | RuntimeLibrary="3" | ||
| 156 | BufferSecurityCheck="false" | ||
| 157 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 158 | AssemblerListingLocation="$(IntDir)\" | ||
| 159 | ObjectFile="$(IntDir)\" | ||
| 160 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 161 | BrowseInformation="0" | ||
| 162 | WarningLevel="3" | ||
| 163 | SuppressStartupBanner="true" | ||
| 164 | DebugInformationFormat="3" | ||
| 165 | /> | ||
| 166 | <Tool | ||
| 167 | Name="VCManagedResourceCompilerTool" | ||
| 168 | /> | ||
| 169 | <Tool | ||
| 170 | Name="VCResourceCompilerTool" | ||
| 171 | PreprocessorDefinitions="_DEBUG" | ||
| 172 | Culture="1036" | ||
| 173 | /> | ||
| 174 | <Tool | ||
| 175 | Name="VCPreLinkEventTool" | ||
| 176 | /> | ||
| 177 | <Tool | ||
| 178 | Name="VCLinkerTool" | ||
| 179 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj " | ||
| 180 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 181 | LinkIncremental="2" | ||
| 182 | SuppressStartupBanner="true" | ||
| 183 | GenerateManifest="false" | ||
| 184 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 185 | GenerateDebugInformation="true" | ||
| 186 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 187 | GenerateMapFile="true" | ||
| 188 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 189 | SubSystem="2" | ||
| 190 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 191 | TargetMachine="17" | ||
| 192 | /> | ||
| 193 | <Tool | ||
| 194 | Name="VCALinkTool" | ||
| 195 | /> | ||
| 196 | <Tool | ||
| 197 | Name="VCManifestTool" | ||
| 198 | /> | ||
| 199 | <Tool | ||
| 200 | Name="VCXDCMakeTool" | ||
| 201 | /> | ||
| 202 | <Tool | ||
| 203 | Name="VCBscMakeTool" | ||
| 204 | /> | ||
| 205 | <Tool | ||
| 206 | Name="VCFxCopTool" | ||
| 207 | /> | ||
| 208 | <Tool | ||
| 209 | Name="VCAppVerifierTool" | ||
| 210 | /> | ||
| 211 | <Tool | ||
| 212 | Name="VCWebDeploymentTool" | ||
| 213 | /> | ||
| 214 | <Tool | ||
| 215 | Name="VCPostBuildEventTool" | ||
| 216 | /> | ||
| 217 | </Configuration> | ||
| 218 | <Configuration | ||
| 219 | Name="Debug|Itanium" | ||
| 220 | OutputDirectory="ia64\ZlibDll$(ConfigurationName)" | ||
| 221 | IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp" | ||
| 222 | ConfigurationType="2" | ||
| 223 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 224 | UseOfMFC="0" | ||
| 225 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 226 | > | ||
| 227 | <Tool | ||
| 228 | Name="VCPreBuildEventTool" | ||
| 229 | /> | ||
| 230 | <Tool | ||
| 231 | Name="VCCustomBuildTool" | ||
| 232 | /> | ||
| 233 | <Tool | ||
| 234 | Name="VCXMLDataGeneratorTool" | ||
| 235 | /> | ||
| 236 | <Tool | ||
| 237 | Name="VCWebServiceProxyGeneratorTool" | ||
| 238 | /> | ||
| 239 | <Tool | ||
| 240 | Name="VCMIDLTool" | ||
| 241 | PreprocessorDefinitions="_DEBUG" | ||
| 242 | MkTypLibCompatible="true" | ||
| 243 | SuppressStartupBanner="true" | ||
| 244 | TargetEnvironment="2" | ||
| 245 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 246 | /> | ||
| 247 | <Tool | ||
| 248 | Name="VCCLCompilerTool" | ||
| 249 | Optimization="0" | ||
| 250 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 251 | PreprocessorDefinitions="WIN32;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;WIN64" | ||
| 252 | ExceptionHandling="0" | ||
| 253 | RuntimeLibrary="3" | ||
| 254 | BufferSecurityCheck="false" | ||
| 255 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 256 | AssemblerListingLocation="$(IntDir)\" | ||
| 257 | ObjectFile="$(IntDir)\" | ||
| 258 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 259 | BrowseInformation="0" | ||
| 260 | WarningLevel="3" | ||
| 261 | SuppressStartupBanner="true" | ||
| 262 | DebugInformationFormat="3" | ||
| 263 | /> | ||
| 264 | <Tool | ||
| 265 | Name="VCManagedResourceCompilerTool" | ||
| 266 | /> | ||
| 267 | <Tool | ||
| 268 | Name="VCResourceCompilerTool" | ||
| 269 | PreprocessorDefinitions="_DEBUG" | ||
| 270 | Culture="1036" | ||
| 271 | /> | ||
| 272 | <Tool | ||
| 273 | Name="VCPreLinkEventTool" | ||
| 274 | /> | ||
| 275 | <Tool | ||
| 276 | Name="VCLinkerTool" | ||
| 277 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 278 | LinkIncremental="2" | ||
| 279 | SuppressStartupBanner="true" | ||
| 280 | GenerateManifest="false" | ||
| 281 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 282 | GenerateDebugInformation="true" | ||
| 283 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 284 | GenerateMapFile="true" | ||
| 285 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 286 | SubSystem="2" | ||
| 287 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 288 | TargetMachine="5" | ||
| 289 | /> | ||
| 290 | <Tool | ||
| 291 | Name="VCALinkTool" | ||
| 292 | /> | ||
| 293 | <Tool | ||
| 294 | Name="VCManifestTool" | ||
| 295 | /> | ||
| 296 | <Tool | ||
| 297 | Name="VCXDCMakeTool" | ||
| 298 | /> | ||
| 299 | <Tool | ||
| 300 | Name="VCBscMakeTool" | ||
| 301 | /> | ||
| 302 | <Tool | ||
| 303 | Name="VCFxCopTool" | ||
| 304 | /> | ||
| 305 | <Tool | ||
| 306 | Name="VCAppVerifierTool" | ||
| 307 | /> | ||
| 308 | <Tool | ||
| 309 | Name="VCWebDeploymentTool" | ||
| 310 | /> | ||
| 311 | <Tool | ||
| 312 | Name="VCPostBuildEventTool" | ||
| 313 | /> | ||
| 314 | </Configuration> | ||
| 315 | <Configuration | ||
| 316 | Name="ReleaseWithoutAsm|Win32" | ||
| 317 | OutputDirectory="x86\ZlibDll$(ConfigurationName)" | ||
| 318 | IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp" | ||
| 319 | ConfigurationType="2" | ||
| 320 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 321 | UseOfMFC="0" | ||
| 322 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 323 | WholeProgramOptimization="1" | ||
| 324 | > | ||
| 325 | <Tool | ||
| 326 | Name="VCPreBuildEventTool" | ||
| 327 | /> | ||
| 328 | <Tool | ||
| 329 | Name="VCCustomBuildTool" | ||
| 330 | /> | ||
| 331 | <Tool | ||
| 332 | Name="VCXMLDataGeneratorTool" | ||
| 333 | /> | ||
| 334 | <Tool | ||
| 335 | Name="VCWebServiceProxyGeneratorTool" | ||
| 336 | /> | ||
| 337 | <Tool | ||
| 338 | Name="VCMIDLTool" | ||
| 339 | PreprocessorDefinitions="NDEBUG" | ||
| 340 | MkTypLibCompatible="true" | ||
| 341 | SuppressStartupBanner="true" | ||
| 342 | TargetEnvironment="1" | ||
| 343 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 344 | /> | ||
| 345 | <Tool | ||
| 346 | Name="VCCLCompilerTool" | ||
| 347 | InlineFunctionExpansion="1" | ||
| 348 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 349 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI" | ||
| 350 | StringPooling="true" | ||
| 351 | ExceptionHandling="0" | ||
| 352 | RuntimeLibrary="2" | ||
| 353 | BufferSecurityCheck="false" | ||
| 354 | EnableFunctionLevelLinking="true" | ||
| 355 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 356 | AssemblerOutput="2" | ||
| 357 | AssemblerListingLocation="$(IntDir)\" | ||
| 358 | ObjectFile="$(IntDir)\" | ||
| 359 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 360 | BrowseInformation="0" | ||
| 361 | WarningLevel="3" | ||
| 362 | SuppressStartupBanner="true" | ||
| 363 | /> | ||
| 364 | <Tool | ||
| 365 | Name="VCManagedResourceCompilerTool" | ||
| 366 | /> | ||
| 367 | <Tool | ||
| 368 | Name="VCResourceCompilerTool" | ||
| 369 | PreprocessorDefinitions="NDEBUG" | ||
| 370 | Culture="1036" | ||
| 371 | /> | ||
| 372 | <Tool | ||
| 373 | Name="VCPreLinkEventTool" | ||
| 374 | /> | ||
| 375 | <Tool | ||
| 376 | Name="VCLinkerTool" | ||
| 377 | AdditionalOptions="/MACHINE:I386" | ||
| 378 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 379 | LinkIncremental="1" | ||
| 380 | SuppressStartupBanner="true" | ||
| 381 | GenerateManifest="false" | ||
| 382 | IgnoreAllDefaultLibraries="false" | ||
| 383 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 384 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 385 | GenerateMapFile="true" | ||
| 386 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 387 | SubSystem="2" | ||
| 388 | OptimizeForWindows98="1" | ||
| 389 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 390 | /> | ||
| 391 | <Tool | ||
| 392 | Name="VCALinkTool" | ||
| 393 | /> | ||
| 394 | <Tool | ||
| 395 | Name="VCManifestTool" | ||
| 396 | /> | ||
| 397 | <Tool | ||
| 398 | Name="VCXDCMakeTool" | ||
| 399 | /> | ||
| 400 | <Tool | ||
| 401 | Name="VCBscMakeTool" | ||
| 402 | /> | ||
| 403 | <Tool | ||
| 404 | Name="VCFxCopTool" | ||
| 405 | /> | ||
| 406 | <Tool | ||
| 407 | Name="VCAppVerifierTool" | ||
| 408 | /> | ||
| 409 | <Tool | ||
| 410 | Name="VCWebDeploymentTool" | ||
| 411 | /> | ||
| 412 | <Tool | ||
| 413 | Name="VCPostBuildEventTool" | ||
| 414 | /> | ||
| 415 | </Configuration> | ||
| 416 | <Configuration | ||
| 417 | Name="ReleaseWithoutAsm|x64" | ||
| 418 | OutputDirectory="x64\ZlibDll$(ConfigurationName)" | ||
| 419 | IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp" | ||
| 420 | ConfigurationType="2" | ||
| 421 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 422 | UseOfMFC="0" | ||
| 423 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 424 | WholeProgramOptimization="1" | ||
| 425 | > | ||
| 426 | <Tool | ||
| 427 | Name="VCPreBuildEventTool" | ||
| 428 | /> | ||
| 429 | <Tool | ||
| 430 | Name="VCCustomBuildTool" | ||
| 431 | /> | ||
| 432 | <Tool | ||
| 433 | Name="VCXMLDataGeneratorTool" | ||
| 434 | /> | ||
| 435 | <Tool | ||
| 436 | Name="VCWebServiceProxyGeneratorTool" | ||
| 437 | /> | ||
| 438 | <Tool | ||
| 439 | Name="VCMIDLTool" | ||
| 440 | PreprocessorDefinitions="NDEBUG" | ||
| 441 | MkTypLibCompatible="true" | ||
| 442 | SuppressStartupBanner="true" | ||
| 443 | TargetEnvironment="3" | ||
| 444 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 445 | /> | ||
| 446 | <Tool | ||
| 447 | Name="VCCLCompilerTool" | ||
| 448 | InlineFunctionExpansion="1" | ||
| 449 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 450 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI;WIN64" | ||
| 451 | StringPooling="true" | ||
| 452 | ExceptionHandling="0" | ||
| 453 | RuntimeLibrary="2" | ||
| 454 | BufferSecurityCheck="false" | ||
| 455 | EnableFunctionLevelLinking="true" | ||
| 456 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 457 | AssemblerOutput="2" | ||
| 458 | AssemblerListingLocation="$(IntDir)\" | ||
| 459 | ObjectFile="$(IntDir)\" | ||
| 460 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 461 | BrowseInformation="0" | ||
| 462 | WarningLevel="3" | ||
| 463 | SuppressStartupBanner="true" | ||
| 464 | /> | ||
| 465 | <Tool | ||
| 466 | Name="VCManagedResourceCompilerTool" | ||
| 467 | /> | ||
| 468 | <Tool | ||
| 469 | Name="VCResourceCompilerTool" | ||
| 470 | PreprocessorDefinitions="NDEBUG" | ||
| 471 | Culture="1036" | ||
| 472 | /> | ||
| 473 | <Tool | ||
| 474 | Name="VCPreLinkEventTool" | ||
| 475 | /> | ||
| 476 | <Tool | ||
| 477 | Name="VCLinkerTool" | ||
| 478 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 479 | LinkIncremental="1" | ||
| 480 | SuppressStartupBanner="true" | ||
| 481 | GenerateManifest="false" | ||
| 482 | IgnoreAllDefaultLibraries="false" | ||
| 483 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 484 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 485 | GenerateMapFile="true" | ||
| 486 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 487 | SubSystem="2" | ||
| 488 | OptimizeForWindows98="1" | ||
| 489 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 490 | TargetMachine="17" | ||
| 491 | /> | ||
| 492 | <Tool | ||
| 493 | Name="VCALinkTool" | ||
| 494 | /> | ||
| 495 | <Tool | ||
| 496 | Name="VCManifestTool" | ||
| 497 | /> | ||
| 498 | <Tool | ||
| 499 | Name="VCXDCMakeTool" | ||
| 500 | /> | ||
| 501 | <Tool | ||
| 502 | Name="VCBscMakeTool" | ||
| 503 | /> | ||
| 504 | <Tool | ||
| 505 | Name="VCFxCopTool" | ||
| 506 | /> | ||
| 507 | <Tool | ||
| 508 | Name="VCAppVerifierTool" | ||
| 509 | /> | ||
| 510 | <Tool | ||
| 511 | Name="VCWebDeploymentTool" | ||
| 512 | /> | ||
| 513 | <Tool | ||
| 514 | Name="VCPostBuildEventTool" | ||
| 515 | /> | ||
| 516 | </Configuration> | ||
| 517 | <Configuration | ||
| 518 | Name="ReleaseWithoutAsm|Itanium" | ||
| 519 | OutputDirectory="ia64\ZlibDll$(ConfigurationName)" | ||
| 520 | IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp" | ||
| 521 | ConfigurationType="2" | ||
| 522 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 523 | UseOfMFC="0" | ||
| 524 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 525 | WholeProgramOptimization="1" | ||
| 526 | > | ||
| 527 | <Tool | ||
| 528 | Name="VCPreBuildEventTool" | ||
| 529 | /> | ||
| 530 | <Tool | ||
| 531 | Name="VCCustomBuildTool" | ||
| 532 | /> | ||
| 533 | <Tool | ||
| 534 | Name="VCXMLDataGeneratorTool" | ||
| 535 | /> | ||
| 536 | <Tool | ||
| 537 | Name="VCWebServiceProxyGeneratorTool" | ||
| 538 | /> | ||
| 539 | <Tool | ||
| 540 | Name="VCMIDLTool" | ||
| 541 | PreprocessorDefinitions="NDEBUG" | ||
| 542 | MkTypLibCompatible="true" | ||
| 543 | SuppressStartupBanner="true" | ||
| 544 | TargetEnvironment="2" | ||
| 545 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 546 | /> | ||
| 547 | <Tool | ||
| 548 | Name="VCCLCompilerTool" | ||
| 549 | InlineFunctionExpansion="1" | ||
| 550 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 551 | PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI;WIN64" | ||
| 552 | StringPooling="true" | ||
| 553 | ExceptionHandling="0" | ||
| 554 | RuntimeLibrary="2" | ||
| 555 | BufferSecurityCheck="false" | ||
| 556 | EnableFunctionLevelLinking="true" | ||
| 557 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 558 | AssemblerOutput="2" | ||
| 559 | AssemblerListingLocation="$(IntDir)\" | ||
| 560 | ObjectFile="$(IntDir)\" | ||
| 561 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 562 | BrowseInformation="0" | ||
| 563 | WarningLevel="3" | ||
| 564 | SuppressStartupBanner="true" | ||
| 565 | /> | ||
| 566 | <Tool | ||
| 567 | Name="VCManagedResourceCompilerTool" | ||
| 568 | /> | ||
| 569 | <Tool | ||
| 570 | Name="VCResourceCompilerTool" | ||
| 571 | PreprocessorDefinitions="NDEBUG" | ||
| 572 | Culture="1036" | ||
| 573 | /> | ||
| 574 | <Tool | ||
| 575 | Name="VCPreLinkEventTool" | ||
| 576 | /> | ||
| 577 | <Tool | ||
| 578 | Name="VCLinkerTool" | ||
| 579 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 580 | LinkIncremental="1" | ||
| 581 | SuppressStartupBanner="true" | ||
| 582 | GenerateManifest="false" | ||
| 583 | IgnoreAllDefaultLibraries="false" | ||
| 584 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 585 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 586 | GenerateMapFile="true" | ||
| 587 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 588 | SubSystem="2" | ||
| 589 | OptimizeForWindows98="1" | ||
| 590 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 591 | TargetMachine="5" | ||
| 592 | /> | ||
| 593 | <Tool | ||
| 594 | Name="VCALinkTool" | ||
| 595 | /> | ||
| 596 | <Tool | ||
| 597 | Name="VCManifestTool" | ||
| 598 | /> | ||
| 599 | <Tool | ||
| 600 | Name="VCXDCMakeTool" | ||
| 601 | /> | ||
| 602 | <Tool | ||
| 603 | Name="VCBscMakeTool" | ||
| 604 | /> | ||
| 605 | <Tool | ||
| 606 | Name="VCFxCopTool" | ||
| 607 | /> | ||
| 608 | <Tool | ||
| 609 | Name="VCAppVerifierTool" | ||
| 610 | /> | ||
| 611 | <Tool | ||
| 612 | Name="VCWebDeploymentTool" | ||
| 613 | /> | ||
| 614 | <Tool | ||
| 615 | Name="VCPostBuildEventTool" | ||
| 616 | /> | ||
| 617 | </Configuration> | ||
| 618 | <Configuration | ||
| 619 | Name="Release|Win32" | ||
| 620 | OutputDirectory="x86\ZlibDll$(ConfigurationName)" | ||
| 621 | IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp" | ||
| 622 | ConfigurationType="2" | ||
| 623 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 624 | UseOfMFC="0" | ||
| 625 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 626 | WholeProgramOptimization="1" | ||
| 627 | > | ||
| 628 | <Tool | ||
| 629 | Name="VCPreBuildEventTool" | ||
| 630 | /> | ||
| 631 | <Tool | ||
| 632 | Name="VCCustomBuildTool" | ||
| 633 | /> | ||
| 634 | <Tool | ||
| 635 | Name="VCXMLDataGeneratorTool" | ||
| 636 | /> | ||
| 637 | <Tool | ||
| 638 | Name="VCWebServiceProxyGeneratorTool" | ||
| 639 | /> | ||
| 640 | <Tool | ||
| 641 | Name="VCMIDLTool" | ||
| 642 | PreprocessorDefinitions="NDEBUG" | ||
| 643 | MkTypLibCompatible="true" | ||
| 644 | SuppressStartupBanner="true" | ||
| 645 | TargetEnvironment="1" | ||
| 646 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 647 | /> | ||
| 648 | <Tool | ||
| 649 | Name="VCCLCompilerTool" | ||
| 650 | InlineFunctionExpansion="1" | ||
| 651 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 652 | PreprocessorDefinitions="WIN32;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;ASMV;ASMINF" | ||
| 653 | StringPooling="true" | ||
| 654 | ExceptionHandling="0" | ||
| 655 | RuntimeLibrary="2" | ||
| 656 | BufferSecurityCheck="false" | ||
| 657 | EnableFunctionLevelLinking="true" | ||
| 658 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 659 | AssemblerOutput="2" | ||
| 660 | AssemblerListingLocation="$(IntDir)\" | ||
| 661 | ObjectFile="$(IntDir)\" | ||
| 662 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 663 | BrowseInformation="0" | ||
| 664 | WarningLevel="3" | ||
| 665 | SuppressStartupBanner="true" | ||
| 666 | /> | ||
| 667 | <Tool | ||
| 668 | Name="VCManagedResourceCompilerTool" | ||
| 669 | /> | ||
| 670 | <Tool | ||
| 671 | Name="VCResourceCompilerTool" | ||
| 672 | PreprocessorDefinitions="NDEBUG" | ||
| 673 | Culture="1036" | ||
| 674 | /> | ||
| 675 | <Tool | ||
| 676 | Name="VCPreLinkEventTool" | ||
| 677 | /> | ||
| 678 | <Tool | ||
| 679 | Name="VCLinkerTool" | ||
| 680 | AdditionalOptions="/MACHINE:I386" | ||
| 681 | AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj " | ||
| 682 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 683 | LinkIncremental="1" | ||
| 684 | SuppressStartupBanner="true" | ||
| 685 | GenerateManifest="false" | ||
| 686 | IgnoreAllDefaultLibraries="false" | ||
| 687 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 688 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 689 | GenerateMapFile="true" | ||
| 690 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 691 | SubSystem="2" | ||
| 692 | OptimizeForWindows98="1" | ||
| 693 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 694 | /> | ||
| 695 | <Tool | ||
| 696 | Name="VCALinkTool" | ||
| 697 | /> | ||
| 698 | <Tool | ||
| 699 | Name="VCManifestTool" | ||
| 700 | /> | ||
| 701 | <Tool | ||
| 702 | Name="VCXDCMakeTool" | ||
| 703 | /> | ||
| 704 | <Tool | ||
| 705 | Name="VCBscMakeTool" | ||
| 706 | /> | ||
| 707 | <Tool | ||
| 708 | Name="VCFxCopTool" | ||
| 709 | /> | ||
| 710 | <Tool | ||
| 711 | Name="VCAppVerifierTool" | ||
| 712 | /> | ||
| 713 | <Tool | ||
| 714 | Name="VCWebDeploymentTool" | ||
| 715 | /> | ||
| 716 | <Tool | ||
| 717 | Name="VCPostBuildEventTool" | ||
| 718 | /> | ||
| 719 | </Configuration> | ||
| 720 | <Configuration | ||
| 721 | Name="Release|x64" | ||
| 722 | OutputDirectory="x64\ZlibDll$(ConfigurationName)" | ||
| 723 | IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp" | ||
| 724 | ConfigurationType="2" | ||
| 725 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 726 | UseOfMFC="0" | ||
| 727 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 728 | WholeProgramOptimization="1" | ||
| 729 | > | ||
| 730 | <Tool | ||
| 731 | Name="VCPreBuildEventTool" | ||
| 732 | /> | ||
| 733 | <Tool | ||
| 734 | Name="VCCustomBuildTool" | ||
| 735 | /> | ||
| 736 | <Tool | ||
| 737 | Name="VCXMLDataGeneratorTool" | ||
| 738 | /> | ||
| 739 | <Tool | ||
| 740 | Name="VCWebServiceProxyGeneratorTool" | ||
| 741 | /> | ||
| 742 | <Tool | ||
| 743 | Name="VCMIDLTool" | ||
| 744 | PreprocessorDefinitions="NDEBUG" | ||
| 745 | MkTypLibCompatible="true" | ||
| 746 | SuppressStartupBanner="true" | ||
| 747 | TargetEnvironment="3" | ||
| 748 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 749 | /> | ||
| 750 | <Tool | ||
| 751 | Name="VCCLCompilerTool" | ||
| 752 | InlineFunctionExpansion="1" | ||
| 753 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 754 | PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;ASMV;ASMINF;WIN64" | ||
| 755 | StringPooling="true" | ||
| 756 | ExceptionHandling="0" | ||
| 757 | RuntimeLibrary="2" | ||
| 758 | BufferSecurityCheck="false" | ||
| 759 | EnableFunctionLevelLinking="true" | ||
| 760 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 761 | AssemblerOutput="2" | ||
| 762 | AssemblerListingLocation="$(IntDir)\" | ||
| 763 | ObjectFile="$(IntDir)\" | ||
| 764 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 765 | BrowseInformation="0" | ||
| 766 | WarningLevel="3" | ||
| 767 | SuppressStartupBanner="true" | ||
| 768 | /> | ||
| 769 | <Tool | ||
| 770 | Name="VCManagedResourceCompilerTool" | ||
| 771 | /> | ||
| 772 | <Tool | ||
| 773 | Name="VCResourceCompilerTool" | ||
| 774 | PreprocessorDefinitions="NDEBUG" | ||
| 775 | Culture="1036" | ||
| 776 | /> | ||
| 777 | <Tool | ||
| 778 | Name="VCPreLinkEventTool" | ||
| 779 | /> | ||
| 780 | <Tool | ||
| 781 | Name="VCLinkerTool" | ||
| 782 | AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj " | ||
| 783 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 784 | LinkIncremental="1" | ||
| 785 | SuppressStartupBanner="true" | ||
| 786 | GenerateManifest="false" | ||
| 787 | IgnoreAllDefaultLibraries="false" | ||
| 788 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 789 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 790 | GenerateMapFile="true" | ||
| 791 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 792 | SubSystem="2" | ||
| 793 | OptimizeForWindows98="1" | ||
| 794 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 795 | TargetMachine="17" | ||
| 796 | /> | ||
| 797 | <Tool | ||
| 798 | Name="VCALinkTool" | ||
| 799 | /> | ||
| 800 | <Tool | ||
| 801 | Name="VCManifestTool" | ||
| 802 | /> | ||
| 803 | <Tool | ||
| 804 | Name="VCXDCMakeTool" | ||
| 805 | /> | ||
| 806 | <Tool | ||
| 807 | Name="VCBscMakeTool" | ||
| 808 | /> | ||
| 809 | <Tool | ||
| 810 | Name="VCFxCopTool" | ||
| 811 | /> | ||
| 812 | <Tool | ||
| 813 | Name="VCAppVerifierTool" | ||
| 814 | /> | ||
| 815 | <Tool | ||
| 816 | Name="VCWebDeploymentTool" | ||
| 817 | /> | ||
| 818 | <Tool | ||
| 819 | Name="VCPostBuildEventTool" | ||
| 820 | /> | ||
| 821 | </Configuration> | ||
| 822 | <Configuration | ||
| 823 | Name="Release|Itanium" | ||
| 824 | OutputDirectory="ia64\ZlibDll$(ConfigurationName)" | ||
| 825 | IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp" | ||
| 826 | ConfigurationType="2" | ||
| 827 | InheritedPropertySheets="UpgradeFromVC70.vsprops" | ||
| 828 | UseOfMFC="0" | ||
| 829 | ATLMinimizesCRunTimeLibraryUsage="false" | ||
| 830 | WholeProgramOptimization="1" | ||
| 831 | > | ||
| 832 | <Tool | ||
| 833 | Name="VCPreBuildEventTool" | ||
| 834 | /> | ||
| 835 | <Tool | ||
| 836 | Name="VCCustomBuildTool" | ||
| 837 | /> | ||
| 838 | <Tool | ||
| 839 | Name="VCXMLDataGeneratorTool" | ||
| 840 | /> | ||
| 841 | <Tool | ||
| 842 | Name="VCWebServiceProxyGeneratorTool" | ||
| 843 | /> | ||
| 844 | <Tool | ||
| 845 | Name="VCMIDLTool" | ||
| 846 | PreprocessorDefinitions="NDEBUG" | ||
| 847 | MkTypLibCompatible="true" | ||
| 848 | SuppressStartupBanner="true" | ||
| 849 | TargetEnvironment="2" | ||
| 850 | TypeLibraryName="$(OutDir)/zlibvc.tlb" | ||
| 851 | /> | ||
| 852 | <Tool | ||
| 853 | Name="VCCLCompilerTool" | ||
| 854 | InlineFunctionExpansion="1" | ||
| 855 | AdditionalIncludeDirectories="..\..\..;..\..\masmx86" | ||
| 856 | PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;WIN64" | ||
| 857 | StringPooling="true" | ||
| 858 | ExceptionHandling="0" | ||
| 859 | RuntimeLibrary="2" | ||
| 860 | BufferSecurityCheck="false" | ||
| 861 | EnableFunctionLevelLinking="true" | ||
| 862 | PrecompiledHeaderFile="$(IntDir)/zlibvc.pch" | ||
| 863 | AssemblerOutput="2" | ||
| 864 | AssemblerListingLocation="$(IntDir)\" | ||
| 865 | ObjectFile="$(IntDir)\" | ||
| 866 | ProgramDataBaseFileName="$(OutDir)\" | ||
| 867 | BrowseInformation="0" | ||
| 868 | WarningLevel="3" | ||
| 869 | SuppressStartupBanner="true" | ||
| 870 | /> | ||
| 871 | <Tool | ||
| 872 | Name="VCManagedResourceCompilerTool" | ||
| 873 | /> | ||
| 874 | <Tool | ||
| 875 | Name="VCResourceCompilerTool" | ||
| 876 | PreprocessorDefinitions="NDEBUG" | ||
| 877 | Culture="1036" | ||
| 878 | /> | ||
| 879 | <Tool | ||
| 880 | Name="VCPreLinkEventTool" | ||
| 881 | /> | ||
| 882 | <Tool | ||
| 883 | Name="VCLinkerTool" | ||
| 884 | OutputFile="$(OutDir)\zlibwapi.dll" | ||
| 885 | LinkIncremental="1" | ||
| 886 | SuppressStartupBanner="true" | ||
| 887 | GenerateManifest="false" | ||
| 888 | IgnoreAllDefaultLibraries="false" | ||
| 889 | ModuleDefinitionFile=".\zlibvc.def" | ||
| 890 | ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb" | ||
| 891 | GenerateMapFile="true" | ||
| 892 | MapFileName="$(OutDir)/zlibwapi.map" | ||
| 893 | SubSystem="2" | ||
| 894 | OptimizeForWindows98="1" | ||
| 895 | ImportLibrary="$(OutDir)/zlibwapi.lib" | ||
| 896 | TargetMachine="5" | ||
| 897 | /> | ||
| 898 | <Tool | ||
| 899 | Name="VCALinkTool" | ||
| 900 | /> | ||
| 901 | <Tool | ||
| 902 | Name="VCManifestTool" | ||
| 903 | /> | ||
| 904 | <Tool | ||
| 905 | Name="VCXDCMakeTool" | ||
| 906 | /> | ||
| 907 | <Tool | ||
| 908 | Name="VCBscMakeTool" | ||
| 909 | /> | ||
| 910 | <Tool | ||
| 911 | Name="VCFxCopTool" | ||
| 912 | /> | ||
| 913 | <Tool | ||
| 914 | Name="VCAppVerifierTool" | ||
| 915 | /> | ||
| 916 | <Tool | ||
| 917 | Name="VCWebDeploymentTool" | ||
| 918 | /> | ||
| 919 | <Tool | ||
| 920 | Name="VCPostBuildEventTool" | ||
| 921 | /> | ||
| 922 | </Configuration> | ||
| 923 | </Configurations> | ||
| 924 | <References> | ||
| 925 | </References> | ||
| 926 | <Files> | ||
| 927 | <Filter | ||
| 928 | Name="Source Files" | ||
| 929 | Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90" | ||
| 930 | > | ||
| 931 | <File | ||
| 932 | RelativePath="..\..\..\adler32.c" | ||
| 933 | > | ||
| 934 | </File> | ||
| 935 | <File | ||
| 936 | RelativePath="..\..\..\compress.c" | ||
| 937 | > | ||
| 938 | </File> | ||
| 939 | <File | ||
| 940 | RelativePath="..\..\..\crc32.c" | ||
| 941 | > | ||
| 942 | </File> | ||
| 943 | <File | ||
| 944 | RelativePath="..\..\..\deflate.c" | ||
| 945 | > | ||
| 946 | </File> | ||
| 947 | <File | ||
| 948 | RelativePath="..\..\masmx86\gvmat32c.c" | ||
| 949 | > | ||
| 950 | <FileConfiguration | ||
| 951 | Name="Debug|x64" | ||
| 952 | ExcludedFromBuild="true" | ||
| 953 | > | ||
| 954 | <Tool | ||
| 955 | Name="VCCLCompilerTool" | ||
| 956 | /> | ||
| 957 | </FileConfiguration> | ||
| 958 | <FileConfiguration | ||
| 959 | Name="Debug|Itanium" | ||
| 960 | ExcludedFromBuild="true" | ||
| 961 | > | ||
| 962 | <Tool | ||
| 963 | Name="VCCLCompilerTool" | ||
| 964 | /> | ||
| 965 | </FileConfiguration> | ||
| 966 | <FileConfiguration | ||
| 967 | Name="ReleaseWithoutAsm|Win32" | ||
| 968 | ExcludedFromBuild="true" | ||
| 969 | > | ||
| 970 | <Tool | ||
| 971 | Name="VCCLCompilerTool" | ||
| 972 | /> | ||
| 973 | </FileConfiguration> | ||
| 974 | <FileConfiguration | ||
| 975 | Name="ReleaseWithoutAsm|x64" | ||
| 976 | ExcludedFromBuild="true" | ||
| 977 | > | ||
| 978 | <Tool | ||
| 979 | Name="VCCLCompilerTool" | ||
| 980 | /> | ||
| 981 | </FileConfiguration> | ||
| 982 | <FileConfiguration | ||
| 983 | Name="ReleaseWithoutAsm|Itanium" | ||
| 984 | ExcludedFromBuild="true" | ||
| 985 | > | ||
| 986 | <Tool | ||
| 987 | Name="VCCLCompilerTool" | ||
| 988 | /> | ||
| 989 | </FileConfiguration> | ||
| 990 | <FileConfiguration | ||
| 991 | Name="Release|x64" | ||
| 992 | ExcludedFromBuild="true" | ||
| 993 | > | ||
| 994 | <Tool | ||
| 995 | Name="VCCLCompilerTool" | ||
| 996 | /> | ||
| 997 | </FileConfiguration> | ||
| 998 | <FileConfiguration | ||
| 999 | Name="Release|Itanium" | ||
| 1000 | ExcludedFromBuild="true" | ||
| 1001 | > | ||
| 1002 | <Tool | ||
| 1003 | Name="VCCLCompilerTool" | ||
| 1004 | /> | ||
| 1005 | </FileConfiguration> | ||
| 1006 | </File> | ||
| 1007 | <File | ||
| 1008 | RelativePath="..\..\..\gzio.c" | ||
| 1009 | > | ||
| 1010 | </File> | ||
| 1011 | <File | ||
| 1012 | RelativePath="..\..\..\infback.c" | ||
| 1013 | > | ||
| 1014 | </File> | ||
| 1015 | <File | ||
| 1016 | RelativePath="..\..\masmx64\inffas8664.c" | ||
| 1017 | > | ||
| 1018 | <FileConfiguration | ||
| 1019 | Name="Debug|Win32" | ||
| 1020 | ExcludedFromBuild="true" | ||
| 1021 | > | ||
| 1022 | <Tool | ||
| 1023 | Name="VCCLCompilerTool" | ||
| 1024 | /> | ||
| 1025 | </FileConfiguration> | ||
| 1026 | <FileConfiguration | ||
| 1027 | Name="Debug|Itanium" | ||
| 1028 | ExcludedFromBuild="true" | ||
| 1029 | > | ||
| 1030 | <Tool | ||
| 1031 | Name="VCCLCompilerTool" | ||
| 1032 | /> | ||
| 1033 | </FileConfiguration> | ||
| 1034 | <FileConfiguration | ||
| 1035 | Name="ReleaseWithoutAsm|Win32" | ||
| 1036 | ExcludedFromBuild="true" | ||
| 1037 | > | ||
| 1038 | <Tool | ||
| 1039 | Name="VCCLCompilerTool" | ||
| 1040 | /> | ||
| 1041 | </FileConfiguration> | ||
| 1042 | <FileConfiguration | ||
| 1043 | Name="ReleaseWithoutAsm|Itanium" | ||
| 1044 | ExcludedFromBuild="true" | ||
| 1045 | > | ||
| 1046 | <Tool | ||
| 1047 | Name="VCCLCompilerTool" | ||
| 1048 | /> | ||
| 1049 | </FileConfiguration> | ||
| 1050 | <FileConfiguration | ||
| 1051 | Name="Release|Win32" | ||
| 1052 | ExcludedFromBuild="true" | ||
| 1053 | > | ||
| 1054 | <Tool | ||
| 1055 | Name="VCCLCompilerTool" | ||
| 1056 | /> | ||
| 1057 | </FileConfiguration> | ||
| 1058 | <FileConfiguration | ||
| 1059 | Name="Release|Itanium" | ||
| 1060 | ExcludedFromBuild="true" | ||
| 1061 | > | ||
| 1062 | <Tool | ||
| 1063 | Name="VCCLCompilerTool" | ||
| 1064 | /> | ||
| 1065 | </FileConfiguration> | ||
| 1066 | </File> | ||
| 1067 | <File | ||
| 1068 | RelativePath="..\..\..\inffast.c" | ||
| 1069 | > | ||
| 1070 | </File> | ||
| 1071 | <File | ||
| 1072 | RelativePath="..\..\..\inflate.c" | ||
| 1073 | > | ||
| 1074 | </File> | ||
| 1075 | <File | ||
| 1076 | RelativePath="..\..\..\inftrees.c" | ||
| 1077 | > | ||
| 1078 | </File> | ||
| 1079 | <File | ||
| 1080 | RelativePath="..\..\minizip\ioapi.c" | ||
| 1081 | > | ||
| 1082 | </File> | ||
| 1083 | <File | ||
| 1084 | RelativePath="..\..\minizip\iowin32.c" | ||
| 1085 | > | ||
| 1086 | </File> | ||
| 1087 | <File | ||
| 1088 | RelativePath="..\..\..\trees.c" | ||
| 1089 | > | ||
| 1090 | </File> | ||
| 1091 | <File | ||
| 1092 | RelativePath="..\..\..\uncompr.c" | ||
| 1093 | > | ||
| 1094 | </File> | ||
| 1095 | <File | ||
| 1096 | RelativePath="..\..\minizip\unzip.c" | ||
| 1097 | > | ||
| 1098 | <FileConfiguration | ||
| 1099 | Name="Release|Win32" | ||
| 1100 | > | ||
| 1101 | <Tool | ||
| 1102 | Name="VCCLCompilerTool" | ||
| 1103 | AdditionalIncludeDirectories="" | ||
| 1104 | PreprocessorDefinitions="ZLIB_INTERNAL" | ||
| 1105 | /> | ||
| 1106 | </FileConfiguration> | ||
| 1107 | <FileConfiguration | ||
| 1108 | Name="Release|x64" | ||
| 1109 | > | ||
| 1110 | <Tool | ||
| 1111 | Name="VCCLCompilerTool" | ||
| 1112 | AdditionalIncludeDirectories="" | ||
| 1113 | PreprocessorDefinitions="ZLIB_INTERNAL" | ||
| 1114 | /> | ||
| 1115 | </FileConfiguration> | ||
| 1116 | <FileConfiguration | ||
| 1117 | Name="Release|Itanium" | ||
| 1118 | > | ||
| 1119 | <Tool | ||
| 1120 | Name="VCCLCompilerTool" | ||
| 1121 | AdditionalIncludeDirectories="" | ||
| 1122 | PreprocessorDefinitions="ZLIB_INTERNAL" | ||
| 1123 | /> | ||
| 1124 | </FileConfiguration> | ||
| 1125 | </File> | ||
| 1126 | <File | ||
| 1127 | RelativePath="..\..\minizip\zip.c" | ||
| 1128 | > | ||
| 1129 | <FileConfiguration | ||
| 1130 | Name="Release|Win32" | ||
| 1131 | > | ||
| 1132 | <Tool | ||
| 1133 | Name="VCCLCompilerTool" | ||
| 1134 | AdditionalIncludeDirectories="" | ||
| 1135 | PreprocessorDefinitions="ZLIB_INTERNAL" | ||
| 1136 | /> | ||
| 1137 | </FileConfiguration> | ||
| 1138 | <FileConfiguration | ||
| 1139 | Name="Release|x64" | ||
| 1140 | > | ||
| 1141 | <Tool | ||
| 1142 | Name="VCCLCompilerTool" | ||
| 1143 | AdditionalIncludeDirectories="" | ||
| 1144 | PreprocessorDefinitions="ZLIB_INTERNAL" | ||
| 1145 | /> | ||
| 1146 | </FileConfiguration> | ||
| 1147 | <FileConfiguration | ||
| 1148 | Name="Release|Itanium" | ||
| 1149 | > | ||
| 1150 | <Tool | ||
| 1151 | Name="VCCLCompilerTool" | ||
| 1152 | AdditionalIncludeDirectories="" | ||
| 1153 | PreprocessorDefinitions="ZLIB_INTERNAL" | ||
| 1154 | /> | ||
| 1155 | </FileConfiguration> | ||
| 1156 | </File> | ||
| 1157 | <File | ||
| 1158 | RelativePath=".\zlib.rc" | ||
| 1159 | > | ||
| 1160 | </File> | ||
| 1161 | <File | ||
| 1162 | RelativePath=".\zlibvc.def" | ||
| 1163 | > | ||
| 1164 | </File> | ||
| 1165 | <File | ||
| 1166 | RelativePath="..\..\..\zutil.c" | ||
| 1167 | > | ||
| 1168 | </File> | ||
| 1169 | </Filter> | ||
| 1170 | <Filter | ||
| 1171 | Name="Header Files" | ||
| 1172 | Filter="h;hpp;hxx;hm;inl;fi;fd" | ||
| 1173 | > | ||
| 1174 | <File | ||
| 1175 | RelativePath="..\..\..\deflate.h" | ||
| 1176 | > | ||
| 1177 | </File> | ||
| 1178 | <File | ||
| 1179 | RelativePath="..\..\..\infblock.h" | ||
| 1180 | > | ||
| 1181 | </File> | ||
| 1182 | <File | ||
| 1183 | RelativePath="..\..\..\infcodes.h" | ||
| 1184 | > | ||
| 1185 | </File> | ||
| 1186 | <File | ||
| 1187 | RelativePath="..\..\..\inffast.h" | ||
| 1188 | > | ||
| 1189 | </File> | ||
| 1190 | <File | ||
| 1191 | RelativePath="..\..\..\inftrees.h" | ||
| 1192 | > | ||
| 1193 | </File> | ||
| 1194 | <File | ||
| 1195 | RelativePath="..\..\..\infutil.h" | ||
| 1196 | > | ||
| 1197 | </File> | ||
| 1198 | <File | ||
| 1199 | RelativePath="..\..\..\zconf.h" | ||
| 1200 | > | ||
| 1201 | </File> | ||
| 1202 | <File | ||
| 1203 | RelativePath="..\..\..\zlib.h" | ||
| 1204 | > | ||
| 1205 | </File> | ||
| 1206 | <File | ||
| 1207 | RelativePath="..\..\..\zutil.h" | ||
| 1208 | > | ||
| 1209 | </File> | ||
| 1210 | </Filter> | ||
| 1211 | <Filter | ||
| 1212 | Name="Resource Files" | ||
| 1213 | Filter="ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe" | ||
| 1214 | > | ||
| 1215 | </Filter> | ||
| 1216 | </Files> | ||
| 1217 | <Globals> | ||
| 1218 | </Globals> | ||
| 1219 | </VisualStudioProject> | ||
