Jamfile.v2 715 B

12345678910111213141516171819202122232425
  1. # Boost System Library Build Jamfile
  2. # (C) Copyright Beman Dawes 2002, 2006
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # (See accompanying file LICENSE_1_0.txt or www.boost.org/LICENSE_1_0.txt)
  5. # See library home page at http://www.boost.org/libs/system
  6. project boost/system
  7. : source-location ../src
  8. : usage-requirements # pass these requirement to dependents (i.e. users)
  9. <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
  10. <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
  11. ;
  12. SOURCES = error_code ;
  13. lib boost_system
  14. : $(SOURCES).cpp
  15. : <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
  16. <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
  17. ;
  18. boost-install boost_system ;