diff options
author | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2015-03-05 00:14:16 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2015-03-05 00:14:16 -0500 |
commit | 55b75d9f94a36de2d3f7eb9eb132b8286ddd2723 (patch) | |
tree | 9632f7b32159b69a0ac12fd55ddf4963ec4874bc /klm/lm/CMakeLists.txt | |
parent | d99c7b9593e5f0c4a408302b82e7bfeaeee665bc (diff) |
deal with possible RT lib dependency
Diffstat (limited to 'klm/lm/CMakeLists.txt')
-rw-r--r-- | klm/lm/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/klm/lm/CMakeLists.txt b/klm/lm/CMakeLists.txt index 5814b623..b95cddee 100644 --- a/klm/lm/CMakeLists.txt +++ b/klm/lm/CMakeLists.txt @@ -1,13 +1,15 @@ INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/..) +find_package(RT) + set(build_binary_SRCS build_binary_main.cc) add_executable(build_binary ${build_binary_SRCS}) -target_link_libraries(build_binary klm klm_util klm_util_double z) +target_link_libraries(build_binary klm klm_util klm_util_double z ${RT_LIBRARIES}) set(ngram_query_SRCS query_main.cc) add_executable(ngram_query ${ngram_query_SRCS}) -target_link_libraries(ngram_query klm klm_util klm_util_double z) +target_link_libraries(ngram_query klm klm_util klm_util_double z ${RT_LIBRARIES}) set(klm_STAT_SRCS bhiksha.hh |