Jamfile.v2 930 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # (C) Copyright Gennadiy Rozental 2008-2014.
  2. # Use, modification, and distribution are subject to the
  3. # Boost Software License, Version 1.0. (See accompanying file
  4. # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #
  6. # See http://www.boost.org/libs/test for the library home page.
  7. # Project
  8. project libs/test/tools/console_test_runner ;
  9. alias unit_test_framework
  10. : # sources
  11. /boost//unit_test_framework
  12. ;
  13. alias test_runner_src
  14. : # sources
  15. src/console_test_runner.cpp
  16. unit_test_framework
  17. ;
  18. # make aliases explicit so the libraries will only be built when requested
  19. explicit unit_test_framework ;
  20. explicit test_runner_src ;
  21. lib dl ;
  22. lib test_runner_test : test/test_runner_test.cpp unit_test_framework ;
  23. exe console_test_runner
  24. : test_runner_src
  25. dl
  26. ;
  27. exe console_test_runner
  28. : test_runner_src
  29. : <target-os>windows
  30. ;