]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Add threading and pool to build configs
authorNick Terrell <terrelln@fb.com>
Fri, 27 Jan 2017 20:29:27 +0000 (12:29 -0800)
committerNick Terrell <terrelln@fb.com>
Fri, 27 Jan 2017 20:29:27 +0000 (12:29 -0800)
build/VS2005/zstdlib/zstdlib.vcproj
build/VS2008/zstdlib/zstdlib.vcproj
build/VS2010/libzstd-dll/libzstd-dll.vcxproj
build/VS2010/libzstd/libzstd.vcxproj
build/cmake/lib/CMakeLists.txt

index 828cc8285cbf871759dc3d8e82361017b4347a4b..f4c9950ffc6cb9c904a8f21aab68605b570ab614 100644 (file)
                                RelativePath="..\..\..\lib\dictBuilder\divsufsort.c"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\common\pool.c"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\lib\common\threading.c"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\lib\common\entropy_common.c"
                                >
                                RelativePath="..\..\..\lib\common\zstd_common.c"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\compress\zstdmt_compress.c"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\lib\compress\zstd_compress.c"
                                >
                                RelativePath="..\..\..\lib\dictBuilder\divsufsort.h"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\common\pool.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\lib\common\threading.h"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\lib\common\error_private.h"
                                >
                                RelativePath="..\..\..\lib\compress\zstd_opt.h"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\compress\zstdmt_compress.h"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\lib\common\zstd_static.h"
                                >
index 69b742d19e87329bb13d9013c409492ae65c9618..cba0ff9082fa28c7c556f2e5e54c219b60f8a237 100644 (file)
                                RelativePath="..\..\..\lib\dictBuilder\divsufsort.c"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\common\pool.c"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\lib\common\threading.c"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\lib\common\entropy_common.c"
                                >
                                RelativePath="..\..\..\lib\common\zstd_common.c"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\compress\zstdmt_compress.c"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\lib\compress\zstd_compress.c"
                                >
                                RelativePath="..\..\..\lib\dictBuilder\divsufsort.h"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\common\pool.h"
+                               >
+                       </File>
+                       <File
+                               RelativePath="..\..\..\lib\common\threading.h"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\lib\common\error_private.h"
                                >
                                RelativePath="..\..\..\lib\compress\zstd_opt.h"
                                >
                        </File>
+                       <File
+                               RelativePath="..\..\..\lib\compress\zstdmt_compress.h"
+                               >
+                       </File>
                        <File
                                RelativePath="..\..\..\lib\common\zstd_static.h"
                                >
index f0feecb2615032c323cd2c3589aa5a2b3ae231ac..1458905171750c563349d8c56af9c7f38b7bc23c 100644 (file)
@@ -19,6 +19,8 @@
     </ProjectConfiguration>
   </ItemGroup>
   <ItemGroup>
+    <ClInclude Include="..\..\..\lib\common\pool.c" />
+    <ClInclude Include="..\..\..\lib\common\threading.c" />
     <ClCompile Include="..\..\..\lib\common\entropy_common.c" />
     <ClCompile Include="..\..\..\lib\common\error_private.c" />
     <ClCompile Include="..\..\..\lib\common\xxhash.c" />
@@ -27,6 +29,7 @@
     <ClCompile Include="..\..\..\lib\compress\fse_compress.c" />
     <ClCompile Include="..\..\..\lib\compress\huf_compress.c" />
     <ClCompile Include="..\..\..\lib\compress\zstd_compress.c" />
+    <ClCompile Include="..\..\..\lib\compress\zstdmt_compress.c" />
     <ClCompile Include="..\..\..\lib\decompress\huf_decompress.c" />
     <ClCompile Include="..\..\..\lib\decompress\zstd_decompress.c" />
     <ClCompile Include="..\..\..\lib\deprecated\zbuff_common.c" />
