Index: tools/console_test_runner/Jamfile.v2 =================================================================== --- tools/console_test_runner/Jamfile.v2 (revision 48857) +++ tools/console_test_runner/Jamfile.v2 (working copy) @@ -7,25 +7,32 @@ # Project project libs/test/tools/console_test_runner ; -import os ; alias unit_test_framework : # sources /boost//unit_test_framework ; +alias test_runner_src + : # sources + src/console_test_runner.cpp + unit_test_framework + ; + # make aliases explicit so the libraries will only be built when requested explicit unit_test_framework ; +explicit test_runner_src ; -if [ os.name ] != NT -{ - lib dl ; -} +lib dl ; - lib test_runner_test : test/test_runner_test.cpp unit_test_framework ; exe console_test_runner - : src/console_test_runner.cpp unit_test_framework - : LINUX:dl + : test_runner_src + dl ; + +exe console_test_runner + : test_runner_src + : windows + ;