• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
11project
12    : requirements
13      <library>/boost/filesystem//boost_filesystem
14    ;
15
16exe tut1 : tut1.cpp ;
17exe tut2 : tut2.cpp ;
18exe tut3 : tut3.cpp ;
19exe tut4 : tut4.cpp ;
20exe tut5 : tut5.cpp ;
21exe path_info : path_info.cpp ;
22
23install tut1-copy : tut1 : <location>. ;
24install tut2-copy : tut2 : <location>. ;
25install tut3-copy : tut3 : <location>. ;
26install tut4-copy : tut4 : <location>. ;
27install tut5-copy : tut5 : <location>. ;
28install path_info-copy : path_info : <location>. ;
29
30