summaryrefslogtreecommitdiff
path: root/libs/filesystem/bug/Jamfile.v2
blob: d8d6c0db9331cf0ac83bce114dbf0e347c987e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Boost Filesystem Library Bug report Jamfile
 
# Copyright Beman Dawes 2014
# 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
    ;
    
exe bug : bug.cpp : <link>static ;

# install in ./bin; invoke via "b2", not "b2 install"
install bin : bug ;