diff options
| author | Mark Adler <madler@alumni.caltech.edu> | 2013-03-22 17:38:37 -0700 |
|---|---|---|
| committer | Mark Adler <madler@alumni.caltech.edu> | 2013-03-22 17:38:37 -0700 |
| commit | dd5d0940e93f2196a7791b1bf052d68309a7d45f (patch) | |
| tree | 50aed37bc694f65d2060e2bab0fdd89a2b3cebdf /contrib/vstudio/vc11 | |
| parent | a2d71e8e66530c325bfce936f3805ccff5831b62 (diff) | |
| download | zlib-dd5d0940e93f2196a7791b1bf052d68309a7d45f.tar.gz zlib-dd5d0940e93f2196a7791b1bf052d68309a7d45f.tar.bz2 zlib-dd5d0940e93f2196a7791b1bf052d68309a7d45f.zip | |
Add vc11 and vc12 build files to contrib/vstudio.
Diffstat (limited to 'contrib/vstudio/vc11')
| -rw-r--r-- | contrib/vstudio/vc11/zlib.rc | 32 | ||||
| -rw-r--r-- | contrib/vstudio/vc11/zlibvc.sln | 26 | ||||
| -rw-r--r-- | contrib/vstudio/vc11/zlibvc.vcxproj | 204 | ||||
| -rw-r--r-- | contrib/vstudio/vc11/zlibvc.vcxproj.filters | 118 | ||||
| -rw-r--r-- | contrib/vstudio/vc11/zlibvc.vssscc | 10 | ||||
| -rw-r--r-- | contrib/vstudio/vc11/zlibvc11.def | 139 |
6 files changed, 529 insertions, 0 deletions
diff --git a/contrib/vstudio/vc11/zlib.rc b/contrib/vstudio/vc11/zlib.rc new file mode 100644 index 0000000..8eca4db --- /dev/null +++ b/contrib/vstudio/vc11/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.7,0 | ||
| 6 | PRODUCTVERSION 1.2.7,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 and ZIP file I/O library\0" | ||
| 20 | VALUE "FileVersion", "1.2.7\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-2012 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/vc11/zlibvc.sln b/contrib/vstudio/vc11/zlibvc.sln new file mode 100644 index 0000000..c18f213 --- /dev/null +++ b/contrib/vstudio/vc11/zlibvc.sln | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | | ||
| 2 | Microsoft Visual Studio Solution File, Format Version 12.00 | ||
| 3 | # Visual Studio 2010 | ||
| 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcxproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | ||
| 5 | EndProject | ||
| 6 | Global | ||
| 7 | GlobalSection(TeamFoundationVersionControl) = preSolution | ||
| 8 | SccNumberOfProjects = 1 | ||
| 9 | SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} | ||
| 10 | SccTeamFoundationServer = http://iltfsapp01:8080/tfs/mediamind | ||
| 11 | SccLocalPath0 = . | ||
| 12 | EndGlobalSection | ||
| 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
| 14 | Debug|x64 = Debug|x64 | ||
| 15 | Release|x64 = Release|x64 | ||
| 16 | EndGlobalSection | ||
| 17 | GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
| 18 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.ActiveCfg = Debug|x64 | ||
| 19 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.Build.0 = Debug|x64 | ||
| 20 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.ActiveCfg = Release|x64 | ||
| 21 | {8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.Build.0 = Release|x64 | ||
| 22 | EndGlobalSection | ||
| 23 | GlobalSection(SolutionProperties) = preSolution | ||
| 24 | HideSolutionNode = FALSE | ||
| 25 | EndGlobalSection | ||
| 26 | EndGlobal | ||
diff --git a/contrib/vstudio/vc11/zlibvc.vcxproj b/contrib/vstudio/vc11/zlibvc.vcxproj new file mode 100644 index 0000000..dfaccf5 --- /dev/null +++ b/contrib/vstudio/vc11/zlibvc.vcxproj | |||
| @@ -0,0 +1,204 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ItemGroup Label="ProjectConfigurations"> | ||
| 4 | <ProjectConfiguration Include="Debug|x64"> | ||
| 5 | <Configuration>Debug</Configuration> | ||
| 6 | <Platform>x64</Platform> | ||
| 7 | </ProjectConfiguration> | ||
| 8 | <ProjectConfiguration Include="Release|x64"> | ||
| 9 | <Configuration>Release</Configuration> | ||
| 10 | <Platform>x64</Platform> | ||
| 11 | </ProjectConfiguration> | ||
| 12 | </ItemGroup> | ||
| 13 | <PropertyGroup Label="Globals"> | ||
| 14 | <ProjectGuid>{8FD826F8-3739-44E6-8CC8-997122E53B8D}</ProjectGuid> | ||
| 15 | </PropertyGroup> | ||
| 16 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
| 17 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
| 18 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
| 19 | <UseOfMfc>false</UseOfMfc> | ||
| 20 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
| 21 | <PlatformToolset>v110</PlatformToolset> | ||
| 22 | </PropertyGroup> | ||
| 23 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||
| 24 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
| 25 | <UseOfMfc>false</UseOfMfc> | ||
| 26 | <PlatformToolset>v110</PlatformToolset> | ||
| 27 | </PropertyGroup> | ||
| 28 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
| 29 | <ImportGroup Label="ExtensionSettings"> | ||
| 30 | </ImportGroup> | ||
| 31 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||
| 32 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
| 33 | </ImportGroup> | ||
| 34 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | ||
| 35 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
| 36 | </ImportGroup> | ||
| 37 | <PropertyGroup Label="UserMacros" /> | ||
| 38 | <PropertyGroup> | ||
| 39 | <_ProjectFileVersion>10.0.30128.1</_ProjectFileVersion> | ||
| 40 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\</OutDir> | ||
| 41 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
| 42 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> | ||
| 43 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</GenerateManifest> | ||
| 44 | <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\</OutDir> | ||
| 45 | <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">x64\ZlibDll$(Configuration)\Tmp\</IntDir> | ||
| 46 | <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> | ||
| 47 | <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</GenerateManifest> | ||
| 48 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
| 49 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
| 50 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
| 51 | <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet> | ||
| 52 | <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
| 53 | <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
| 54 | <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">zlibwapi</TargetName> | ||
| 55 | <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">zlibwapi</TargetName> | ||
| 56 | </PropertyGroup> | ||
| 57 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
| 58 | <Midl> | ||
| 59 | <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 60 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
| 61 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
| 62 | <TargetEnvironment>X64</TargetEnvironment> | ||
| 63 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
| 64 | </Midl> | ||
| 65 | <ClCompile> | ||
| 66 | <Optimization>Disabled</Optimization> | ||
| 67 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
| 68 | <PreprocessorDefinitions>WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 69 | <ExceptionHandling> | ||
| 70 | </ExceptionHandling> | ||
| 71 | <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> | ||
| 72 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
| 73 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
| 74 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
| 75 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
| 76 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
| 77 | <BrowseInformation> | ||
| 78 | </BrowseInformation> | ||
| 79 | <WarningLevel>Level3</WarningLevel> | ||
| 80 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
| 81 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> | ||
| 82 | </ClCompile> | ||
| 83 | <ResourceCompile> | ||
| 84 | <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 85 | <Culture>0x040c</Culture> | ||
| 86 | </ResourceCompile> | ||
| 87 | <Link> | ||
| 88 | <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
| 89 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
| 90 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
| 91 | <ModuleDefinitionFile>.\zlibvc11.def</ModuleDefinitionFile> | ||
| 92 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
| 93 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
| 94 | <GenerateMapFile>true</GenerateMapFile> | ||
| 95 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
| 96 | <SubSystem>Windows</SubSystem> | ||
| 97 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
| 98 | <TargetMachine>MachineX64</TargetMachine> | ||
| 99 | </Link> | ||
| 100 | <PreBuildEvent> | ||
| 101 | <Command>cd ..\..\masmx64 | ||
| 102 | bld_ml64.bat</Command> | ||
| 103 | </PreBuildEvent> | ||
| 104 | </ItemDefinitionGroup> | ||
| 105 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
| 106 | <Midl> | ||
| 107 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 108 | <MkTypLibCompatible>true</MkTypLibCompatible> | ||
| 109 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
| 110 | <TargetEnvironment>X64</TargetEnvironment> | ||
| 111 | <TypeLibraryName>$(OutDir)zlibvc.tlb</TypeLibraryName> | ||
| 112 | </Midl> | ||
| 113 | <ClCompile> | ||
| 114 | <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion> | ||
| 115 | <AdditionalIncludeDirectories>..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
| 116 | <PreprocessorDefinitions>_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;ASMV;ASMINF;WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 117 | <StringPooling>true</StringPooling> | ||
| 118 | <ExceptionHandling> | ||
| 119 | </ExceptionHandling> | ||
| 120 | <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> | ||
| 121 | <BufferSecurityCheck>false</BufferSecurityCheck> | ||
| 122 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
| 123 | <PrecompiledHeaderOutputFile>$(IntDir)zlibvc.pch</PrecompiledHeaderOutputFile> | ||
| 124 | <AssemblerOutput>All</AssemblerOutput> | ||
| 125 | <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation> | ||
| 126 | <ObjectFileName>$(IntDir)</ObjectFileName> | ||
| 127 | <ProgramDataBaseFileName>$(OutDir)</ProgramDataBaseFileName> | ||
| 128 | <BrowseInformation> | ||
| 129 | </BrowseInformation> | ||
| 130 | <WarningLevel>Level3</WarningLevel> | ||
| 131 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
| 132 | </ClCompile> | ||
| 133 | <ResourceCompile> | ||
| 134 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 135 | <Culture>0x040c</Culture> | ||
| 136 | </ResourceCompile> | ||
| 137 | <Link> | ||
| 138 | <AdditionalDependencies>..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies)</AdditionalDependencies> | ||
| 139 | <OutputFile>$(OutDir)zlibwapi.dll</OutputFile> | ||
| 140 | <SuppressStartupBanner>true</SuppressStartupBanner> | ||
| 141 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | ||
| 142 | <ModuleDefinitionFile>.\zlibvc11.def</ModuleDefinitionFile> | ||
| 143 | <ProgramDatabaseFile>$(OutDir)zlibwapi.pdb</ProgramDatabaseFile> | ||
| 144 | <GenerateMapFile>true</GenerateMapFile> | ||
| 145 | <MapFileName>$(OutDir)zlibwapi.map</MapFileName> | ||
| 146 | <SubSystem>Windows</SubSystem> | ||
| 147 | <ImportLibrary>$(OutDir)zlibwapi.lib</ImportLibrary> | ||
| 148 | <TargetMachine>MachineX64</TargetMachine> | ||
| 149 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
| 150 | </Link> | ||
| 151 | <PreBuildEvent> | ||
| 152 | <Command>cd ..\..\masmx64 | ||
| 153 | bld_ml64.bat</Command> | ||
| 154 | </PreBuildEvent> | ||
| 155 | </ItemDefinitionGroup> | ||
| 156 | <ItemGroup> | ||
| 157 | <ClCompile Include="..\..\..\adler32.c" /> | ||
| 158 | <ClCompile Include="..\..\..\compress.c" /> | ||
| 159 | <ClCompile Include="..\..\..\crc32.c" /> | ||
| 160 | <ClCompile Include="..\..\..\deflate.c" /> | ||
| 161 | <ClCompile Include="..\..\..\gzclose.c" /> | ||
| 162 | <ClCompile Include="..\..\..\gzlib.c" /> | ||
| 163 | <ClCompile Include="..\..\..\gzread.c" /> | ||
| 164 | <ClCompile Include="..\..\..\gzwrite.c" /> | ||
| 165 | <ClCompile Include="..\..\..\infback.c" /> | ||
| 166 | <ClCompile Include="..\..\masmx64\inffas8664.c" /> | ||
| 167 | <ClCompile Include="..\..\..\inffast.c" /> | ||
| 168 | <ClCompile Include="..\..\..\inflate.c" /> | ||
| 169 | <ClCompile Include="..\..\..\inftrees.c" /> | ||
| 170 | <ClCompile Include="..\..\minizip\ioapi.c" /> | ||
| 171 | <ClCompile Include="..\..\minizip\iowin32.c" /> | ||
| 172 | <ClCompile Include="..\..\..\trees.c" /> | ||
| 173 | <ClCompile Include="..\..\..\uncompr.c" /> | ||
| 174 | <ClCompile Include="..\..\minizip\unzip.c"> | ||
| 175 | <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
| 176 | <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 177 | </ClCompile> | ||
| 178 | <ClCompile Include="..\..\minizip\zip.c"> | ||
| 179 | <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
| 180 | <PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ZLIB_INTERNAL;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 181 | </ClCompile> | ||
| 182 | <ClCompile Include="..\..\..\zutil.c" /> | ||
| 183 | </ItemGroup> | ||
| 184 | <ItemGroup> | ||
| 185 | <ResourceCompile Include="zlib.rc" /> | ||
| 186 | </ItemGroup> | ||
| 187 | <ItemGroup> | ||
| 188 | <None Include="zlibvc.def" /> | ||
| 189 | </ItemGroup> | ||
| 190 | <ItemGroup> | ||
| 191 | <ClInclude Include="..\..\..\deflate.h" /> | ||
| 192 | <ClInclude Include="..\..\..\infblock.h" /> | ||
| 193 | <ClInclude Include="..\..\..\infcodes.h" /> | ||
| 194 | <ClInclude Include="..\..\..\inffast.h" /> | ||
| 195 | <ClInclude Include="..\..\..\inftrees.h" /> | ||
| 196 | <ClInclude Include="..\..\..\infutil.h" /> | ||
| 197 | <ClInclude Include="..\..\..\zconf.h" /> | ||
| 198 | <ClInclude Include="..\..\..\zlib.h" /> | ||
| 199 | <ClInclude Include="..\..\..\zutil.h" /> | ||
| 200 | </ItemGroup> | ||
| 201 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
| 202 | <ImportGroup Label="ExtensionTargets"> | ||
| 203 | </ImportGroup> | ||
| 204 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc11/zlibvc.vcxproj.filters b/contrib/vstudio/vc11/zlibvc.vcxproj.filters new file mode 100644 index 0000000..180b71c --- /dev/null +++ b/contrib/vstudio/vc11/zlibvc.vcxproj.filters | |||
| @@ -0,0 +1,118 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ItemGroup> | ||
| 4 | <Filter Include="Source Files"> | ||
| 5 | <UniqueIdentifier>{07934a85-8b61-443d-a0ee-b2eedb74f3cd}</UniqueIdentifier> | ||
| 6 | <Extensions>cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90</Extensions> | ||
| 7 | </Filter> | ||
| 8 | <Filter Include="Header Files"> | ||
| 9 | <UniqueIdentifier>{1d99675b-433d-4a21-9e50-ed4ab8b19762}</UniqueIdentifier> | ||
| 10 | <Extensions>h;hpp;hxx;hm;inl;fi;fd</Extensions> | ||
| 11 | </Filter> | ||
| 12 | <Filter Include="Resource Files"> | ||
| 13 | <UniqueIdentifier>{431c0958-fa71-44d0-9084-2d19d100c0cc}</UniqueIdentifier> | ||
| 14 | <Extensions>ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe</Extensions> | ||
| 15 | </Filter> | ||
| 16 | </ItemGroup> | ||
| 17 | <ItemGroup> | ||
| 18 | <ClCompile Include="..\..\..\adler32.c"> | ||
| 19 | <Filter>Source Files</Filter> | ||
| 20 | </ClCompile> | ||
| 21 | <ClCompile Include="..\..\..\compress.c"> | ||
| 22 | <Filter>Source Files</Filter> | ||
| 23 | </ClCompile> | ||
| 24 | <ClCompile Include="..\..\..\crc32.c"> | ||
| 25 | <Filter>Source Files</Filter> | ||
| 26 | </ClCompile> | ||
| 27 | <ClCompile Include="..\..\..\deflate.c"> | ||
| 28 | <Filter>Source Files</Filter> | ||
| 29 | </ClCompile> | ||
| 30 | <ClCompile Include="..\..\..\gzclose.c"> | ||
| 31 | <Filter>Source Files</Filter> | ||
| 32 | </ClCompile> | ||
| 33 | <ClCompile Include="..\..\..\gzlib.c"> | ||
| 34 | <Filter>Source Files</Filter> | ||
| 35 | </ClCompile> | ||
| 36 | <ClCompile Include="..\..\..\gzread.c"> | ||
| 37 | <Filter>Source Files</Filter> | ||
| 38 | </ClCompile> | ||
| 39 | <ClCompile Include="..\..\..\gzwrite.c"> | ||
| 40 | <Filter>Source Files</Filter> | ||
| 41 | </ClCompile> | ||
| 42 | <ClCompile Include="..\..\..\infback.c"> | ||
| 43 | <Filter>Source Files</Filter> | ||
| 44 | </ClCompile> | ||
| 45 | <ClCompile Include="..\..\masmx64\inffas8664.c"> | ||
| 46 | <Filter>Source Files</Filter> | ||
| 47 | </ClCompile> | ||
| 48 | <ClCompile Include="..\..\..\inffast.c"> | ||
| 49 | <Filter>Source Files</Filter> | ||
| 50 | </ClCompile> | ||
| 51 | <ClCompile Include="..\..\..\inflate.c"> | ||
| 52 | <Filter>Source Files</Filter> | ||
| 53 | </ClCompile> | ||
| 54 | <ClCompile Include="..\..\..\inftrees.c"> | ||
| 55 | <Filter>Source Files</Filter> | ||
| 56 | </ClCompile> | ||
| 57 | <ClCompile Include="..\..\minizip\ioapi.c"> | ||
| 58 | <Filter>Source Files</Filter> | ||
| 59 | </ClCompile> | ||
| 60 | <ClCompile Include="..\..\minizip\iowin32.c"> | ||
| 61 | <Filter>Source Files</Filter> | ||
| 62 | </ClCompile> | ||
| 63 | <ClCompile Include="..\..\..\trees.c"> | ||
| 64 | <Filter>Source Files</Filter> | ||
| 65 | </ClCompile> | ||
| 66 | <ClCompile Include="..\..\..\uncompr.c"> | ||
| 67 | <Filter>Source Files</Filter> | ||
| 68 | </ClCompile> | ||
| 69 | <ClCompile Include="..\..\minizip\unzip.c"> | ||
| 70 | <Filter>Source Files</Filter> | ||
| 71 | </ClCompile> | ||
| 72 | <ClCompile Include="..\..\minizip\zip.c"> | ||
| 73 | <Filter>Source Files</Filter> | ||
| 74 | </ClCompile> | ||
| 75 | <ClCompile Include="..\..\..\zutil.c"> | ||
| 76 | <Filter>Source Files</Filter> | ||
| 77 | </ClCompile> | ||
| 78 | </ItemGroup> | ||
| 79 | <ItemGroup> | ||
| 80 | <ResourceCompile Include="zlib.rc"> | ||
| 81 | <Filter>Source Files</Filter> | ||
| 82 | </ResourceCompile> | ||
| 83 | </ItemGroup> | ||
| 84 | <ItemGroup> | ||
| 85 | <None Include="zlibvc.def"> | ||
| 86 | <Filter>Source Files</Filter> | ||
| 87 | </None> | ||
| 88 | </ItemGroup> | ||
| 89 | <ItemGroup> | ||
| 90 | <ClInclude Include="..\..\..\deflate.h"> | ||
| 91 | <Filter>Header Files</Filter> | ||
| 92 | </ClInclude> | ||
| 93 | <ClInclude Include="..\..\..\infblock.h"> | ||
| 94 | <Filter>Header Files</Filter> | ||
| 95 | </ClInclude> | ||
| 96 | <ClInclude Include="..\..\..\infcodes.h"> | ||
| 97 | <Filter>Header Files</Filter> | ||
| 98 | </ClInclude> | ||
| 99 | <ClInclude Include="..\..\..\inffast.h"> | ||
| 100 | <Filter>Header Files</Filter> | ||
| 101 | </ClInclude> | ||
| 102 | <ClInclude Include="..\..\..\inftrees.h"> | ||
| 103 | <Filter>Header Files</Filter> | ||
| 104 | </ClInclude> | ||
| 105 | <ClInclude Include="..\..\..\infutil.h"> | ||
| 106 | <Filter>Header Files</Filter> | ||
| 107 | </ClInclude> | ||
| 108 | <ClInclude Include="..\..\..\zconf.h"> | ||
| 109 | <Filter>Header Files</Filter> | ||
| 110 | </ClInclude> | ||
| 111 | <ClInclude Include="..\..\..\zlib.h"> | ||
| 112 | <Filter>Header Files</Filter> | ||
| 113 | </ClInclude> | ||
| 114 | <ClInclude Include="..\..\..\zutil.h"> | ||
| 115 | <Filter>Header Files</Filter> | ||
| 116 | </ClInclude> | ||
| 117 | </ItemGroup> | ||
| 118 | </Project> \ No newline at end of file | ||
diff --git a/contrib/vstudio/vc11/zlibvc.vssscc b/contrib/vstudio/vc11/zlibvc.vssscc new file mode 100644 index 0000000..794f014 --- /dev/null +++ b/contrib/vstudio/vc11/zlibvc.vssscc | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | "" | ||
| 2 | { | ||
| 3 | "FILE_VERSION" = "9237" | ||
| 4 | "ENLISTMENT_CHOICE" = "NEVER" | ||
| 5 | "PROJECT_FILE_RELATIVE_PATH" = "" | ||
| 6 | "NUMBER_OF_EXCLUDED_FILES" = "0" | ||
| 7 | "ORIGINAL_PROJECT_FILE_PATH" = "" | ||
| 8 | "NUMBER_OF_NESTED_PROJECTS" = "0" | ||
| 9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" | ||
| 10 | } | ||
diff --git a/contrib/vstudio/vc11/zlibvc11.def b/contrib/vstudio/vc11/zlibvc11.def new file mode 100644 index 0000000..3adee3c --- /dev/null +++ b/contrib/vstudio/vc11/zlibvc11.def | |||
| @@ -0,0 +1,139 @@ | |||
| 1 | LIBRARY | ||
| 2 | ; zlib data compression and ZIP file I/O library | ||
| 3 | |||
| 4 | VERSION 1.27 | ||
| 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 | deflatePending @52 | ||
| 59 | |||
| 60 | unzOpen @61 | ||
| 61 | unzClose @62 | ||
| 62 | unzGetGlobalInfo @63 | ||
| 63 | unzGetCurrentFileInfo @64 | ||
| 64 | unzGoToFirstFile @65 | ||
| 65 | unzGoToNextFile @66 | ||
| 66 | unzOpenCurrentFile @67 | ||
| 67 | unzReadCurrentFile @68 | ||
| 68 | unzOpenCurrentFile3 @69 | ||
| 69 | unztell @70 | ||
| 70 | unzeof @71 | ||
| 71 | unzCloseCurrentFile @72 | ||
| 72 | unzGetGlobalComment @73 | ||
| 73 | unzStringFileNameCompare @74 | ||
| 74 | unzLocateFile @75 | ||
| 75 | unzGetLocalExtrafield @76 | ||
| 76 | unzOpen2 @77 | ||
| 77 | unzOpenCurrentFile2 @78 | ||
| 78 | unzOpenCurrentFilePassword @79 | ||
| 79 | |||
| 80 | zipOpen @80 | ||
| 81 | zipOpenNewFileInZip @81 | ||
| 82 | zipWriteInFileInZip @82 | ||
| 83 | zipCloseFileInZip @83 | ||
| 84 | zipClose @84 | ||
| 85 | zipOpenNewFileInZip2 @86 | ||
| 86 | zipCloseFileInZipRaw @87 | ||
| 87 | zipOpen2 @88 | ||
| 88 | zipOpenNewFileInZip3 @89 | ||
| 89 | |||
| 90 | unzGetFilePos @100 | ||
| 91 | unzGoToFilePos @101 | ||
| 92 | |||
| 93 | fill_win32_filefunc @110 | ||
| 94 | |||
| 95 | ; zlibwapi v1.2.4 added: | ||
| 96 | fill_win32_filefunc64 @111 | ||
| 97 | fill_win32_filefunc64A @112 | ||
| 98 | fill_win32_filefunc64W @113 | ||
| 99 | |||
| 100 | unzOpen64 @120 | ||
| 101 | unzOpen2_64 @121 | ||
| 102 | unzGetGlobalInfo64 @122 | ||
| 103 | unzGetCurrentFileInfo64 @124 | ||
| 104 | unzGetCurrentFileZStreamPos64 @125 | ||
| 105 | unztell64 @126 | ||
| 106 | unzGetFilePos64 @127 | ||
| 107 | unzGoToFilePos64 @128 | ||
| 108 | |||
| 109 | zipOpen64 @130 | ||
| 110 | zipOpen2_64 @131 | ||
| 111 | zipOpenNewFileInZip64 @132 | ||
| 112 | zipOpenNewFileInZip2_64 @133 | ||
| 113 | zipOpenNewFileInZip3_64 @134 | ||
| 114 | zipOpenNewFileInZip4_64 @135 | ||
| 115 | zipCloseFileInZipRaw64 @136 | ||
| 116 | |||
| 117 | ; zlib1 v1.2.4 added: | ||
| 118 | adler32_combine @140 | ||
| 119 | crc32_combine @142 | ||
| 120 | deflateSetHeader @144 | ||
| 121 | deflateTune @145 | ||
| 122 | gzbuffer @146 | ||
| 123 | gzclose_r @147 | ||
| 124 | gzclose_w @148 | ||
| 125 | gzdirect @149 | ||
| 126 | gzoffset @150 | ||
| 127 | inflateGetHeader @156 | ||
| 128 | inflateMark @157 | ||
| 129 | inflatePrime @158 | ||
| 130 | inflateReset2 @159 | ||
| 131 | inflateUndermine @160 | ||
| 132 | |||
| 133 | ; zlib1 v1.2.6 added: | ||
| 134 | gzgetc_ @161 | ||
| 135 | inflateResetKeep @163 | ||
| 136 | deflateResetKeep @164 | ||
| 137 | |||
| 138 | ; zlib1 v1.2.7 added: | ||
| 139 | gzopen_w @165 | ||
