Jamfile.v2 469 B

123456789101112131415161718
  1. # Jamfile.v2
  2. #
  3. # Copyright (c) 2010
  4. # Steven Watanabe
  5. #
  6. # Distributed under the Boost Software License, Version 1.0. (See
  7. # accompanying file LICENSE_1_0.txt or copy at
  8. # http://www.boost.org/LICENSE_1_0.txt)
  9. project /boost/random
  10. : source-location ../src
  11. : requirements <link>shared:<define>BOOST_RANDOM_DYN_LINK
  12. : usage-requirements <link>shared:<define>BOOST_RANDOM_DYN_LINK
  13. ;
  14. lib boost_random : [ glob *.cpp ] /boost//system ;
  15. boost-install boost_random ;