Jamfile.v2 657 B

12345678910111213141516171819202122232425
  1. # Boost Filesystem Library Example Jamfile
  2. # (C) Copyright Vladimir Prus 2003
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # See www.boost.org/LICENSE_1_0.txt
  5. # Library home page: http://www.boost.org/libs/filesystem
  6. project
  7. : requirements
  8. <library>/boost/filesystem//boost_filesystem
  9. <link>static
  10. ;
  11. exe tut0 : tut0.cpp ;
  12. exe tut1 : tut1.cpp ;
  13. exe tut2 : tut2.cpp ;
  14. exe tut3 : tut3.cpp ;
  15. exe tut4 : tut4.cpp ;
  16. exe tut5 : tut5.cpp ;
  17. exe path_info : path_info.cpp ;
  18. exe file_status : file_status.cpp ;
  19. exe file_size : file_size.cpp ;
  20. exe directory_symlink_parent_resolution : directory_symlink_parent_resolution.cpp ;