Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/random/detail/auto_link.hpp @ 125:34e428693f5d vext
Vext -> Repoint
author | Chris Cannam |
---|---|
date | Thu, 14 Jun 2018 11:15:39 +0100 |
parents | c530137014c0 |
children |
rev | line source |
---|---|
Chris@16 | 1 /* boost random auto_link.hpp header file |
Chris@16 | 2 * |
Chris@16 | 3 * Copyright Steven Watanabe 2010 |
Chris@16 | 4 * Distributed under the Boost Software License, Version 1.0. (See |
Chris@16 | 5 * accompanying file LICENSE_1_0.txt or copy at |
Chris@16 | 6 * http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 7 * |
Chris@101 | 8 * $Id$ |
Chris@16 | 9 */ |
Chris@16 | 10 |
Chris@16 | 11 #ifndef BOOST_RANDOM_DETAIL_AUTO_LINK_HPP |
Chris@16 | 12 #define BOOST_RANDOM_DETAIL_AUTO_LINK_HPP |
Chris@16 | 13 |
Chris@16 | 14 #include <boost/config.hpp> |
Chris@16 | 15 |
Chris@16 | 16 #ifdef BOOST_HAS_DECLSPEC |
Chris@16 | 17 #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_RANDOM_DYN_LINK) |
Chris@16 | 18 #if defined(BOOST_RANDOM_SOURCE) |
Chris@16 | 19 #define BOOST_RANDOM_DECL __declspec(dllexport) |
Chris@16 | 20 #else |
Chris@16 | 21 #define BOOST_RANDOM_DECL __declspec(dllimport) |
Chris@16 | 22 #endif |
Chris@16 | 23 #endif |
Chris@16 | 24 #endif |
Chris@16 | 25 |
Chris@16 | 26 #ifndef BOOST_RANDOM_DECL |
Chris@16 | 27 #define BOOST_RANDOM_DECL |
Chris@16 | 28 #endif |
Chris@16 | 29 |
Chris@16 | 30 #if !defined(BOOST_RANDOM_NO_LIB) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_RANDOM_SOURCE) |
Chris@16 | 31 |
Chris@16 | 32 #define BOOST_LIB_NAME boost_random |
Chris@16 | 33 |
Chris@16 | 34 #if defined(BOOST_RANDOM_DYN_LINK) || defined(BOOST_ALL_DYN_LINK) |
Chris@16 | 35 #define BOOST_DYN_LINK |
Chris@16 | 36 #endif |
Chris@16 | 37 |
Chris@16 | 38 #include <boost/config/auto_link.hpp> |
Chris@16 | 39 |
Chris@16 | 40 #endif |
Chris@16 | 41 |
Chris@16 | 42 #endif |