summaryrefslogtreecommitdiff
path: root/klm
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-12-05 00:05:28 +0100
committerPatrick Simianer <p@simianer.de>2015-12-05 00:05:28 +0100
commitac8f68ab751cd24a83aa10690b2f3813992a36b6 (patch)
tree292bbfcaf193ab8bbfe4cbf2327932dd999fe4fe /klm
parent9cc64edcdbeb463b27c3ef37c892cc404c5cf8b4 (diff)
fix klm builder build
Diffstat (limited to 'klm')
-rw-r--r--klm/lm/builder/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/klm/lm/builder/CMakeLists.txt b/klm/lm/builder/CMakeLists.txt
index e52875cb..5da01261 100644
--- a/klm/lm/builder/CMakeLists.txt
+++ b/klm/lm/builder/CMakeLists.txt
@@ -24,8 +24,9 @@ set(lmplz_SRCS
sort.hh)
add_executable(lmplz ${lmplz_SRCS})
-target_link_libraries(lmplz klm klm_util_double klm_util_stream klm_util ${Boost_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${LIBLZMA_LIBRARIES})
+target_link_libraries(lmplz klm klm_util_double klm_util_stream klm_util ${Boost_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${LIBLZMA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
set(dump_counts_SRCS print.cc dump_counts_main.cc)
add_executable(dump_counts ${dump_counts_SRCS})
-target_link_libraries(dump_counts klm klm_util_double klm_util_stream klm_util ${Boost_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${LIBLZMA_LIBRARIES})
+target_link_libraries(dump_counts klm klm_util_double klm_util_stream klm_util ${Boost_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${LIBLZMA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
+