• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //  macro_default_test program  --------------------------------------------------------//
2 
3 //  Copyright Beman Dawes 2012
4 
5 //  Distributed under the Boost Software License, Version 1.0.
6 //  See http://www.boost.org/LICENSE_1_0.txt
7 
8 //  Library home page: http://www.boost.org/libs/filesystem
9 
10 #undef BOOST_ALL_DYN_LINK
11 #undef BOOST_ALL_STATIC_LINK
12 #undef BOOST_FILESYSTEM_DYN_LINK
13 #undef BOOST_FILESYSTEM_STATIC_LINK
14 #undef BOOST_SYSTEM_DYN_LINK
15 #undef BOOST_SYSTEM_STATIC_LINK
16 
17 #ifndef BOOST_ALL_NO_LIB
18 # define BOOST_ALL_NO_LIB
19 #endif
20 
21 #include <boost/filesystem/config.hpp>
22 #include <boost/system/config.hpp>
23 
24 #ifndef BOOST_FILESYSTEM_STATIC_LINK
25 # error BOOST_FILESYSTEM_STATIC_LINK not set by default
26 #endif
27 
28 
29 #ifndef BOOST_SYSTEM_STATIC_LINK
30 # error BOOST_SYSTEM_STATIC_LINK not set by default
31 #endif
32 
main()33 int main()
34 {
35   return 0;
36 }
37