| c++ Programming Glossary: config.hppLibrary headers and #define http://stackoverflow.com/questions/20833226/library-headers-and-define  this question   Solution #1 configure install Include config.hpp file in your header file #ifndef FOO_HPP_ #define FOO_HPP_ #include.. header file #ifndef FOO_HPP_ #define FOO_HPP_ #include config.hpp FOO_DEBUG class Foo public int result const private int a_ #ifdef.. #ifdef FOO_DEBUG int b_ #endif FOO_DEBUG #endif FOO_HPP_ config.hpp is output of configure_file command configure_file config.hpp.in.. 
 Code Blocks, Mingw, Boost, and static linking issues http://stackoverflow.com/questions/3705563/code-blocks-mingw-boost-and-static-linking-issues  in this question . Poking around in boost thread detail config.hpp makes me think you should #define BOOST_THREAD_USE_LIB or use.. 
 How to parse ini file with Boost http://stackoverflow.com/questions/6175502/how-to-parse-ini-file-with-boost  sstream #include exception #include fstream #include boost config.hpp #include boost program_options detail config_file.hpp #include.. 
 |