Jamfile.v2 634 B

1234567891011121314151617181920212223
  1. # Copyright (C) 2001-2003
  2. # William E. Kempf
  3. #
  4. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. project boost/thread/example
  7. : requirements <library>../build//boost_thread <threading>multi
  8. ;
  9. exe monitor : monitor.cpp ;
  10. exe starvephil : starvephil.cpp ;
  11. exe tennis : tennis.cpp ;
  12. exe condition : condition.cpp ;
  13. exe mutex : mutex.cpp ;
  14. exe once : once.cpp ;
  15. exe recursive_mutex : recursive_mutex.cpp ;
  16. exe thread : thread.cpp ;
  17. exe thread_group : thread_group.cpp ;
  18. exe tss : tss.cpp ;
  19. exe xtime : xtime.cpp ;