123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #ifndef BOOST_TIMER_CONFIG_HPP
- #define BOOST_TIMER_CONFIG_HPP
- #include <boost/config.hpp>
- #include <boost/system/api_config.hpp>
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_TIMER_DYN_LINK)
- # if defined(BOOST_TIMER_SOURCE)
- # define BOOST_TIMER_DECL BOOST_SYMBOL_EXPORT
- # else
- # define BOOST_TIMER_DECL BOOST_SYMBOL_IMPORT
- # endif
- #else
- # define BOOST_TIMER_DECL
- #endif
- #if !defined(BOOST_TIMER_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_TIMER_NO_LIB)
- #define BOOST_LIB_NAME boost_timer
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_TIMER_DYN_LINK)
- # define BOOST_DYN_LINK
- #endif
- #include <boost/config/auto_link.hpp>
- #if !defined(BOOST_CHRONO_NO_LIB)
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_CHRONO_DYN_LINK)
- # define BOOST_DYN_LINK
- #endif
- #define BOOST_LIB_NAME boost_chrono
- #include <boost/config/auto_link.hpp>
- #endif
- #endif
- #endif
|