https://github.com/wilkeraziz/mosesdecoder
Raw File
Tip revision: 5e7384393df263802e284fa637ca8595178b4546 authored by W. Ferreira Aziz on 13 April 2016, 14:17:24 UTC
lowercase-keys switch in ClassKenLM
Tip revision: 5e73843
Jamfile
#See ../Jamroot for options.  
import option path ;

build-project training ;

prefix = [ option.get "prefix" ] ;
if $(prefix) {
  prefix = [ path.root $(prefix) [ path.pwd ] ] ;
  location = [ option.get "install-scripts" : : $(prefix)$(GITTAG)/scripts ] ;
} else {
  location = [ option.get "install-scripts" ] ;
}

if $(location) {
  location = [ path.root $(location) [ path.pwd ] ] ;
  install scripts : 
    [ glob-tree README *.js *.pl *.perl *.pm *.py *.sh *.php : tests regression-testing other bin ]
    [ glob share/nonbreaking_prefixes/* ems/example/*.* ems/example/data/* ems/web/* analysis/smtgui/* : ems/web/javascripts ]
    generic/fsa-sample.fsa
    ems/experiment.machines
    ems/experiment.meta
    : <install-source-root>. <location>$(location) ;
}
back to top