summaryrefslogtreecommitdiff
path: root/libs/filesystem/bug/Jamfile.v2
diff options
context:
space:
mode:
Diffstat (limited to 'libs/filesystem/bug/Jamfile.v2')
-rw-r--r--libs/filesystem/bug/Jamfile.v219
1 files changed, 19 insertions, 0 deletions
diff --git a/libs/filesystem/bug/Jamfile.v2 b/libs/filesystem/bug/Jamfile.v2
new file mode 100644
index 000000000..d8d6c0db9
--- /dev/null
+++ b/libs/filesystem/bug/Jamfile.v2
@@ -0,0 +1,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 ;