]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
updated CMake and VS projects to support decoder for v0.7 format
authorinikep <inikep@gmail.com>
Mon, 25 Jul 2016 15:49:49 +0000 (17:49 +0200)
committerinikep <inikep@gmail.com>
Mon, 25 Jul 2016 15:49:49 +0000 (17:49 +0200)
.travis.yml
projects/VS2008/zstd/zstd.vcproj
projects/VS2010/zstd/zstd.vcxproj
projects/cmake/lib/CMakeLists.txt

index f122d41b0a5b06798ae4f0f5f5b64b93ec3532df..6cd3f5f620ef41d8f5b82971ca14b7135768b1e4 100644 (file)
@@ -47,9 +47,9 @@ matrix:
     - os: linux
       sudo: required
       env: PLATFORM="Ubuntu 12.04" CMD="make libc6install && make -C programs test32"
-    #- os: linux
-    #  sudo: required
-    #  env: PLATFORM="Ubuntu 12.04" CMD="make -C tests versionsTest"
+    - os: linux
+      sudo: required
+      env: PLATFORM="Ubuntu 12.04" CMD="make -C tests versionsTest"
     - os: linux
       sudo: required
       env: PLATFORM="Ubuntu 12.04" CMD="make libc6install asan32"
index 129192a88444dfaa89d4d749e4bddf1b8474b7ff..85a9f6bdc7199a5fa8454c324bc03e25e629091b 100644 (file)
                                RelativePath="..\..\..\lib\legacy\zstd_v06.c"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\legacy\zstd_v07.c"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\programs\zstdcli.c"
                                >
                                RelativePath="..\..\..\lib\legacy\zstd_v06.h"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\legacy\zstd_v07.h"
+                               >
+                       </File>
                </Filter>
        </Files>
        <Globals>
index ed25f93d4988cdae374722f28e144afb37a0b408..2dbfc3411f8e0bacece8f4e20520ace9bebd0834 100644 (file)
@@ -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">
   <ItemGroup Label="ProjectConfigurations">
     <ProjectConfiguration Include="Debug|Win32">
@@ -38,6 +38,7 @@
     <ClCompile Include="..\..\..\lib\legacy\zstd_v04.c" />
     <ClCompile Include="..\..\..\lib\legacy\zstd_v05.c" />
     <ClCompile Include="..\..\..\lib\legacy\zstd_v06.c" />
+    <ClCompile Include="..\..\..\lib\legacy\zstd_v07.c" />
     <ClCompile Include="..\..\..\programs\bench.c" />
     <ClCompile Include="..\..\..\programs\datagen.c" />
     <ClCompile Include="..\..\..\programs\dibio.c" />
@@ -62,6 +63,7 @@
     <ClInclude Include="..\..\..\lib\legacy\zstd_v04.h" />
     <ClInclude Include="..\..\..\lib\legacy\zstd_v05.h" />
     <ClInclude Include="..\..\..\lib\legacy\zstd_v06.h" />
+    <ClInclude Include="..\..\..\lib\legacy\zstd_v07.h" />
     <ClInclude Include="..\..\..\programs\bench.h" />
     <ClInclude Include="..\..\..\programs\datagen.h" />
     <ClInclude Include="..\..\..\programs\dibio.h" />
index ca841a96677ac97cb6190bb4c4e8eecdadc0ec1e..36e8afa1d2f2d8d2b3d0df86e3f2fc99c5ccce8d 100644 (file)
@@ -93,7 +93,8 @@ IF (ZSTD_LEGACY_SUPPORT)
             ${LIBRARY_LEGACY_DIR}/zstd_v03.c
             ${LIBRARY_LEGACY_DIR}/zstd_v04.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}
             ${LIBRARY_LEGACY_DIR}/zstd_legacy.h
@@ -102,7 +103,8 @@ IF (ZSTD_LEGACY_SUPPORT)
             ${LIBRARY_LEGACY_DIR}/zstd_v03.h
             ${LIBRARY_LEGACY_DIR}/zstd_v04.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)
 
 IF (MSVC)