Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/signals/detail/config.hpp @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | 2665513ce2d3 |
children |
rev | line source |
---|---|
Chris@16 | 1 /* |
Chris@16 | 2 * |
Chris@16 | 3 * Copyright (c) 1998-2002 |
Chris@16 | 4 * John Maddock |
Chris@16 | 5 * |
Chris@16 | 6 * Copyright (c) 2003-2004 |
Chris@16 | 7 * Douglas Gregor |
Chris@16 | 8 * |
Chris@16 | 9 * Distributed under the Boost Software License, Version 1.0. (See |
Chris@16 | 10 * accompanying file LICENSE_1_0.txt or copy at |
Chris@16 | 11 * http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 12 * |
Chris@16 | 13 */ |
Chris@16 | 14 |
Chris@16 | 15 #ifndef BOOST_SIGNALS_CONFIG_HPP |
Chris@16 | 16 #define BOOST_SIGNALS_CONFIG_HPP |
Chris@16 | 17 |
Chris@16 | 18 #include <boost/config.hpp> |
Chris@16 | 19 |
Chris@16 | 20 #ifdef BOOST_HAS_DECLSPEC |
Chris@16 | 21 # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SIGNALS_DYN_LINK) |
Chris@16 | 22 # ifdef BOOST_SIGNALS_SOURCE |
Chris@16 | 23 # define BOOST_SIGNALS_DECL __declspec(dllexport) |
Chris@16 | 24 # else |
Chris@16 | 25 # define BOOST_SIGNALS_DECL __declspec(dllimport) |
Chris@16 | 26 # endif // BOOST_SIGNALS_SOURCE |
Chris@16 | 27 # endif // DYN_LINK |
Chris@16 | 28 #endif // BOOST_HAS_DECLSPEC |
Chris@16 | 29 |
Chris@16 | 30 #ifndef BOOST_SIGNALS_DECL |
Chris@16 | 31 # define BOOST_SIGNALS_DECL |
Chris@16 | 32 #endif |
Chris@16 | 33 |
Chris@16 | 34 // Setup autolinking |
Chris@16 | 35 #if !defined(BOOST_SIGNALS_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SIGNALS_NO_LIB) |
Chris@16 | 36 # define BOOST_LIB_NAME boost_signals |
Chris@16 | 37 |
Chris@16 | 38 # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SIGNALS_DYN_LINK) |
Chris@16 | 39 # define BOOST_DYN_LINK |
Chris@16 | 40 # endif |
Chris@16 | 41 |
Chris@16 | 42 # include <boost/config/auto_link.hpp> |
Chris@16 | 43 #endif // autolinking on |
Chris@16 | 44 |
Chris@16 | 45 #endif // BOOST_SIGNALS_CONFIG_HPP |
Chris@16 | 46 |
Chris@16 | 47 |
Chris@16 | 48 |
Chris@16 | 49 |
Chris@16 | 50 |
Chris@16 | 51 |
Chris@16 | 52 |
Chris@16 | 53 |
Chris@16 | 54 |