Huffman Compression

This commit is contained in:
2024-04-15 16:58:02 +05:30
parent b55c5a4192
commit cfa0cc7462
11 changed files with 381 additions and 1 deletions

11
app/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
if(COMPILE_COMPRESSOR)
add_executable(${COMPRESSOR} "main-c.c")
target_link_libraries(${COMPRESSOR} PUBLIC ${CLIBRARY} ${HUFFMAN_LIBRARY})
target_include_directories(${COMPRESSOR} PUBLIC "../include")
endif()
if(COMPILE_EXTRACTOR)
add_executable(${EXTRACTOR} "main-e.c")
target_link_libraries(${EXTRACTOR} PUBLIC ${CLIBRARY} ${HUFFMAN_LIBRARY})
target_include_directories(${EXTRACTOR} PUBLIC "../include")
endif()