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

20
CMakeLists.txt Normal file
View File

@@ -0,0 +1,20 @@
cmake_minimum_required(VERSION 3.28)
project(CompressionAlgorithms VERSION 1.0.0 LANGUAGES C CXX)
set(CMAKE_C_STANDARD 17)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_C_EXTENSIONS OFF)
set(CLIBRARY Clibrary)
set(HUFFMAN_LIBRARY Huffman_library)
set(COMPRESSOR Compressor)
set(EXTRACTOR Extractor)
option(COMPILE_COMPRESSOR "Whether to compile the compressor" OFF)
option(COMPILE_EXTRACTOR "Whether to compile the extractor" OFF)
add_subdirectory(clib)
add_subdirectory("Huffman CODING")
add_subdirectory(app)