@@ -44,6 +47,8 @@
     <ClCompile Include="..\..\..\lib\legacy\zstd_v07.c" />
   </ItemGroup>
   <ItemGroup>    
+    <ClInclude Include="..\..\..\lib\common\pool.h" />
+    <ClInclude Include="..\..\..\lib\common\threading.h" />
     <ClInclude Include="..\..\..\lib\common\bitstream.h" />
     <ClInclude Include="..\..\..\lib\common\error_private.h" />
     <ClInclude Include="..\..\..\lib\common\zstd_errors.h" />
@@ -63,6 +68,7 @@
     <ClInclude Include="..\..\..\lib\zstd.h" />
     <ClInclude Include="..\..\..\lib\common\zstd_internal.h" />
     <ClInclude Include="..\..\..\lib\compress\zstd_opt.h" />
+    <ClCompile Include="..\..\..\lib\compress\zstdmt_compress.h" />
   </ItemGroup>
   <ItemGroup>
     <ResourceCompile Include="libzstd-dll.rc" />
index c8d21dd4a1319548617bbbb6e0134fe99aaaa8e2..22d5d4e140e87cbbe9255b6860ec0a1db424bd3d 100644 (file)
@@ -19,6 +19,8 @@
     </ProjectConfiguration>
   </ItemGroup>
   <ItemGroup>
+    <ClCompile Include="..\..\..\lib\common\pool.c" />
+    <ClCompile Include="..\..\..\lib\common\threading.c" />
     <ClCompile Include="..\..\..\lib\common\entropy_common.c" />
     <ClCompile Include="..\..\..\lib\common\error_private.c" />
     <ClCompile Include="..\..\..\lib\common\xxhash.c" />
@@ -27,6 +29,7 @@
     <ClCompile Include="..\..\..\lib\compress\fse_compress.c" />
     <ClCompile Include="..\..\..\lib\compress\huf_compress.c" />
     <ClCompile Include="..\..\..\lib\compress\zstd_compress.c" />
+    <ClCompile Include="..\..\..\lib\compress\zstdmt_compress.c" />
     <ClCompile Include="..\..\..\lib\decompress\huf_decompress.c" />
     <ClCompile Include="..\..\..\lib\decompress\zstd_decompress.c" />
     <ClCompile Include="..\..\..\lib\deprecated\zbuff_common.c" />
@@ -44,6 +47,8 @@
     <ClCompile Include="..\..\..\lib\legacy\zstd_v07.c" />
   </ItemGroup>
   <ItemGroup>    
+    <ClCompile Include="..\..\..\lib\common\pool.h" />
+    <ClCompile Include="..\..\..\lib\common\threading.h" />
     <ClInclude Include="..\..\..\lib\common\bitstream.h" />
     <ClInclude Include="..\..\..\lib\common\error_private.h" />
     <ClInclude Include="..\..\..\lib\common\zstd_errors.h" />
@@ -63,6 +68,7 @@
     <ClInclude Include="..\..\..\lib\zstd.h" />
     <ClInclude Include="..\..\..\lib\common\zstd_internal.h" />
     <ClInclude Include="..\..\..\lib\compress\zstd_opt.h" />
+    <ClInclude Include="..\..\..\lib\compress\zstdmt_compress.h" />
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{8BFD8150-94D5-4BF9-8A50-7BD9929A0850}</ProjectGuid>
index db752784b54284934a136a7f9dddd58462f9bd99..08ae3e9ad335411a3f988de5cc78f7439b98d0c9 100644 (file)
@@ -59,6 +59,8 @@ SET(Sources
 
 SET(Headers
         ${LIBRARY_DIR}/zstd.h
+        ${LIBRARY_DIR}/common/pool.h
+        ${LIBRARY_DIR}/common/threading.h
         ${LIBRARY_DIR}/common/bitstream.h
         ${LIBRARY_DIR}/common/error_private.h
         ${LIBRARY_DIR}/common/zstd_errors.h