summaryrefslogtreecommitdiff
path: root/training/Jamfile
blob: b28a13e3ff576bdf84b001a9e22e9cc5781d6e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import testing ;
import option ;

lib training : 
  ..//utils
  ..//mteval
  ..//decoder
  ../klm/lm//kenlm
  ..//boost_program_options
  ttables.cc
  : <include>.
  : :
  <library>..//decoder
  <library>../klm/lm//kenlm
  <library>..//utils
  <library>..//mteval
  <library>..//boost_program_options
  ;

exe model1 : model1.cc : <include>../decoder ;

# // all_tests [ glob *_test.cc ] : cdec_lib : <testing.arg>$(TOP)/decoder/test_data ;

alias programs : model1 ;