1# copyright John Maddock 2003
2# Use, modification and distribution are subject to the
3# Boost Software License, Version 1.0. (See accompanying file
4# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6lib link_test : link_test.cpp
7    : <link>shared <runtime-link>shared
8      # This is needed to make the test work, I'm unsure if this
9      # should be set globally.
10      <define>BOOST_DYN_LINK=1
11      # Override <threading>multi inherited from parent.
12      <threading>single
13    :
14        debug release
15    ;
16
17run main.cpp link_test : : : <define>BOOST_DYN_LINK=1 <define>BOOST_CONFIG_NO_LIB <link>shared <runtime-link>shared <threading>single : link_test_test ;
18
19
20