12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // Copyright (c) 2004 Hartmut Kaiser
- //
- // Use, modification and distribution is subject to the Boost Software
- // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- // Support for autolinking.
- ///////////////////////////////////////////////////////////////////////////////
- // enable automatic library variant selection
- !defined(BOOST_PROGRAM_OPTIONS_NO_LIB)
- // Set the name of our library, this will get undef'ed by auto_link.hpp
- // once it's done with it:
- // tell the auto-link code to select a dll when required:
- // And include the header that does the work:
- ///////////////////////////////////////////////////////////////////////////////
- // export if this is our own source, otherwise import:
|