blob: 3efd6bbf4d68d84c1b14569037a4c6c9c2a0f8a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
set(source_files bwlzh.c bwt.c coder.c dict.c fixpoint.c huffman.c huffmem.c lz77.c merge_sort.c mtf.c rle.c tng_compress.c vals16.c warnmalloc.c widemuldiv.c xtc2.c xtc3.c)
add_library(tng_compress ${source_files})
# Append the required library dependencies
if(UNIX)
target_link_libraries(tng_compress m)
endif()
install(TARGETS tng_compress
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
|