mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
193 lines
10 KiB
XML
193 lines
10 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="14.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=".\zstd\lib\common\debug.c" />
|
|
<ClCompile Include=".\zstd\lib\common\entropy_common.c" />
|
|
<ClCompile Include=".\zstd\lib\common\error_private.c" />
|
|
<ClCompile Include=".\zstd\lib\common\pool.c" />
|
|
<ClCompile Include=".\zstd\lib\common\threading.c" />
|
|
<ClCompile Include=".\zstd\lib\common\xxhash.c" />
|
|
<ClCompile Include=".\zstd\lib\common\zstd_common.c" />
|
|
<ClCompile Include=".\zstd\lib\common\fse_decompress.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\hist.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\fse_compress.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\huf_compress.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstdmt_compress.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_compress.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_compress_literals.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_compress_sequences.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_compress_superblock.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_fast.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_double_fast.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_lazy.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_opt.c" />
|
|
<ClCompile Include=".\zstd\lib\compress\zstd_ldm.c" />
|
|
<ClCompile Include=".\zstd\lib\decompress\huf_decompress.c" />
|
|
<ClCompile Include=".\zstd\lib\decompress\zstd_decompress.c" />
|
|
<ClCompile Include=".\zstd\lib\decompress\zstd_decompress_block.c" />
|
|
<ClCompile Include=".\zstd\lib\decompress\zstd_ddict.c" />
|
|
<ClCompile Include=".\zstd\lib\dictBuilder\cover.c" />
|
|
<ClCompile Include=".\zstd\lib\dictBuilder\fastcover.c" />
|
|
<ClCompile Include=".\zstd\lib\dictBuilder\divsufsort.c" />
|
|
<ClCompile Include=".\zstd\lib\dictBuilder\zdict.c" />
|
|
<ClCompile Include=".\zstd\lib\legacy\zstd_v01.c" />
|
|
<ClCompile Include=".\zstd\lib\legacy\zstd_v02.c" />
|
|
<ClCompile Include=".\zstd\lib\legacy\zstd_v03.c" />
|
|
<ClCompile Include=".\zstd\lib\legacy\zstd_v04.c" />
|
|
<ClCompile Include=".\zstd\lib\legacy\zstd_v05.c" />
|
|
<ClCompile Include=".\zstd\lib\legacy\zstd_v06.c" />
|
|
<ClCompile Include=".\zstd\lib\legacy\zstd_v07.c" />
|
|
<ClCompile Include=".\zstd\programs\util.c" />
|
|
<ClCompile Include=".\zstd\programs\timefn.c" />
|
|
<ClCompile Include=".\zstd\programs\benchfn.c" />
|
|
<ClCompile Include=".\zstd\programs\benchzstd.c" />
|
|
<ClCompile Include=".\zstd\programs\datagen.c" />
|
|
<ClCompile Include=".\zstd\programs\dibio.c" />
|
|
<ClCompile Include=".\zstd\programs\fileio.c" />
|
|
<ClCompile Include=".\zstd\programs\fileio_asyncio.c" />
|
|
<ClCompile Include=".\zstd\programs\lorem.c" />
|
|
<ClCompile Include=".\zstd\programs\zstdcli.c" />
|
|
<ClCompile Include=".\zstd\programs\zstdcli_trace.c" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include=".\zstd\lib\common\pool.h" />
|
|
<ClInclude Include=".\zstd\lib\common\threading.h" />
|
|
<ClInclude Include=".\zstd\lib\common\xxhash.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstdmt_compress.h" />
|
|
<ClInclude Include=".\zstd\lib\zdict.h" />
|
|
<ClInclude Include=".\zstd\lib\dictBuilder\cover.h" />
|
|
<ClInclude Include=".\zstd\lib\dictBuilder\divsufsort.h" />
|
|
<ClInclude Include=".\zstd\lib\common\fse.h" />
|
|
<ClInclude Include=".\zstd\lib\common\huf.h" />
|
|
<ClInclude Include=".\zstd\lib\zstd.h" />
|
|
<ClInclude Include=".\zstd\lib\common\zstd_internal.h" />
|
|
<ClInclude Include=".\zstd\lib\zstd_errors.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_compress.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_compress_literals.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_compress_sequences.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_cwksp.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_compress_superblock.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_fast.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_double_fast.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_lazy.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_opt.h" />
|
|
<ClInclude Include=".\zstd\lib\compress\zstd_ldm.h" />
|
|
<ClInclude Include=".\zstd\lib\decompress\zstd_ddict.h" />
|
|
<ClInclude Include=".\zstd\lib\legacy\zstd_legacy.h" />
|
|
<ClInclude Include=".\zstd\lib\legacy\zstd_v01.h" />
|
|
<ClInclude Include=".\zstd\lib\legacy\zstd_v02.h" />
|
|
<ClInclude Include=".\zstd\lib\legacy\zstd_v03.h" />
|
|
<ClInclude Include=".\zstd\lib\legacy\zstd_v04.h" />
|
|
<ClInclude Include=".\zstd\lib\legacy\zstd_v05.h" />
|
|
<ClInclude Include=".\zstd\lib\legacy\zstd_v06.h" />
|
|
<ClInclude Include=".\zstd\lib\legacy\zstd_v07.h" />
|
|
<ClInclude Include=".\zstd\programs\benchzstd.h" />
|
|
<ClInclude Include=".\zstd\programs\datagen.h" />
|
|
<ClInclude Include=".\zstd\programs\dibio.h" />
|
|
<ClInclude Include=".\zstd\programs\fileio.h" />
|
|
<ClInclude Include=".\zstd\programs\platform.h" />
|
|
<ClInclude Include=".\zstd\programs\util.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ResourceCompile Include="zstd.rc" />
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{4E52A41A-F33B-4C7A-8C36-A1A6B4F4277C}</ProjectGuid>
|
|
<Keyword>Win32Proj</Keyword>
|
|
<ProjectName>zstd</ProjectName>
|
|
<RootNamespace>zstd</RootNamespace>
|
|
<OutDir>$(SolutionDir)lib\$(Configuration)-$(Platform)\</OutDir>
|
|
<IntDir>$(SolutionDir)tmp\$(ProjectName)-$(Configuration)-$(Platform)\</IntDir>
|
|
<InstructionSet>NotSet</InstructionSet>
|
|
</PropertyGroup>
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\common_default.props" />
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<Import Project="$(SolutionDir)\buildfiles\msvc\common_default_macros.props" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
<CharacterSet>MultiByte</CharacterSet>
|
|
</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')" Label="LocalAppDataPlatform" />
|
|
</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>
|
|
<IncludePath>$(IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\lib\compress;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\lib\common;$(SolutionDir)..\..\lib\dictBuilder;$(UniversalCRT_IncludePath);</IncludePath>
|
|
<RunCodeAnalysis>false</RunCodeAnalysis>
|
|
<LibraryPath>$(LibraryPath);</LibraryPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<LinkIncremental>false</LinkIncremental>
|
|
<IncludePath>$(IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\lib\compress;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\lib\common;$(SolutionDir)..\..\lib\dictBuilder;$(UniversalCRT_IncludePath);</IncludePath>
|
|
<RunCodeAnalysis>false</RunCodeAnalysis>
|
|
<LibraryPath>$(LibraryPath);</LibraryPath>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<ClCompile>
|
|
<PrecompiledHeader>
|
|
</PrecompiledHeader>
|
|
<WarningLevel>Level4</WarningLevel>
|
|
<Optimization>Disabled</Optimization>
|
|
<PreprocessorDefinitions>ZSTD_MULTITHREAD=1;ZSTD_LEGACY_SUPPORT=5;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
<TreatWarningAsError>true</TreatWarningAsError>
|
|
<EnablePREfast>false</EnablePREfast>
|
|
<EnableEnhancedInstructionSet>$(InstructionSet)</EnableEnhancedInstructionSet>
|
|
</ClCompile>
|
|
<Link>
|
|
<SubSystem>Console</SubSystem>
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
<AdditionalDependencies>setargv.obj;%(AdditionalDependencies)</AdditionalDependencies>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<ClCompile>
|
|
<WarningLevel>Level4</WarningLevel>
|
|
<PrecompiledHeader>
|
|
</PrecompiledHeader>
|
|
<Optimization>MaxSpeed</Optimization>
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
<PreprocessorDefinitions>ZSTD_MULTITHREAD=1;ZSTD_LEGACY_SUPPORT=5;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
<TreatWarningAsError>false</TreatWarningAsError>
|
|
<EnablePREfast>false</EnablePREfast>
|
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
<AdditionalOptions>/DZSTD_MULTITHREAD %(AdditionalOptions)</AdditionalOptions>
|
|
<EnableEnhancedInstructionSet>$(InstructionSet)</EnableEnhancedInstructionSet>
|
|
<LanguageStandard_C>Default</LanguageStandard_C>
|
|
</ClCompile>
|
|
<Link>
|
|
<SubSystem>Console</SubSystem>
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
<AdditionalDependencies>setargv.obj;%(AdditionalDependencies)</AdditionalDependencies>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |