mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Windows: Update the VS project files for ARM64 and .lz support.
This commit is contained in:
parent
5846aeda05
commit
802d57d921
9 changed files with 49 additions and 4 deletions
|
@ -21,6 +21,9 @@
|
|||
/* Define to 1 if arm decoder is enabled. */
|
||||
#define HAVE_DECODER_ARM 1
|
||||
|
||||
/* Define to 1 if arm64 decoder is enabled. */
|
||||
#define HAVE_DECODER_ARM64 1
|
||||
|
||||
/* Define to 1 if armthumb decoder is enabled. */
|
||||
#define HAVE_DECODER_ARMTHUMB 1
|
||||
|
||||
|
@ -51,6 +54,9 @@
|
|||
/* Define to 1 if arm encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARM 1
|
||||
|
||||
/* Define to 1 if arm64 encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARM64 1
|
||||
|
||||
/* Define to 1 if armthumb encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARMTHUMB 1
|
||||
|
||||
|
@ -81,6 +87,9 @@
|
|||
/* Define to 1 if you have the <limits.h> header file. */
|
||||
#define HAVE_LIMITS_H 1
|
||||
|
||||
/* Define to 1 if .lz (lzip) decompression support is enabled. */
|
||||
#define HAVE_LZIP_DECODER 1
|
||||
|
||||
/* Define to 1 to enable bt2 match finder. */
|
||||
#define HAVE_MF_BT2 1
|
||||
|
||||
|
|
|
@ -243,6 +243,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\common\index_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_encoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_hash.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\lzip_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\outqueue.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_encoder.c" />
|
||||
|
@ -271,6 +272,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\lz\lz_encoder_mf.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\rangecoder\price_table.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\armthumb.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\ia64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\powerpc.c" />
|
||||
|
@ -322,6 +324,7 @@
|
|||
<ClInclude Include="..\..\src\liblzma\common\index_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\index_encoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\memcmplen.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\lzip_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\outqueue.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_flags_common.h" />
|
||||
|
|
|
@ -275,6 +275,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\common\index_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_encoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_hash.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\lzip_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\outqueue.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_encoder.c" />
|
||||
|
@ -303,6 +304,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\lz\lz_encoder_mf.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\rangecoder\price_table.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\armthumb.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\ia64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\powerpc.c" />
|
||||
|
@ -354,6 +356,7 @@
|
|||
<ClInclude Include="..\..\src\liblzma\common\index_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\index_encoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\memcmplen.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\lzip_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\outqueue.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_flags_common.h" />
|
||||
|
|
|
@ -21,6 +21,9 @@
|
|||
/* Define to 1 if arm decoder is enabled. */
|
||||
#define HAVE_DECODER_ARM 1
|
||||
|
||||
/* Define to 1 if arm64 decoder is enabled. */
|
||||
#define HAVE_DECODER_ARM64 1
|
||||
|
||||
/* Define to 1 if armthumb decoder is enabled. */
|
||||
#define HAVE_DECODER_ARMTHUMB 1
|
||||
|
||||
|
@ -51,6 +54,9 @@
|
|||
/* Define to 1 if arm encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARM 1
|
||||
|
||||
/* Define to 1 if arm64 encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARM64 1
|
||||
|
||||
/* Define to 1 if armthumb encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARMTHUMB 1
|
||||
|
||||
|
@ -81,6 +87,9 @@
|
|||
/* Define to 1 if you have the <limits.h> header file. */
|
||||
#define HAVE_LIMITS_H 1
|
||||
|
||||
/* Define to 1 if .lz (lzip) decompression support is enabled. */
|
||||
#define HAVE_LZIP_DECODER 1
|
||||
|
||||
/* Define to 1 to enable bt2 match finder. */
|
||||
#define HAVE_MF_BT2 1
|
||||
|
||||
|
|
|
@ -243,6 +243,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\common\index_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_encoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_hash.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\lzip_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\outqueue.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_encoder.c" />
|
||||
|
@ -271,6 +272,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\lz\lz_encoder_mf.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\rangecoder\price_table.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\armthumb.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\ia64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\powerpc.c" />
|
||||
|
@ -322,6 +324,7 @@
|
|||
<ClInclude Include="..\..\src\liblzma\common\index_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\index_encoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\memcmplen.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\lzip_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\outqueue.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_flags_common.h" />
|
||||
|
|
|
@ -275,6 +275,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\common\index_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_encoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_hash.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\lzip_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\outqueue.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_encoder.c" />
|
||||
|
@ -303,6 +304,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\lz\lz_encoder_mf.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\rangecoder\price_table.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\armthumb.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\ia64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\powerpc.c" />
|
||||
|
@ -354,6 +356,7 @@
|
|||
<ClInclude Include="..\..\src\liblzma\common\index_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\index_encoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\memcmplen.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\lzip_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\outqueue.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_flags_common.h" />
|
||||
|
|
|
@ -21,6 +21,9 @@
|
|||
/* Define to 1 if arm decoder is enabled. */
|
||||
#define HAVE_DECODER_ARM 1
|
||||
|
||||
/* Define to 1 if arm64 decoder is enabled. */
|
||||
#define HAVE_DECODER_ARM64 1
|
||||
|
||||
/* Define to 1 if armthumb decoder is enabled. */
|
||||
#define HAVE_DECODER_ARMTHUMB 1
|
||||
|
||||
|
@ -51,6 +54,9 @@
|
|||
/* Define to 1 if arm encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARM 1
|
||||
|
||||
/* Define to 1 if arm64 encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARM64 1
|
||||
|
||||
/* Define to 1 if armthumb encoder is enabled. */
|
||||
#define HAVE_ENCODER_ARMTHUMB 1
|
||||
|
||||
|
@ -81,6 +87,9 @@
|
|||
/* Define to 1 if you have the <limits.h> header file. */
|
||||
#define HAVE_LIMITS_H 1
|
||||
|
||||
/* Define to 1 if .lz (lzip) decompression support is enabled. */
|
||||
#define HAVE_LZIP_DECODER 1
|
||||
|
||||
/* Define to 1 to enable bt2 match finder. */
|
||||
#define HAVE_MF_BT2 1
|
||||
|
||||
|
|
|
@ -244,6 +244,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\common\index_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_encoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_hash.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\lzip_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\outqueue.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_encoder.c" />
|
||||
|
@ -272,6 +273,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\lz\lz_encoder_mf.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\rangecoder\price_table.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\armthumb.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\ia64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\powerpc.c" />
|
||||
|
@ -323,6 +325,7 @@
|
|||
<ClInclude Include="..\..\src\liblzma\common\index_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\index_encoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\memcmplen.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\lzip_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\outqueue.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_flags_common.h" />
|
||||
|
|
|
@ -276,6 +276,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\common\index_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_encoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\index_hash.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\lzip_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\outqueue.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_decoder.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\common\stream_buffer_encoder.c" />
|
||||
|
@ -304,6 +305,7 @@
|
|||
<ClCompile Include="..\..\src\liblzma\lz\lz_encoder_mf.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\rangecoder\price_table.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\arm64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\armthumb.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\ia64.c" />
|
||||
<ClCompile Include="..\..\src\liblzma\simple\powerpc.c" />
|
||||
|
@ -355,6 +357,7 @@
|
|||
<ClInclude Include="..\..\src\liblzma\common\index_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\index_encoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\memcmplen.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\lzip_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\outqueue.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_decoder.h" />
|
||||
<ClInclude Include="..\..\src\liblzma\common\stream_flags_common.h" />
|
||||
|
|
Loading…
Reference in a new issue