comparison DEPENDENCIES/generic/include/boost/container/detail/auto_link.hpp @ 102:f46d142149f5

Whoops, finish that update
author Chris Cannam
date Mon, 07 Sep 2015 11:13:41 +0100
parents
children
comparison
equal deleted inserted replaced
101:c530137014c0 102:f46d142149f5
1 //////////////////////////////////////////////////////////////////////////////
2 //
3 // (C) Copyright Ion Gaztanaga 2007-2013. Distributed under the Boost
4 // Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // See http://www.boost.org/libs/container for documentation.
8 //
9 //////////////////////////////////////////////////////////////////////////////
10 #ifndef BOOST_CONTAINER_DETAIL_AUTO_LINK_HPP_INCLUDED
11 #define BOOST_CONTAINER_DETAIL_AUTO_LINK_HPP_INCLUDED
12
13 #ifndef BOOST_CONFIG_HPP
14 # include <boost/config.hpp>
15 #endif
16
17 #if defined(BOOST_HAS_PRAGMA_ONCE)
18 # pragma once
19 #endif
20
21 //
22 // Automatically link to the correct build variant where possible.
23 //
24 #if !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_CONTAINER_NO_LIB) && !defined(BOOST_CONTAINER_SOURCE)
25 //
26 // Set the name of our library, this will get undef'ed by auto_link.hpp
27 // once it's done with it:
28 //
29 #define BOOST_LIB_NAME boost_container
30 //
31 // If we're importing code from a dll, then tell auto_link.hpp about it:
32 //
33 #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_CONTAINER_DYN_LINK)
34 # define BOOST_DYN_LINK
35 #endif
36 //
37 // And include the header that does the work:
38 //
39 #include <boost/config/auto_link.hpp>
40 #endif // auto-linking disabled
41
42 #endif //#ifndef BOOST_CONTAINER_DETAIL_AUTO_LINK_HPP_INCLUDED