mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
76629e1b52
Log viewer can open .gz files Log viewer can save log as .gz Refactored most instances of zip and unzip code to seperate functions
125 lines
6.1 KiB
XML
125 lines
6.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|x64">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="$(ZLibSrcDir)\adler32.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\compress.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\crc32.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\deflate.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\infback.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\inffast.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\inflate.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\inftrees.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\trees.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\uncompr.c" />
|
|
<ClCompile Include="$(ZLibSrcDir)\zutil.c" />
|
|
<ClCompile Include="zlib\gzclose.c" />
|
|
<ClCompile Include="zlib\gzlib.c" />
|
|
<ClCompile Include="zlib\gzread.c" />
|
|
<ClCompile Include="zlib\gzwrite.c" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="zlib\crc32.h" />
|
|
<ClInclude Include="zlib\deflate.h" />
|
|
<ClInclude Include="zlib\gzguts.h" />
|
|
<ClInclude Include="zlib\inffast.h" />
|
|
<ClInclude Include="zlib\inffixed.h" />
|
|
<ClInclude Include="zlib\inflate.h" />
|
|
<ClInclude Include="zlib\inftrees.h" />
|
|
<ClInclude Include="zlib\trees.h" />
|
|
<ClInclude Include="zlib\zconf.h" />
|
|
<ClInclude Include="zlib\zlib.h" />
|
|
<ClInclude Include="zlib\zutil.h" />
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{60F89955-91C6-3A36-8000-13C592FEC2DF}</ProjectGuid>
|
|
<Keyword>Win32Proj</Keyword>
|
|
<RootNamespace>zlib</RootNamespace>
|
|
</PropertyGroup>
|
|
<Import Project="$(SolutionDir)\3rdparty\zlib\zlib.props" />
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\common_default.props" />
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup>
|
|
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
</PropertyGroup>
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\common_default_macros.props" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<LinkIncremental>true</LinkIncremental>
|
|
<OutDir>$(SolutionDir)lib\$(Configuration)-$(Platform)\</OutDir>
|
|
<IntDir>$(SolutionDir)tmp\$(ProjectName)-$(Configuration)-$(Platform)\</IntDir>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<LinkIncremental>true</LinkIncremental>
|
|
<OutDir>$(SolutionDir)lib\$(Configuration)-$(Platform)\</OutDir>
|
|
<IntDir>$(SolutionDir)tmp\$(ProjectName)-$(Configuration)-$(Platform)\</IntDir>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<ClCompile>
|
|
<PreprocessorDefinitions>WIN32;ZLIB_CONST;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
<WarningLevel>$(WarningLevel)</WarningLevel>
|
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
<Optimization>Disabled</Optimization>
|
|
<BrowseInformation>true</BrowseInformation>
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
<DisableSpecificWarnings>$(DisableSpecificWarnings);4127;4131;4242;4244</DisableSpecificWarnings>
|
|
<TreatWarningAsError>$(TreatWarningAsError)</TreatWarningAsError>
|
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
</ClCompile>
|
|
<Link>
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
<SubSystem>Windows</SubSystem>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<ClCompile>
|
|
<WarningLevel>$(WarningLevel)</WarningLevel>
|
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
<Optimization>MaxSpeed</Optimization>
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
|
<BrowseInformation>true</BrowseInformation>
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
<DisableSpecificWarnings>$(DisableSpecificWarnings);4127;4131;4242;4244</DisableSpecificWarnings>
|
|
<TreatWarningAsError>$(TreatWarningAsError)</TreatWarningAsError>
|
|
<PreprocessorDefinitions>WIN32;ZLIB_CONST;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
</ClCompile>
|
|
<Link>
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
<SubSystem>Windows</SubSystem>
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
</Link>
|
|
<Lib>
|
|
<LinkTimeCodeGeneration>true</LinkTimeCodeGeneration>
|
|
</Lib>
|
|
</ItemDefinitionGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |