Blame view

3rdparty/boost_1_81_0/libs/filesystem/example/Jamfile.v2 696 Bytes
977ed18d   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  # 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 path_info : path_info.cpp : <cxxstd>11 ;
  exe file_status : file_status.cpp ;
  exe file_size : file_size.cpp ;
  exe directory_symlink_parent_resolution : directory_symlink_parent_resolution.cpp ;