mirror of
https://github.com/facebook/zstd.git
synced 2025-09-01 04:42:03 +03:00
updated CMake and VS projects to support decoder for v0.7 format
This commit is contained in:
@@ -47,9 +47,9 @@ matrix:
|
|||||||
- os: linux
|
- os: linux
|
||||||
sudo: required
|
sudo: required
|
||||||
env: PLATFORM="Ubuntu 12.04" CMD="make libc6install && make -C programs test32"
|
env: PLATFORM="Ubuntu 12.04" CMD="make libc6install && make -C programs test32"
|
||||||
#- os: linux
|
- os: linux
|
||||||
# sudo: required
|
sudo: required
|
||||||
# env: PLATFORM="Ubuntu 12.04" CMD="make -C tests versionsTest"
|
env: PLATFORM="Ubuntu 12.04" CMD="make -C tests versionsTest"
|
||||||
- os: linux
|
- os: linux
|
||||||
sudo: required
|
sudo: required
|
||||||
env: PLATFORM="Ubuntu 12.04" CMD="make libc6install asan32"
|
env: PLATFORM="Ubuntu 12.04" CMD="make libc6install asan32"
|
||||||
|
@@ -428,6 +428,10 @@
|
|||||||
RelativePath="..\..\..\lib\legacy\zstd_v06.c"
|
RelativePath="..\..\..\lib\legacy\zstd_v06.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\lib\legacy\zstd_v07.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_v07.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_v07.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_v07.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_v07.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_v07.h)
|
||||||
ENDIF (ZSTD_LEGACY_SUPPORT)
|
ENDIF (ZSTD_LEGACY_SUPPORT)
|
||||||
|
|
||||||
IF (MSVC)
|
IF (MSVC)
|
||||||
|
Reference in New Issue
Block a user