config.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. *
  3. * Copyright (c) 1998-2002
  4. * John Maddock
  5. *
  6. * Copyright (c) 2003-2004
  7. * Douglas Gregor
  8. *
  9. * Distributed under the Boost Software License, Version 1.0. (See
  10. * accompanying file LICENSE_1_0.txt or copy at
  11. * http://www.boost.org/LICENSE_1_0.txt)
  12. *
  13. */
  14. #ifndef BOOST_SIGNALS_CONFIG_HPP
  15. #define BOOST_SIGNALS_CONFIG_HPP
  16. #include <boost/config.hpp>
  17. #ifdef BOOST_HAS_DECLSPEC
  18. # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SIGNALS_DYN_LINK)
  19. # ifdef BOOST_SIGNALS_SOURCE
  20. # define BOOST_SIGNALS_DECL __declspec(dllexport)
  21. # else
  22. # define BOOST_SIGNALS_DECL __declspec(dllimport)
  23. # endif // BOOST_SIGNALS_SOURCE
  24. # endif // DYN_LINK
  25. #endif // BOOST_HAS_DECLSPEC
  26. #ifndef BOOST_SIGNALS_DECL
  27. # define BOOST_SIGNALS_DECL
  28. #endif
  29. // Setup autolinking
  30. #if !defined(BOOST_SIGNALS_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SIGNALS_NO_LIB)
  31. # define BOOST_LIB_NAME boost_signals
  32. # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SIGNALS_DYN_LINK)
  33. # define BOOST_DYN_LINK
  34. # endif
  35. # include <boost/config/auto_link.hpp>
  36. #endif // autolinking on
  37. #endif // BOOST_SIGNALS_CONFIG_HPP