Jamfile.v2 428 B

12345678910111213
  1. # (C) Copyright 2009: Tim Blechmann
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. project boost/lockfree/example
  5. : requirements
  6. <library>../../thread/build//boost_thread/
  7. <library>../../atomic/build//boost_atomic
  8. ;
  9. exe queue : queue.cpp ;
  10. exe stack : stack.cpp ;
  11. exe spsc_queue : spsc_queue.cpp ;