Files
boost_throw_exception/test/Jamfile.v2

22 lines
569 B
Plaintext
Raw Normal View History

2014-06-03 01:52:12 +03:00
# Boost Exception Library test Jamfile
#
# Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
import testing ;
project
: requirements
<link>static
<exception-handling>on
;
2014-06-03 19:46:35 +03:00
run throw_exception_test.cpp ;
run throw_exception_no_exceptions_test.cpp ;
run throw_exception_no_integration_test.cpp ;
run throw_exception_no_both_test.cpp ;
2014-06-03 01:52:12 +03:00
compile-fail throw_exception_fail.cpp ;