updated project to support legacy v0.8 decoder
This commit is contained in:
@@ -428,6 +428,10 @@
|
|||||||
RelativePath="..\..\..\lib\legacy\zstd_v06.c"
|
RelativePath="..\..\..\lib\legacy\zstd_v06.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\lib\legacy\zstd_v08.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\..\programs\zstdcli.c"
|
RelativePath="..\..\..\programs\zstdcli.c"
|
||||||
>
|
>
|
||||||
@@ -538,6 +542,10 @@
|
|||||||
RelativePath="..\..\..\lib\legacy\zstd_v06.h"
|
RelativePath="..\..\..\lib\legacy\zstd_v06.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\lib\legacy\zstd_v08.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
@@ -38,6 +38,7 @@
|
|||||||
<ClCompile Include="..\..\..\lib\legacy\zstd_v04.c" />
|
<ClCompile Include="..\..\..\lib\legacy\zstd_v04.c" />
|
||||||
<ClCompile Include="..\..\..\lib\legacy\zstd_v05.c" />
|
<ClCompile Include="..\..\..\lib\legacy\zstd_v05.c" />
|
||||||
<ClCompile Include="..\..\..\lib\legacy\zstd_v06.c" />
|
<ClCompile Include="..\..\..\lib\legacy\zstd_v06.c" />
|
||||||
|
<ClCompile Include="..\..\..\lib\legacy\zstd_v08.c" />
|
||||||
<ClCompile Include="..\..\..\programs\bench.c" />
|
<ClCompile Include="..\..\..\programs\bench.c" />
|
||||||
<ClCompile Include="..\..\..\programs\datagen.c" />
|
<ClCompile Include="..\..\..\programs\datagen.c" />
|
||||||
<ClCompile Include="..\..\..\programs\dibio.c" />
|
<ClCompile Include="..\..\..\programs\dibio.c" />
|
||||||
@@ -62,6 +63,7 @@
|
|||||||
<ClInclude Include="..\..\..\lib\legacy\zstd_v04.h" />
|
<ClInclude Include="..\..\..\lib\legacy\zstd_v04.h" />
|
||||||
<ClInclude Include="..\..\..\lib\legacy\zstd_v05.h" />
|
<ClInclude Include="..\..\..\lib\legacy\zstd_v05.h" />
|
||||||
<ClInclude Include="..\..\..\lib\legacy\zstd_v06.h" />
|
<ClInclude Include="..\..\..\lib\legacy\zstd_v06.h" />
|
||||||
|
<ClInclude Include="..\..\..\lib\legacy\zstd_v08.h" />
|
||||||
<ClInclude Include="..\..\..\programs\bench.h" />
|
<ClInclude Include="..\..\..\programs\bench.h" />
|
||||||
<ClInclude Include="..\..\..\programs\datagen.h" />
|
<ClInclude Include="..\..\..\programs\datagen.h" />
|
||||||
<ClInclude Include="..\..\..\programs\dibio.h" />
|
<ClInclude Include="..\..\..\programs\dibio.h" />
|
||||||
|
|||||||
@@ -93,7 +93,8 @@ IF (ZSTD_LEGACY_SUPPORT)
|
|||||||
${LIBRARY_LEGACY_DIR}/zstd_v03.c
|
${LIBRARY_LEGACY_DIR}/zstd_v03.c
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v04.c
|
${LIBRARY_LEGACY_DIR}/zstd_v04.c
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v05.c
|
${LIBRARY_LEGACY_DIR}/zstd_v05.c
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v06.c)
|
${LIBRARY_LEGACY_DIR}/zstd_v06.c
|
||||||
|
${LIBRARY_LEGACY_DIR}/zstd_v08.c)
|
||||||
|
|
||||||
SET(Headers ${Headers}
|
SET(Headers ${Headers}
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_legacy.h
|
${LIBRARY_LEGACY_DIR}/zstd_legacy.h
|
||||||
@@ -102,7 +103,8 @@ IF (ZSTD_LEGACY_SUPPORT)
|
|||||||
${LIBRARY_LEGACY_DIR}/zstd_v03.h
|
${LIBRARY_LEGACY_DIR}/zstd_v03.h
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v04.h
|
${LIBRARY_LEGACY_DIR}/zstd_v04.h
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v05.h
|
${LIBRARY_LEGACY_DIR}/zstd_v05.h
|
||||||
${LIBRARY_LEGACY_DIR}/zstd_v06.h)
|
${LIBRARY_LEGACY_DIR}/zstd_v06.h
|
||||||
|
${LIBRARY_LEGACY_DIR}/zstd_v08.h)
|
||||||
ENDIF (ZSTD_LEGACY_SUPPORT)
|
ENDIF (ZSTD_LEGACY_SUPPORT)
|
||||||
|
|
||||||
IF (MSVC)
|
IF (MSVC)
|
||||||
|
|||||||
Reference in New Issue
Block a user