mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 13:23:25 +03:00
86ee3e15a4
which is now capable of dealing with additional properties in an appropriate manner
20 lines
832 B
Plaintext
20 lines
832 B
Plaintext
local most-deps = [ glob *.cpp : ExtractionPhrasePair.cpp *Test.cpp *-main.cpp ] ;
|
|
#Build .o files with include path setting, reused.
|
|
for local d in $(most-deps) {
|
|
obj $(d:B).o : $(d) ;
|
|
}
|
|
#and stuff them into an alias.
|
|
alias deps : $(most-deps:B).o ..//z ..//boost_iostreams ../moses//ThreadPool ../moses//Util ../util//kenutil ;
|
|
|
|
#ExtractionPhrasePair.cpp requires that main define some global variables.
|
|
#Build the mains that do not need these global variables.
|
|
for local m in [ glob *-main.cpp : score-main.cpp ] {
|
|
exe [ MATCH "(.*)-main.cpp" : $(m) ] : $(m) deps ;
|
|
}
|
|
|
|
#The side dishes that use ExtractionPhrasePair.cpp
|
|
exe score : ExtractionPhrasePair.cpp score-main.cpp deps ;
|
|
|
|
import testing ;
|
|
run ScoreFeatureTest.cpp ExtractionPhrasePair.cpp deps ..//boost_unit_test_framework ..//boost_iostreams : : test.domain ;
|