Jamfile.v2 850 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # This is Boost Jamfile for Boost.Build V2.
  3. # Currently, known to work on Linux with gcc
  4. #
  5. # To build Boost with it, run
  6. #
  7. # bjam --v2 link=static
  8. #
  9. # from the top-level directory
  10. project boost
  11. : requirements <include>$(BOOST_ROOT)
  12. # disable auto-linking for all targets here,
  13. # primarily because it caused troubles with V2
  14. <define>BOOST_ALL_NO_LIB=1
  15. : usage-requirements <include>$(BOOST_ROOT)
  16. : build-dir bin.v2
  17. ;
  18. build-project libs/test/build ;
  19. build-project libs/date_time/build ;
  20. build-project libs/regex/build ;
  21. build-project libs/signals/build ;
  22. build-project libs/graph/build ;
  23. # Comment this out if you don't have Python2.2 installed
  24. build-project libs/python/build ;
  25. build-project libs/thread/build ;
  26. build-project libs/filesystem/build ;
  27. build-project libs/program_options/build ;
粤ICP备19079148号