mirror of
https://github.com/Hizenberg469/Compression-Algorithm.git
synced 2026-04-20 02:12:26 +03:00
Huffman Compression
This commit is contained in:
11
app/CMakeLists.txt
Normal file
11
app/CMakeLists.txt
Normal 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()
|
||||
Reference in New Issue
Block a user