sl@0: // Copyright (c) 2004 Hartmut Kaiser sl@0: // sl@0: // Use, modification and distribution is subject to the Boost Software sl@0: // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: #ifndef BOOST_PROGRAM_OPTIONS_CONFIG_HK_2004_01_11 sl@0: #define BOOST_PROGRAM_OPTIONS_CONFIG_HK_2004_01_11 sl@0: sl@0: #include sl@0: #include sl@0: sl@0: // Support for autolinking. sl@0: #if BOOST_VERSION >= 103100 // works beginning from Boost V1.31.0 sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: // enable automatic library variant selection sl@0: #if !defined(BOOST_PROGRAM_OPTIONS_SOURCE) && !defined(BOOST_ALL_NO_LIB) && \ sl@0: !defined(BOOST_PROGRAM_OPTIONS_NO_LIB) sl@0: sl@0: // Set the name of our library, this will get undef'ed by auto_link.hpp sl@0: // once it's done with it: sl@0: #define BOOST_LIB_NAME boost_program_options sl@0: // tell the auto-link code to select a dll when required: sl@0: #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_PROGRAM_OPTIONS_DYN_LINK) sl@0: # define BOOST_DYN_LINK sl@0: #endif sl@0: sl@0: // And include the header that does the work: sl@0: #include sl@0: sl@0: #endif // auto-linking disabled sl@0: sl@0: #endif // BOOST_VERSION sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////// sl@0: // Windows DLL suport sl@0: #ifdef BOOST_HAS_DECLSPEC sl@0: #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_PROGRAM_OPTIONS_DYN_LINK) sl@0: // export if this is our own source, otherwise import: sl@0: #ifdef BOOST_PROGRAM_OPTIONS_SOURCE sl@0: # define BOOST_PROGRAM_OPTIONS_DECL __declspec(dllexport) sl@0: #else sl@0: # define BOOST_PROGRAM_OPTIONS_DECL __declspec(dllimport) sl@0: #endif // BOOST_PROGRAM_OPTIONS_SOURCE sl@0: #endif // DYN_LINK sl@0: #endif // BOOST_HAS_DECLSPEC sl@0: sl@0: #ifndef BOOST_PROGRAM_OPTIONS_DECL sl@0: #define BOOST_PROGRAM_OPTIONS_DECL sl@0: #endif sl@0: sl@0: sl@0: #endif // PROGRAM_OPTIONS_CONFIG_HK_2004_01_11 sl@0: