Skip to content

Instantly share code, notes, and snippets.

@mmasashi
Created April 17, 2015 22:00
Show Gist options
  • Select an option

  • Save mmasashi/3fb92795b311d57a13a9 to your computer and use it in GitHub Desktop.

Select an option

Save mmasashi/3fb92795b311d57a13a9 to your computer and use it in GitHub Desktop.
How to detect boost lib version
#include <boost/version.hpp>
#include <iostream>
int main()
{
std::cout << BOOST_LIB_VERSION << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment