Chris@102: ////////////////////////////////////////////////////////////////////////////// Chris@102: // Chris@102: // (C) Copyright Ion Gaztanaga 2007-2013. Distributed under the Boost Chris@102: // Software License, Version 1.0. (See accompanying file Chris@102: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@102: // Chris@102: // See http://www.boost.org/libs/container for documentation. Chris@102: // Chris@102: ////////////////////////////////////////////////////////////////////////////// Chris@102: #ifndef BOOST_CONTAINER_DETAIL_AUTO_LINK_HPP_INCLUDED Chris@102: #define BOOST_CONTAINER_DETAIL_AUTO_LINK_HPP_INCLUDED Chris@102: Chris@102: #ifndef BOOST_CONFIG_HPP Chris@102: # include Chris@102: #endif Chris@102: Chris@102: #if defined(BOOST_HAS_PRAGMA_ONCE) Chris@102: # pragma once Chris@102: #endif Chris@102: Chris@102: // Chris@102: // Automatically link to the correct build variant where possible. Chris@102: // Chris@102: #if !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_CONTAINER_NO_LIB) && !defined(BOOST_CONTAINER_SOURCE) Chris@102: // Chris@102: // Set the name of our library, this will get undef'ed by auto_link.hpp Chris@102: // once it's done with it: Chris@102: // Chris@102: #define BOOST_LIB_NAME boost_container Chris@102: // Chris@102: // If we're importing code from a dll, then tell auto_link.hpp about it: Chris@102: // Chris@102: #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_CONTAINER_DYN_LINK) Chris@102: # define BOOST_DYN_LINK Chris@102: #endif Chris@102: // Chris@102: // And include the header that does the work: Chris@102: // Chris@102: #include Chris@102: #endif // auto-linking disabled Chris@102: Chris@102: #endif //#ifndef BOOST_CONTAINER_DETAIL_AUTO_LINK_HPP_INCLUDED