config.hpp 708 B

1234567891011121314151617181920212223
  1. //
  2. // Copyright (c) 2025 Klemens Morgenstern (klemens.morgenstern@gmx.net)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. #include <boost/config.hpp>
  8. #ifndef BOOST_COBALT_IO_DETAIL_CONFIG_HPP
  9. #define BOOST_COBALT_IO_DETAIL_CONFIG_HPP
  10. #if !defined(BOOST_COBALT_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_COBALT_NO_LIB) && !defined(BOOST_COBALT_IO_NO_LIB)
  11. #define BOOST_LIB_NAME boost_cobalt_io
  12. #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_COBALT_DYN_LINK)
  13. #define BOOST_DYN_LINK
  14. #endif
  15. #include <boost/config/auto_link.hpp>
  16. #endif
  17. #endif // BOOST_COBALT_IO_DETAIL_CONFIG_HPP