diff options
author | Kenneth Heafield <github@kheafield.com> | 2012-05-20 13:32:39 -0400 |
---|---|---|
committer | Kenneth Heafield <github@kheafield.com> | 2012-05-20 13:32:39 -0400 |
commit | bc52c53ec2872a0e41b830308f11400d77b38e76 (patch) | |
tree | c91455707a0af6dce1148dacecbb251e101f093d /decoder | |
parent | a70d6d3ed83a32d3cdf4bcb36a087426a4ed2c31 (diff) |
Rename decoder library, assimilate mira directory
Diffstat (limited to 'decoder')
-rw-r--r-- | decoder/Jamfile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/decoder/Jamfile b/decoder/Jamfile index 871da4f6..06c5bfda 100644 --- a/decoder/Jamfile +++ b/decoder/Jamfile @@ -6,7 +6,7 @@ if [ option.get "with-glc" ] { glc = ff_glc.cc string_util.cc feature-factory.cc ; } -lib cdec_lib : +lib decoder : forest_writer.cc maxtrans_blunsom.cc cdec_ff.cc @@ -66,11 +66,12 @@ lib cdec_lib : <library>..//mteval <library>../klm/lm//kenlm <library>..//boost_program_options + <include>. ; -exe cdec : cdec.cc cdec_lib ..//utils ..//mteval ../klm/lm//kenlm ..//boost_program_options ; +exe cdec : cdec.cc decoder ..//utils ..//mteval ../klm/lm//kenlm ..//boost_program_options ; -all_tests [ glob *_test.cc : cfg_test.cc ] : cdec_lib : <testing.arg>$(TOP)/decoder/test_data ; +all_tests [ glob *_test.cc : cfg_test.cc ] : decoder : <testing.arg>$(TOP)/decoder/test_data ; install legacy : cdec : <location>$(TOP)/cdec <install-type>EXE <install-dependencies>on <link>shared:<dll-path>$(TOP)/cdec <link>shared:<install-type>LIB ; |