mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Externals: Add libLZMA.
This commit is contained in:
205
Externals/liblzma/liblzma.vcxproj
vendored
Normal file
205
Externals/liblzma/liblzma.vcxproj
vendored
Normal file
@ -0,0 +1,205 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|ARM64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|ARM64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>ARM64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<VCProjectVersion>16.0</VCProjectVersion>
|
||||
<ProjectGuid>{055A775F-B4F5-4970-9240-F6CF7661F37B}</ProjectGuid>
|
||||
<RootNamespace>liblzma</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
</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="..\..\Source\VSProps\Base.props" />
|
||||
<Import Project="..\..\Source\VSProps\ClDisableAllWarnings.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>.;check;common;delta;lz;lzma;rangecoder;simple;tuklib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>LZMA_API_STATIC;HAVE_CONFIG_H;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="api\lzma.h" />
|
||||
<ClInclude Include="api\lzma\base.h" />
|
||||
<ClInclude Include="api\lzma\bcj.h" />
|
||||
<ClInclude Include="api\lzma\block.h" />
|
||||
<ClInclude Include="api\lzma\check.h" />
|
||||
<ClInclude Include="api\lzma\container.h" />
|
||||
<ClInclude Include="api\lzma\delta.h" />
|
||||
<ClInclude Include="api\lzma\filter.h" />
|
||||
<ClInclude Include="api\lzma\hardware.h" />
|
||||
<ClInclude Include="api\lzma\index.h" />
|
||||
<ClInclude Include="api\lzma\index_hash.h" />
|
||||
<ClInclude Include="api\lzma\lzma12.h" />
|
||||
<ClInclude Include="api\lzma\stream_flags.h" />
|
||||
<ClInclude Include="api\lzma\version.h" />
|
||||
<ClInclude Include="api\lzma\vli.h" />
|
||||
<ClInclude Include="check\check.h" />
|
||||
<ClInclude Include="check\crc32_table_be.h" />
|
||||
<ClInclude Include="check\crc32_table_le.h" />
|
||||
<ClInclude Include="check\crc64_table_be.h" />
|
||||
<ClInclude Include="check\crc64_table_le.h" />
|
||||
<ClInclude Include="check\crc_macros.h" />
|
||||
<ClInclude Include="common\alone_decoder.h" />
|
||||
<ClInclude Include="common\block_buffer_encoder.h" />
|
||||
<ClInclude Include="common\block_decoder.h" />
|
||||
<ClInclude Include="common\block_encoder.h" />
|
||||
<ClInclude Include="common\common.h" />
|
||||
<ClInclude Include="common\easy_preset.h" />
|
||||
<ClInclude Include="common\filter_common.h" />
|
||||
<ClInclude Include="common\filter_decoder.h" />
|
||||
<ClInclude Include="common\filter_encoder.h" />
|
||||
<ClInclude Include="common\index.h" />
|
||||
<ClInclude Include="common\index_encoder.h" />
|
||||
<ClInclude Include="common\memcmplen.h" />
|
||||
<ClInclude Include="common\outqueue.h" />
|
||||
<ClInclude Include="common\stream_decoder.h" />
|
||||
<ClInclude Include="common\stream_flags_common.h" />
|
||||
<ClInclude Include="config.h" />
|
||||
<ClInclude Include="delta\delta_common.h" />
|
||||
<ClInclude Include="delta\delta_decoder.h" />
|
||||
<ClInclude Include="delta\delta_encoder.h" />
|
||||
<ClInclude Include="delta\delta_private.h" />
|
||||
<ClInclude Include="lzma\fastpos.h" />
|
||||
<ClInclude Include="lzma\lzma2_decoder.h" />
|
||||
<ClInclude Include="lzma\lzma2_encoder.h" />
|
||||
<ClInclude Include="lzma\lzma_common.h" />
|
||||
<ClInclude Include="lzma\lzma_decoder.h" />
|
||||
<ClInclude Include="lzma\lzma_encoder.h" />
|
||||
<ClInclude Include="lzma\lzma_encoder_private.h" />
|
||||
<ClInclude Include="lz\lz_decoder.h" />
|
||||
<ClInclude Include="lz\lz_encoder.h" />
|
||||
<ClInclude Include="lz\lz_encoder_hash.h" />
|
||||
<ClInclude Include="lz\lz_encoder_hash_table.h" />
|
||||
<ClInclude Include="rangecoder\price.h" />
|
||||
<ClInclude Include="rangecoder\range_common.h" />
|
||||
<ClInclude Include="rangecoder\range_decoder.h" />
|
||||
<ClInclude Include="rangecoder\range_encoder.h" />
|
||||
<ClInclude Include="simple\simple_coder.h" />
|
||||
<ClInclude Include="simple\simple_decoder.h" />
|
||||
<ClInclude Include="simple\simple_encoder.h" />
|
||||
<ClInclude Include="simple\simple_private.h" />
|
||||
<ClInclude Include="tuklib\mythread.h" />
|
||||
<ClInclude Include="tuklib\sysdefs.h" />
|
||||
<ClInclude Include="tuklib\tuklib_common.h" />
|
||||
<ClInclude Include="tuklib\tuklib_config.h" />
|
||||
<ClInclude Include="tuklib\tuklib_cpucores.h" />
|
||||
<ClInclude Include="tuklib\tuklib_exit.h" />
|
||||
<ClInclude Include="tuklib\tuklib_gettext.h" />
|
||||
<ClInclude Include="tuklib\tuklib_integer.h" />
|
||||
<ClInclude Include="tuklib\tuklib_mbstr.h" />
|
||||
<ClInclude Include="tuklib\tuklib_open_stdxxx.h" />
|
||||
<ClInclude Include="tuklib\tuklib_physmem.h" />
|
||||
<ClInclude Include="tuklib\tuklib_progname.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="check\check.c" />
|
||||
<ClCompile Include="check\crc32_fast.c" />
|
||||
<ClCompile Include="check\crc32_table.c" />
|
||||
<ClCompile Include="check\crc64_fast.c" />
|
||||
<ClCompile Include="check\crc64_table.c" />
|
||||
<ClCompile Include="check\sha256.c" />
|
||||
<ClCompile Include="common\alone_decoder.c" />
|
||||
<ClCompile Include="common\alone_encoder.c" />
|
||||
<ClCompile Include="common\auto_decoder.c" />
|
||||
<ClCompile Include="common\block_buffer_decoder.c" />
|
||||
<ClCompile Include="common\block_buffer_encoder.c" />
|
||||
<ClCompile Include="common\block_decoder.c" />
|
||||
<ClCompile Include="common\block_encoder.c" />
|
||||
<ClCompile Include="common\block_header_decoder.c" />
|
||||
<ClCompile Include="common\block_header_encoder.c" />
|
||||
<ClCompile Include="common\block_util.c" />
|
||||
<ClCompile Include="common\common.c" />
|
||||
<ClCompile Include="common\easy_buffer_encoder.c" />
|
||||
<ClCompile Include="common\easy_decoder_memusage.c" />
|
||||
<ClCompile Include="common\easy_encoder.c" />
|
||||
<ClCompile Include="common\easy_encoder_memusage.c" />
|
||||
<ClCompile Include="common\easy_preset.c" />
|
||||
<ClCompile Include="common\filter_buffer_decoder.c" />
|
||||
<ClCompile Include="common\filter_buffer_encoder.c" />
|
||||
<ClCompile Include="common\filter_common.c" />
|
||||
<ClCompile Include="common\filter_decoder.c" />
|
||||
<ClCompile Include="common\filter_encoder.c" />
|
||||
<ClCompile Include="common\filter_flags_decoder.c" />
|
||||
<ClCompile Include="common\filter_flags_encoder.c" />
|
||||
<ClCompile Include="common\hardware_cputhreads.c" />
|
||||
<ClCompile Include="common\hardware_physmem.c" />
|
||||
<ClCompile Include="common\index.c" />
|
||||
<ClCompile Include="common\index_decoder.c" />
|
||||
<ClCompile Include="common\index_encoder.c" />
|
||||
<ClCompile Include="common\index_hash.c" />
|
||||
<ClCompile Include="common\outqueue.c" />
|
||||
<ClCompile Include="common\stream_buffer_decoder.c" />
|
||||
<ClCompile Include="common\stream_buffer_encoder.c" />
|
||||
<ClCompile Include="common\stream_decoder.c" />
|
||||
<ClCompile Include="common\stream_encoder.c" />
|
||||
<ClCompile Include="common\stream_encoder_mt.c" />
|
||||
<ClCompile Include="common\stream_flags_common.c" />
|
||||
<ClCompile Include="common\stream_flags_decoder.c" />
|
||||
<ClCompile Include="common\stream_flags_encoder.c" />
|
||||
<ClCompile Include="common\vli_decoder.c" />
|
||||
<ClCompile Include="common\vli_encoder.c" />
|
||||
<ClCompile Include="common\vli_size.c" />
|
||||
<ClCompile Include="delta\delta_common.c" />
|
||||
<ClCompile Include="delta\delta_decoder.c" />
|
||||
<ClCompile Include="delta\delta_encoder.c" />
|
||||
<ClCompile Include="lzma\fastpos_table.c" />
|
||||
<ClCompile Include="lzma\lzma2_decoder.c" />
|
||||
<ClCompile Include="lzma\lzma2_encoder.c" />
|
||||
<ClCompile Include="lzma\lzma_decoder.c" />
|
||||
<ClCompile Include="lzma\lzma_encoder.c" />
|
||||
<ClCompile Include="lzma\lzma_encoder_optimum_fast.c" />
|
||||
<ClCompile Include="lzma\lzma_encoder_optimum_normal.c" />
|
||||
<ClCompile Include="lzma\lzma_encoder_presets.c" />
|
||||
<ClCompile Include="lz\lz_decoder.c" />
|
||||
<ClCompile Include="lz\lz_encoder.c" />
|
||||
<ClCompile Include="lz\lz_encoder_mf.c" />
|
||||
<ClCompile Include="rangecoder\price_table.c" />
|
||||
<ClCompile Include="simple\simple_coder.c" />
|
||||
<ClCompile Include="simple\simple_decoder.c" />
|
||||
<ClCompile Include="simple\simple_encoder.c" />
|
||||
<ClCompile Include="tuklib\tuklib_cpucores.c" />
|
||||
<ClCompile Include="tuklib\tuklib_exit.c" />
|
||||
<ClCompile Include="tuklib\tuklib_mbstr_fw.c" />
|
||||
<ClCompile Include="tuklib\tuklib_mbstr_width.c" />
|
||||
<ClCompile Include="tuklib\tuklib_open_stdxxx.c" />
|
||||
<ClCompile Include="tuklib\tuklib_physmem.c" />
|
||||
<ClCompile Include="tuklib\tuklib_progname.c" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
Reference in New Issue
Block a user