diff options
Diffstat (limited to 'src/compression')
-rw-r--r-- | src/compression/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/compression/CMakeLists.txt b/src/compression/CMakeLists.txt index 91155e0..171d2b3 100644 --- a/src/compression/CMakeLists.txt +++ b/src/compression/CMakeLists.txt @@ -2,3 +2,9 @@ add_library(tng_compress bwlzh.c bwt.c coder.c dict.c fixpoint.c huffman.c huffm if(UNIX) target_link_libraries(tng_compress m) endif() + +set_property(TARGET tng_compress PROPERTY LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + +install(TARGETS tng_compress + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib) |