blob: c9a8ee76552afaf716be66d3159e91cd18f0c5ec (
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
26
27
28
|
path-constant TOP : . ;
include $(TOP)/sanity.jam ;
boost 104400 ;
external-lib z ;
if [ test_header google/dense_hash_map ] {
requirements += <define>HAVE_SPARSEHASH ;
}
if [ test_header boost/serialization/map.hpp ] && [ test_library boost_serialization ] {
requirements += <define>HAVE_BOOST_ARCHIVE_TEXT_OARCHIVE_HPP ;
}
project : requirements $(requirements) ;
project : default-build <threading>single <warnings>on <variant>release ;
install-bin-libs utils//programs mteval//programs klm/lm//programs decoder//cdec phrasinator//programs ;
build-projects mteval decoder klm/lm ;
#Compile everything ending with _test.cc into a test and run it.
rule all_tests ( targets * : dependencies : properties * ) {
targets ?= [ glob *_test.cc ] ;
for t in $(targets) {
local base = [ MATCH "^(.*).cc$" : $(t) ] ;
unit-test $(base) : $(t) $(dependencies) ..//boost_unit_test_framework : $(properties) ;
}
}
|