diff options
author | Kenneth Heafield <github@kheafield.com> | 2012-09-11 14:49:58 +0100 |
---|---|---|
committer | Kenneth Heafield <github@kheafield.com> | 2012-09-11 14:49:58 +0100 |
commit | dea088773b024d6d5c65eab2883910483f99bc0a (patch) | |
tree | 845dbffb45a14f6edd8f73d7dc8834b64fe5218f /Jamroot | |
parent | 45c9efc7d558dbe160056f02e74df1fee5d2d0e5 (diff) |
Minor build fixes
Diffstat (limited to 'Jamroot')
-rw-r--r-- | Jamroot | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ if [ test_header boost/serialization/map.hpp ] && [ test_library boost_serializa requirements += <define>HAVE_BOOST_ARCHIVE_TEXT_OARCHIVE_HPP ; } -project : requirements $(requirements) <toolset>darwin:<link>static ; +project : requirements $(requirements) <toolset>darwin:<link>static <library>boost_system ; project : default-build <warnings>on <variant>release ; install-bin-libs dpmert//programs utils//programs mteval//programs klm/lm//programs training//liblbfgs decoder//cdec phrasinator//programs mira//kbest_mira ; @@ -40,6 +40,6 @@ 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) ; + unit-test $(base) : $(t) $(dependencies) /top//boost_unit_test_framework : $(properties) ; } } |