filesystem/example/Jamfile.v2
2024-02-12 01:05:14 +03:00

42 lines
1.3 KiB
Plaintext

# Boost Filesystem Library Example Jamfile
# (C) Copyright Vladimir Prus 2003
# Distributed under the Boost Software License, Version 1.0.
# See www.boost.org/LICENSE_1_0.txt
# Library home page: http://www.boost.org/libs/filesystem
project
: requirements
<library>/boost/filesystem//boost_filesystem
<link>static
;
exe tut0 : tut0.cpp ;
exe tut1 : tut1.cpp ;
exe tut2 : tut2.cpp ;
exe tut3 : tut3.cpp : <cxxstd>11 ;
exe tut4 : tut4.cpp : <cxxstd>11 ;
exe tut5 : tut5.cpp ;
exe tut6a : tut6a.cpp ;
exe tut6b : tut6b.cpp ;
exe tut6c : tut6c.cpp ;
exe path_info : path_info.cpp : <cxxstd>11 ;
exe file_status : file_status.cpp ;
exe file_size : file_size.cpp ;
exe simple_ls : simple_ls.cpp ;
install tut1-copy : tut1 : <location>. ;
install tut2-copy : tut2 : <location>. ;
install tut3-copy : tut3 : <location>. ;
install tut4-copy : tut4 : <location>. ;
install tut5-copy : tut5 : <location>. ;
install tut6a-copy : tut6a : <location>. ;
install tut6b-copy : tut6b : <location>. ;
install tut6c-copy : tut6c : <location>. ;
install path_info-copy : path_info : <location>. ;
alias tutorial : tut1-copy tut2-copy tut3-copy tut4-copy tut5-copy tut6a-copy tut6b-copy tut6c-copy path_info-copy ;
explicit tut1-copy tut2-copy tut3-copy tut4-copy tut5-copy tut6a-copy tut6b-copy tut6c-copy path_info-copy tutorial ;