Jamfile.v2 759 B

1234567891011121314151617181920212223242526272829
  1. # Boost Filesystem Library Tutorial Jamfile
  2. # (C) Copyright Beman Dawes 2010
  3. # (C) Copyright Vladimir Prus 2003
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # See www.boost.org/LICENSE_1_0.txt
  6. # Library home page: http://www.boost.org/libs/filesystem
  7. project
  8. : requirements
  9. <library>/boost/filesystem//boost_filesystem
  10. ;
  11. exe tut1 : tut1.cpp ;
  12. exe tut2 : tut2.cpp ;
  13. exe tut3 : tut3.cpp ;
  14. exe tut4 : tut4.cpp ;
  15. exe tut5 : tut5.cpp ;
  16. exe path_info : path_info.cpp ;
  17. install tut1-copy : tut1 : <location>. ;
  18. install tut2-copy : tut2 : <location>. ;
  19. install tut3-copy : tut3 : <location>. ;
  20. install tut4-copy : tut4 : <location>. ;
  21. install tut5-copy : tut5 : <location>. ;
  22. install path_info-copy : path_info : <location>. ;