diff options
author | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2012-05-18 13:16:03 +0200 |
---|---|---|
committer | Patrick Simianer <simianer@cl.uni-heidelberg.de> | 2012-05-18 13:16:03 +0200 |
commit | 47e9deff1c2cbd104d6e2822703cc83df625d8aa (patch) | |
tree | 72d2db8fc921a48e1b6306255ebbe5e7408e034b /Jamroot | |
parent | 37050e861de2b216d3a28f79e111b674c5d142ac (diff) | |
parent | 05b86961fa7e04d47cf729ea27e27c527f895da0 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'Jamroot')
-rw-r--r-- | Jamroot | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -18,16 +18,21 @@ if [ test_header google/dense_hash_map ] || $(with-google-hash) { requirements += <define>HAVE_SPARSEHASH <include>$(with-google-hash) ; } +if [ test_header cmph.h ] || $(with-cmph) { + requirements += <define>HAVE_CMPH <include>$(with-cmph) ; +} + if [ test_header boost/serialization/map.hpp ] && [ test_library boost_serialization ] { requirements += <define>HAVE_BOOST_ARCHIVE_TEXT_OARCHIVE_HPP ; } -project : requirements $(requirements) ; +# project : requirements $(requirements) ; +project : requirements $(requirements) <toolset>darwin:<link>static ; project : default-build <threading>single <warnings>on <variant>release ; -install-bin-libs utils//programs mteval//programs klm/lm//programs decoder//cdec phrasinator//programs ; +install-bin-libs utils//programs mteval//programs klm/lm//programs training//liblbfgs decoder//cdec creg//creg phrasinator//programs ; -build-projects mteval decoder klm/lm ; +build-projects mteval decoder klm/lm training/liblbfgs creg ; #Compile everything ending with _test.cc into a test and run it. rule all_tests ( targets * : dependencies : properties * ) { |