diff options
author | Craig Tiller <ctiller@google.com> | 2016-01-21 11:44:55 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-01-21 11:44:55 -0800 |
commit | 3dca23aa0deb3d14ec97d998e1b37b3c2c403d65 (patch) | |
tree | 5040cc95bb2da2c4e13d202ebd6889822897051c /vsprojects/vcxproj/z | |
parent | 65eb565e92914a3ccb19b8282421977ceda885b3 (diff) |
Make zlib a first class build citizen
Diffstat (limited to 'vsprojects/vcxproj/z')
-rw-r--r-- | vsprojects/vcxproj/z/z.vcxproj | 203 | ||||
-rw-r--r-- | vsprojects/vcxproj/z/z.vcxproj.filters | 95 |
2 files changed, 298 insertions, 0 deletions
diff --git a/vsprojects/vcxproj/z/z.vcxproj b/vsprojects/vcxproj/z/z.vcxproj new file mode 100644 index 0000000000..4505dfadb2 --- /dev/null +++ b/vsprojects/vcxproj/z/z.vcxproj @@ -0,0 +1,203 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup Label="ProjectConfigurations"> + <ProjectConfiguration Include="Debug|Win32"> + <Configuration>Debug</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|x64"> + <Configuration>Debug</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|Win32"> + <Configuration>Release</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|x64"> + <Configuration>Release</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + </ItemGroup> + <PropertyGroup Label="Globals"> + <ProjectGuid>{FBADE9E3-6A3F-36D3-D676-C1B808451DD7}</ProjectGuid> + <IgnoreWarnIntDirInTempDetected>true</IgnoreWarnIntDirInTempDetected> + <IntDir>$(SolutionDir)IntDir\$(MSBuildProjectName)\</IntDir> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> + <PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration"> + <PlatformToolset>v100</PlatformToolset> + </PropertyGroup> + <PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration"> + <PlatformToolset>v110</PlatformToolset> + </PropertyGroup> + <PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration"> + <PlatformToolset>v120</PlatformToolset> + </PropertyGroup> + <PropertyGroup Condition="'$(VisualStudioVersion)' == '14.0'" Label="Configuration"> + <PlatformToolset>v140</PlatformToolset> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> + <ConfigurationType>StaticLibrary</ConfigurationType> + <UseDebugLibraries>true</UseDebugLibraries> + <CharacterSet>Unicode</CharacterSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> + <ConfigurationType>StaticLibrary</ConfigurationType> + <UseDebugLibraries>false</UseDebugLibraries> + <WholeProgramOptimization>true</WholeProgramOptimization> + <CharacterSet>Unicode</CharacterSet> + </PropertyGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> + <ImportGroup Label="ExtensionSettings"> + </ImportGroup> + <ImportGroup Label="PropertySheets"> + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> + <Import Project="$(SolutionDir)\..\vsprojects\global.props" /> + <Import Project="$(SolutionDir)\..\vsprojects\winsock.props" /> + </ImportGroup> + <PropertyGroup Label="UserMacros" /> + <PropertyGroup Condition="'$(Configuration)'=='Debug'"> + <TargetName>z</TargetName> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)'=='Release'"> + <TargetName>z</TargetName> + </PropertyGroup> + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> + <ClCompile> + <PrecompiledHeader>NotUsing</PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <Optimization>Disabled</Optimization> + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <SDLCheck>true</SDLCheck> + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> + <TreatWarningAsError>true</TreatWarningAsError> + <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> + <MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> + </ClCompile> + <Link> + <SubSystem>Windows</SubSystem> + <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> + <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> + </Link> + </ItemDefinitionGroup> + + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> + <ClCompile> + <PrecompiledHeader>NotUsing</PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <Optimization>Disabled</Optimization> + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <SDLCheck>true</SDLCheck> + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> + <TreatWarningAsError>true</TreatWarningAsError> + <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> + <MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> + </ClCompile> + <Link> + <SubSystem>Windows</SubSystem> + <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> + <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> + </Link> + </ItemDefinitionGroup> + + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> + <ClCompile> + <PrecompiledHeader>NotUsing</PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <Optimization>MaxSpeed</Optimization> + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <FunctionLevelLinking>true</FunctionLevelLinking> + <IntrinsicFunctions>true</IntrinsicFunctions> + <SDLCheck>true</SDLCheck> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + <TreatWarningAsError>true</TreatWarningAsError> + <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> + <MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> + </ClCompile> + <Link> + <SubSystem>Windows</SubSystem> + <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> + <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> + <EnableCOMDATFolding>true</EnableCOMDATFolding> + <OptimizeReferences>true</OptimizeReferences> + </Link> + </ItemDefinitionGroup> + + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> + <ClCompile> + <PrecompiledHeader>NotUsing</PrecompiledHeader> + <WarningLevel>Level3</WarningLevel> + <Optimization>MaxSpeed</Optimization> + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <FunctionLevelLinking>true</FunctionLevelLinking> + <IntrinsicFunctions>true</IntrinsicFunctions> + <SDLCheck>true</SDLCheck> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + <TreatWarningAsError>true</TreatWarningAsError> + <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> + <MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> + </ClCompile> + <Link> + <SubSystem>Windows</SubSystem> + <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> + <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> + <EnableCOMDATFolding>true</EnableCOMDATFolding> + <OptimizeReferences>true</OptimizeReferences> + </Link> + </ItemDefinitionGroup> + + <ItemGroup> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\crc32.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\deflate.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\gzguts.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\inffast.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\inffixed.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\inflate.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\inftrees.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\trees.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\zconf.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\zlib.h" /> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\zutil.h" /> + </ItemGroup> + <ItemGroup> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\adler32.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\compress.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\crc32.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\deflate.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\gzclose.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\gzlib.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\gzread.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\gzwrite.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\infback.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\inffast.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\inflate.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\inftrees.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\trees.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\uncompr.c"> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\zutil.c"> + </ClCompile> + </ItemGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> + <ImportGroup Label="ExtensionTargets"> + </ImportGroup> + <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> + <PropertyGroup> + <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> + </PropertyGroup> + </Target> +</Project> + diff --git a/vsprojects/vcxproj/z/z.vcxproj.filters b/vsprojects/vcxproj/z/z.vcxproj.filters new file mode 100644 index 0000000000..4aea144f61 --- /dev/null +++ b/vsprojects/vcxproj/z/z.vcxproj.filters @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\adler32.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\compress.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\crc32.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\deflate.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\gzclose.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\gzlib.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\gzread.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\gzwrite.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\infback.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\inffast.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\inflate.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\inftrees.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\trees.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\uncompr.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + <ClCompile Include="$(SolutionDir)\..\third_party\zlib\zutil.c"> + <Filter>third_party\zlib</Filter> + </ClCompile> + </ItemGroup> + <ItemGroup> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\crc32.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\deflate.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\gzguts.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\inffast.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\inffixed.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\inflate.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\inftrees.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\trees.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\zconf.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\zlib.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + <ClInclude Include="$(SolutionDir)\..\third_party\zlib\zutil.h"> + <Filter>third_party\zlib</Filter> + </ClInclude> + </ItemGroup> + + <ItemGroup> + <Filter Include="third_party"> + <UniqueIdentifier>{ec647746-5bc0-66f4-80c6-a5dbd9f9db6f}</UniqueIdentifier> + </Filter> + <Filter Include="third_party\zlib"> + <UniqueIdentifier>{3c4d2d48-67ef-199d-360e-79e7f5cad175}</UniqueIdentifier> + </Filter> + </ItemGroup> +</Project> + |