diff options
author | Kenneth Heafield <github@kheafield.com> | 2012-05-11 19:00:26 -0400 |
---|---|---|
committer | Kenneth Heafield <github@kheafield.com> | 2012-05-11 19:00:26 -0400 |
commit | e1cc454db3be1a5eedc3dba7022e813a772696d7 (patch) | |
tree | c2d1291a51f9117ec70e6ae02affb75d5e4ac3c9 /klm/lm | |
parent | b84c2f7a650949dd8fa2e77ccf0362fc025b3ca6 (diff) |
Add just enough jam to compile the decoder.
Diffstat (limited to 'klm/lm')
-rw-r--r-- | klm/lm/Jamfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/klm/lm/Jamfile b/klm/lm/Jamfile new file mode 100644 index 00000000..b84dbb35 --- /dev/null +++ b/klm/lm/Jamfile @@ -0,0 +1,14 @@ +lib kenlm : bhiksha.cc binary_format.cc config.cc lm_exception.cc model.cc quantize.cc read_arpa.cc search_hashed.cc search_trie.cc trie.cc trie_sort.cc virtual_interface.cc vocab.cc ../util//kenutil : <include>.. : : <include>.. <library>../util//kenutil ; + +import testing ; + +run left_test.cc ../util//kenutil kenlm ../..//boost_unit_test_framework : : test.arpa ; +run model_test.cc ../util//kenutil kenlm ../..//boost_unit_test_framework : : test.arpa test_nounk.arpa ; + +exe query : ngram_query.cc kenlm ../util//kenutil ; +exe build_binary : build_binary.cc kenlm ../util//kenutil ; + +install legacy : build_binary query + : <location>$(TOP)/klm/lm <install-type>EXE <install-dependencies>on <link>shared:<dll-path>$(TOP)/klm/lm <link>shared:<install-type>LIB ; + +alias programs : build_binary query ; |