comparison DEPENDENCIES/generic/include/boost/random/detail/auto_link.hpp @ 16:2665513ce2d3

Add boost headers
author Chris Cannam
date Tue, 05 Aug 2014 11:11:38 +0100
parents
children c530137014c0
comparison
equal deleted inserted replaced
15:663ca0da4350 16:2665513ce2d3
1 /* boost random auto_link.hpp header file
2 *
3 * Copyright Steven Watanabe 2010
4 * Distributed under the Boost Software License, Version 1.0. (See
5 * accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt)
7 *
8 * $Id: auto_link.hpp 60755 2010-03-22 00:45:06Z steven_watanabe $
9 */
10
11 #ifndef BOOST_RANDOM_DETAIL_AUTO_LINK_HPP
12 #define BOOST_RANDOM_DETAIL_AUTO_LINK_HPP
13
14 #include <boost/config.hpp>
15
16 #ifdef BOOST_HAS_DECLSPEC
17 #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_RANDOM_DYN_LINK)
18 #if defined(BOOST_RANDOM_SOURCE)
19 #define BOOST_RANDOM_DECL __declspec(dllexport)
20 #else
21 #define BOOST_RANDOM_DECL __declspec(dllimport)
22 #endif
23 #endif
24 #endif
25
26 #ifndef BOOST_RANDOM_DECL
27 #define BOOST_RANDOM_DECL
28 #endif
29
30 #if !defined(BOOST_RANDOM_NO_LIB) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_RANDOM_SOURCE)
31
32 #define BOOST_LIB_NAME boost_random
33
34 #if defined(BOOST_RANDOM_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)
35 #define BOOST_DYN_LINK
36 #endif
37
38 #include <boost/config/auto_link.hpp>
39
40 #endif
41
42 #endif