]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/filesystem/example/test/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / filesystem / example / test / Jamfile.v2
1 # Boost Filesystem Library Tutorial Jamfile
2
3 # (C) Copyright Beman Dawes 2010
4 # (C) Copyright Vladimir Prus 2003
5
6 # Distributed under the Boost Software License, Version 1.0.
7 # See www.boost.org/LICENSE_1_0.txt
8
9 # Library home page: http://www.boost.org/libs/filesystem
10
11 project
12 : requirements
13 <library>/boost/filesystem//boost_filesystem
14 <library>/boost/system//boost_system
15 <toolset>msvc:<asynch-exceptions>on
16 ;
17
18 exe tut1 : tut1.cpp ;
19 exe tut2 : tut2.cpp ;
20 exe tut3 : tut3.cpp ;
21 exe tut4 : tut4.cpp ;
22 exe tut5 : tut5.cpp ;
23 exe path_info : path_info.cpp ;
24
25 install tut1-copy : tut1 : <location>. ;
26 install tut2-copy : tut2 : <location>. ;
27 install tut3-copy : tut3 : <location>. ;
28 install tut4-copy : tut4 : <location>. ;
29 install tut5-copy : tut5 : <location>. ;
30 install path_info-copy : path_info : <location>. ;
31