Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > d3c732bcddee997381ae7599db6439ca > files > 741

boost-examples-1.60.0-6.1.mga6.noarch.rpm

# 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
      <library>/boost/system//boost_system
      <toolset>msvc:<asynch-exceptions>on
      <link>static
    ;
    
exe tut0 : tut0.cpp ;
exe tut1 : tut1.cpp ;
exe tut2 : tut2.cpp ;
exe tut3 : tut3.cpp ;
exe tut4 : tut4.cpp ;
exe tut5 : tut5.cpp ;
exe path_info : path_info.cpp ;
exe file_status : file_status.cpp ;
exe file_size : file_size.cpp ;
exe directory_symlink_parent_resolution : directory_symlink_parent_resolution.cpp ;