initial commit

This commit is contained in:
2025-09-01 20:47:58 +08:00
commit 12c51b5ddb
843 changed files with 475321 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
set(BZLIB_SOURCE_FILES
bzlib.h
blocksort.c
huffman.c
crctable.c
randtable.c
compress.c
decompress.c
bzlib.c
)
add_library(bzip2 STATIC
${BZLIB_SOURCE_FILES}
)