Add test to unzip type 1 blocks

This commit is contained in:
atxr 2024-02-20 12:35:17 +01:00
parent 48aba6093b
commit f778d01d74
2 changed files with 152 additions and 1 deletions

View file

@ -2,4 +2,7 @@ add_executable(test_get_cdh ${CMAKE_CURRENT_SOURCE_DIR}/test_get_cdh.c)
target_link_libraries(test_get_cdh PUBLIC libmineziper)
add_executable(test_decode_huffman_tree ${CMAKE_CURRENT_SOURCE_DIR}/test_decode_huffman_tree.c)
target_link_libraries(test_decode_huffman_tree PUBLIC libmineziper)
target_link_libraries(test_decode_huffman_tree PUBLIC libmineziper)
add_executable(test_decode_fixed_tree ${CMAKE_CURRENT_SOURCE_DIR}/test_decode_fixed_tree.c)
target_link_libraries(test_decode_fixed_tree PUBLIC libmineziper)