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