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 /mteval/Jamfile | |
parent | b84c2f7a650949dd8fa2e77ccf0362fc025b3ca6 (diff) |
Add just enough jam to compile the decoder.
Diffstat (limited to 'mteval/Jamfile')
-rw-r--r-- | mteval/Jamfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mteval/Jamfile b/mteval/Jamfile new file mode 100644 index 00000000..f671134a --- /dev/null +++ b/mteval/Jamfile @@ -0,0 +1,8 @@ +import testing ; + +lib mteval : ter.cc comb_scorer.cc aer_scorer.cc scorer.cc external_scorer.cc ns.cc ns_ter.cc ns_ext.cc ns_comb.cc ns_docscorer.cc ..//utils : <include>. : : <include>. ; +exe fast_score : fast_score.cc mteval ..//utils ..//boost_program_options ; +exe mbr_kbest : mbr_kbest.cc mteval ..//utils ..//boost_program_options ; +alias programs : fast_score mbr_kbest ; + +unit-test scorer_test : scorer_test.cc mteval ..//utils ..//z ..//boost_unit_test_framework ; |