Index: build/Jamfile.v2 =================================================================== --- build/Jamfile.v2 (revision 61695) +++ build/Jamfile.v2 (working copy) @@ -5,9 +5,14 @@ project boost/xint : source-location ../src - : + : requirements + /boost//headers + multi:XINT_THREADSAFE + : usage-requirements + multi:XINT_THREADSAFE ; + SOURCES = base_integer.cpp data_t.cpp Index: test/Jamfile =================================================================== --- test/Jamfile (revision 61695) +++ test/Jamfile (working copy) @@ -1,22 +1,27 @@ +project xint/test + : requirements + gcc:-fno-strict-aliasing -lib boost_xint : : boost_xint ; -lib boost_test : : boost_unit_test_framework ; + ../build//boost_xint + /boost/test//boost_unit_test_framework + ; -exe test - : - # Source code files - test_main.cpp test_streams.cpp test_add.cpp test_bit_manipulations.cpp - test_convert.cpp test_divide.cpp test_multiply.cpp test_monty.cpp - test_compare.cpp test_fixed.cpp test_powers.cpp test_modular.cpp - test_misc.cpp +import testing ; - # Boost libraries - boost_xint - boost_test - : - ../ - # For GCC only - -fno-strict-aliasing - ; +alias dummy + : +[ run test_streams.cpp ] +[ run test_add.cpp ] +[ run test_bit_manipulations.cpp ] +[ run test_convert.cpp ] +[ run test_divide.cpp ] +[ run test_multiply.cpp ] +[ run test_monty.cpp ] +[ run test_compare.cpp ] +[ run test_fixed.cpp ] +[ run test_powers.cpp ] +[ run test_modular.cpp ] +[ run test_misc.cpp ] + ;